<xs:simpleType name="PriceTypeCodeType">
<xs:annotation>
<xs:documentation>A price can be either Cost, Net, Gross or Retail. **>Cost: The cost to acquire a product **>Net : The price given by the vendor to a B2T company, excluding commission and margin **>Gross:The price given by a vendor to a B2T company, including commission, but no margin **>Retail: The price to the end consumer (B2T = Business to Trade = a company working in travel)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Cost">
<xs:annotation>
<xs:documentation>The cost to acquire or build a product.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Gross">
<xs:annotation>
<xs:documentation>The price given by a vendor to a B2T company, including commission, but no margin (B2T = Business to Trade = a company working in travel)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Margin">
<xs:annotation>
<xs:documentation>The amount between cost and retail</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Nett">
<xs:annotation>
<xs:documentation>The price given by the vendor to a B2T company, excluding commission and margin (B2T = Business to Trade = a company working in travel)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Retail">
<xs:annotation>
<xs:documentation>The price sold to the consumer</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType> |