http://www.fatwire.com/schema/rest/1.0
complexType indexFieldDescriptor

Super Types
{http://www.w3.org/2001/XMLSchema}anyType
|
+--{http://www.fatwire.com/schema/rest/1.0}indexFieldDescriptor (restriction)

Documentation
        This bean describes a field to be
        indexed by the search engine.
      
Properties
This component is not nillable.

Model
<...>
(name, type, tokenized, stored, boost )
</...>


Nested Element Summary
xs:intboost
          Set the boost factor for searches, to prioritize some fields over others. 
xs:stringname
          The name of this field. 
xs:booleanstored
          Set to true to store the field data in the index; only in this case will it be retrievable in the result set. 
xs:booleantokenized
          Set to true to split the field data into a list of tokens, or set to false to leave the field data intact to always perform exact searches. 
indexFieldTypeEnumtype
          The type of this field. 
Source
<xs:complexType name="indexFieldDescriptor">
<xs:sequence>
<xs:element name="name" type="xs:string">
</xs:element>
<xs:element name="type" type="indexFieldTypeEnum">
</xs:element>
<xs:element name="tokenized" type="xs:boolean">
</xs:element>
<xs:element name="stored" type="xs:boolean">
</xs:element>
<xs:element name="boost" type="xs:int">
</xs:element>
</xs:sequence>
</xs:complexType>


Copyright \xA9 2013, Oracle and/or its affiliates. All Rights Reserved.