Global Type: orderByColumnType
General Description
This type defines the order by column .
Name | Type | Attributes | Description |
---|---|---|---|
column | simpleIdType | required once | The name of the column you wish to specify an order for. |
direction | orderDirectionType | optional default=ascending |
Defines the order direction. If not specified, then 'ascending' is assumed. |
<xs:complexType name="orderByColumnType">
<xs:annotation>
<xs:documentation>
<![CDATA[This type defines the order by column .]]>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="column" type="simpleIdType">
<xs:annotation>
<xs:documentation>
<![CDATA[The name of the column you wish to specify an order for.]]>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="direction" type="orderDirectionType" minOccurs="0" default="ascending">
<xs:annotation>
<xs:documentation>
<![CDATA[Defines the order direction. If not specified, then 'ascending' is assumed. ]]>
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>