<xs:simpleType name="FareStatusType">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies whether the fare was constructed, published, created, etc.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="constructed" />
<xs:enumeration value="published" />
<xs:enumeration value="created" />
<xs:enumeration value="fareByRule">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies that the fare was built based on rules.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="fareByRulePrivate">
<xs:annotation>
<xs:documentation xml:lang="en">The private fare was built by rules.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
|