Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -436,4 +436,17 @@ Rail transport, Roads and Road transport
<xsd:enumeration value="other"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="StopPlaceCategoryEnumeration">
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the difference between "Category" and "Type" - i.e., why has the name StopPlaceCategoryEnumeration been chosen instead of StopPlaceTypeEnumeration (similar to the existing StopTypeEnumeration and other type names)?

<xsd:annotation>
<xsd:documentation>Category of STOP PLACE.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="airport"/>
<xsd:enumeration value="terminal"/>
<xsd:enumeration value="station"/>
<xsd:enumeration value="hub"/>
<xsd:enumeration value="halt"/>
<xsd:enumeration value="unregulated"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>
16 changes: 16 additions & 0 deletions xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_support.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,22 @@ Rail transport, Roads and Road transport
<xsd:enumeration value="other"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="QuayLayoutTypeEnumeration">
<xsd:annotation>
<xsd:documentation>Allowed values for QUAY LAYOUT Component Types.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="abutting"/>
<xsd:enumeration value="bay"/>
<xsd:enumeration value="bulb"/>
<xsd:enumeration value="gate"/>
<xsd:enumeration value="island"/>
<xsd:enumeration value="lane"/>
<xsd:enumeration value="platform"/>
<xsd:enumeration value="terminus"/>
<xsd:enumeration value="unregulated"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="BoardingPositionTypeEnumeration">
<xsd:annotation>
<xsd:documentation>Allowed values for BOARDING POSITION Component Types.</xsd:documentation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1482,6 +1482,11 @@ contained within its parent QUAY.</xsd:documentation>
<xsd:documentation>Type of STOP PLACE.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="StopPlaceCategory" type="StopPlaceCategoryEnumeration" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Category of STOP PLACE.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="TransportMode" type="AllVehicleModesOfTransportEnumeration" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Primary MODE of Vehicle transport.</xsd:documentation>
Expand Down