Skip to content

Allows for level information on PathLinks #234

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
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
36 changes: 34 additions & 2 deletions OJP_Trips.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -777,12 +777,12 @@
</xs:simpleType>
<xs:complexType name="PathLinkStructure">
<xs:annotation>
<xs:documentation>[TMv6] a link within a PLACE of or between two PLACEs (that is STOP PLACEs, ACCESS SPACEs or QUAYs,BOARDING POSITIONs,, POINTs OF INTEREST etc or PATH JUNCTIONs) that represents a step in a possible route for pedestrians, cyclists or other out-of-vehicle passengers within or between a PLACE.</xs:documentation>
<xs:documentation>[TMv6] a link within a PLACE of or between two PLACEs (that is STOP PLACEs, ACCESS SPACEs or QUAYs,BOARDING POSITIONs, POINTs OF INTEREST etc or PATH JUNCTIONs) that represents a step in a possible route for pedestrians, cyclists or other out-of-vehicle passengers within or between a PLACE.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Transition" type="TransitionEnumeration" minOccurs="0">
<xs:annotation>
<xs:documentation>Whether path is up down or level .</xs:documentation>
<xs:documentation>Whether path is up down or level.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AccessFeatureType" type="AccessFeatureTypeEnumeration" minOccurs="0">
Expand All @@ -795,6 +795,38 @@
<xs:documentation>Number how often the access feature occurs in this PathLink</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="From" type="PathLinkEndStructure" minOccurs="0">
<xs:annotation>
<xs:documentation>Designations of the level where the PathLink starts.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="To" type="PathLinkEndStructure" minOccurs="0">
<xs:annotation>
<xs:documentation>Designations of the level where the PathLink ends.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PathLinkEndStructure">
<xs:annotation>
<xs:documentation>Designations of a floor.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="LevelPublicCode" type="xs:normalizedString" minOccurs="0">
<xs:annotation>
<xs:documentation>Public identifier of the level as found on elevators and signs.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LevelName" type="InternationalTextStructure" minOccurs="0">
<xs:annotation>
<xs:documentation>Official name of the level.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" type="xs:normalizedString" minOccurs="0">
<xs:annotation>
<xs:documentation>Id of the element at the From or To end of the PathLink (typically a PLACE).</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:annotation>
Expand Down