Content items properties must be one of several basic types. All configuration models are composed of the same primitive property types.
The basic content property types are:
The following example shows a several properties of various types.
<ContentTemplate xmlns="http://endeca.com/schema/content-template/2008"
xmlns:editors="editors"
xmlns:xavia="http://endeca.com/schema/xavia/2010"
type="MainContent">
<!-- additional elements omitted from this example -->
<ContentItem>
<Name>Results List</Name>
<Property name="boostStrata">
<xavia:List/>
</Property>
<Property name="buryStrata">
<xavia:List/>
</Property>
<Property name="sortOption">
<xavia:Item class="com.endeca.infront.navigation.model.SortOption">
<xavia:Property name="label">Most Sales</xavia:Property>
<xavia:Property name="sorts">
<xavia:List>
<xavia:Item class="com.endeca.infront.navigation.model.SortSpec">
<xavia:Property name="key">product.analytics.total_sales</xavia:Property>
<xavia:Property name="descending">false</xavia:Property>
</xavia:Item>
</xavia:List>
</xavia:Property>
</xavia:Item>
</Property>
<Property name="relRank">
<!-- Margin Bias -->
<String>nterms,maxfield,exact,static(product.analytics.conversion_rate,descending)</String>
</Property>
<Property name="recordsPerPage">
<String>10</String>
</Property>
</ContentItem>
<!-- additional elements omitted from this example -->
</ContentTemplate>
