Oracle Beehive
  Oracle® Beehive RESTful Web Services API Reference
  Release 2 (2.0.1.7)
  E16658-04

Contents

Overview

Defines the data structure for a "band" or set of ExpertiseSearchClause, which can be used to control the overall contribution of different types of clauses.

Each member of the band contributes to the same pool for calculation of overall search strength. The band caps the total contribution of its matches at the specified percentage of the total match. This contribution is specified as a percentage of the overall search strength.

For example, Band 1 could be capped to contribute 50% to the search criteria, even though it contains 20 member clauses. Band 2, with only 1 clause, could also be set to contribute 50%. The result would be that the the matches for Band 2 have as much weight as total matches for Band 1 in the search results.

Refer to expertiseSearchClause for more details.

Members

Name Type Required Description

clauses

expertiseSearchClause[]

List of search clauses within the band.

maxPercent

int

Maximum percentage of the overall search strength that can be contributed by this band. This percentage is based on all ExpertiseSearchClauses within the ExpertiseSearchClauseList.

Hierarchy

Examples

Below are examples in JSON and XML formats. All examples are shown with all inherited members. Quoting when required is part of the examples, but you must obviously populate with your own data.

XML Example

(show inherited members)

<obh:expertiseSearchBand xsi:type="obh:expertiseSearchBand" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obh:clauses>your_expertiseSearchClause_0</obh:clauses>
        <obh:clauses>your_expertiseSearchClause_1</obh:clauses>
        <obh:clauses>your_expertiseSearchClause_2</obh:clauses>
        <obh:maxPercent>your_int_0</obh:maxPercent>
</obh:expertiseSearchBand>

JSON Example

(show inherited members)

{
    "beeType":"expertiseSearchBand",
        "clauses":[
            { your_{http://www.oracle.com/beehive}clauses_as_expertiseSearchClause0 },
            { your_{http://www.oracle.com/beehive}clauses_as_expertiseSearchClause1 },
            { your_{http://www.oracle.com/beehive}clauses_as_expertiseSearchClause2 }
        ],
        "maxPercent":your_{http://www.oracle.com/beehive}maxPercent_as_int0
}

XML Schema


<xs:complexType name="expertiseSearchBand">
    <xs:sequence>
        <xs:element maxOccurs="unbounded" minOccurs="0" name="clauses"
            nillable="true" type="tns:expertiseSearchClause"/>
        <xs:element name="maxPercent" type="xs:int"/>
    </xs:sequence>
</xs:complexType>

        

References

The following data represents the references to expertiseSearchBand

Referenced By Resources

Not Referenced Directly by Resources

Referenced By Representaions