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 element 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 the field 
xs:booleanstored
          Set to 'true' to store the field data in the index, only in this case it could be retrieved in the result set 
xs:booleantokenized
          Set to 'true' to split the field data to a list of tokens, or set to 'false' to leave the field intact to always perform exact searches 
indexFieldTypeEnumtype
          The type of the 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>


Submit a bug or a feature.
Created by xsddoc, a sub project of xframe, hosted at http://xframe.sourceforge.net.