<xs:element name="Commission" minOccurs="0" maxOccurs="2">
<xs:annotation>
<xs:documentation xml:lang="en">Information specifying the commission to be paid.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="CurrencyAmountGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The actual monetary value of the commission and the currency code for the amount.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="Percent" type="Percentage" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The percentage value of the commission.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CapAmount" type="Money" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The highest monetary value that may be paid when the commission is a percent. For example, the commision may be 2% of the fare, but the monetary value may not exceed $20.00.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AdditionalInd" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, this is an additional commission.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
|