Order Schema Changes

The order schema allows you to submit the orderPriority information with the order. The orderPriority is at the orderHeader level and the same priority is applied to all the orderLines.

The schema snippet is as follows:

<xs:element name="orderPriority" minOccurs="0" default="4">
		<xs:simpleType>
			<xs:restriction base="xs:integer">
				<xs:minInclusive value="0" />
				<xs:maxInclusive value="9" />
			</xs:restriction>
		</xs:simpleType>
	</xs:element>

The orderPriority can take values in range from 0 to 9 to make consistent and map with JMSPriority message header values.

Note: The default value of the orderPriority field is 4.