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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,4 @@ fabric.properties
# Editor-based Rest Client
.idea/httpRequests

/.idea
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,12 @@ The Calendar is shown coded as
<Advertised>true</Advertised>
</NoticeAssignment>
</noticeAssignments>
<!-- check for CheckConstraint. V2.1 -->
<checkConstraints>
<CheckConstraint id="mybus:cc:1" version="any">
<Congestion>noWaiting</Congestion>
</CheckConstraint>
</checkConstraints>
</StopPointInJourneyPattern>
<StopPointInJourneyPattern version="any" order="2" id="hde:spijp_24o_02">
<ScheduledStopPointRef version="any" ref="mybus:SSP_002"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
<!-- ======================================================================= -->
<xsd:include schemaLocation="netex_servicePattern_support.xsd"/>
<xsd:include schemaLocation="../part1_tacticalPlanning/netex_fareZone_support.xsd"/>
<xsd:include schemaLocation="../../netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_version.xsd"/>
<xsd:include schemaLocation="netex_journeyPattern_version.xsd"/>
<xsd:include schemaLocation="netex_timingPattern_version.xsd"/>
<xsd:include schemaLocation="netex_siteConnection_version.xsd"/>
<xsd:include schemaLocation="../part1_networkDescription/netex_flexibleNetwork_version.xsd"/>
<xsd:include schemaLocation="../../netex_part_2/part2_occupancy/netex_oc_occupancy_version.xsd"/>
<xsd:include schemaLocation="../../netex_part_2/part2_journeyTimes/netex_vehicleJourneyStopAssignment_version.xsd"/>
<!-- ======================================================================= -->
<xsd:annotation>
<xsd:appinfo>
Expand Down Expand Up @@ -901,6 +903,13 @@ Rail transport, Roads and Road transport
<xsd:documentation>Nature of use of stop, e.g. access, interchange only, or pass through. Default is Access.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:group ref="QuayAssignmentGroup"/>
Comment thread
ue71603 marked this conversation as resolved.
<xsd:element ref="AccessibilityAssessment" minOccurs="0"/>
<xsd:element name="checkConstraints" type="checkConstraints_RelStructure" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Impediments to navigation from processes or barriers. For example security, check in etc., +v2.1</xsd:documentation>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Suggested change
<xsd:documentation>Impediments to navigation from processes or barriers. For example security, check in etc., +v2.1</xsd:documentation>
<xsd:documentation>Implements the navigation from processes or barriers. For example security, check in etc., +v2.1</xsd:documentation>

</xsd:annotation>
</xsd:element>
<xsd:choice>
<xsd:element name="bookingArrangements" type="bookingArrangements_RelStructure" minOccurs="0">
<xsd:annotation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<xsd:include schemaLocation="../../netex_part_1/part1_tacticalPlanning/netex_journeyPattern_support.xsd"/>
<xsd:include schemaLocation="netex_vehicleJourney_support.xsd"/>
<xsd:include schemaLocation="netex_passingTimes_support.xsd"/>
<xsd:include schemaLocation="../../netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_version.xsd"/>
<xsd:include schemaLocation="../../netex_part_1/part1_tacticalPlanning/netex_journeyTiming_version.xsd"/>
<xsd:include schemaLocation="../../netex_part_2/part2_occupancy/netex_oc_occupancy_version.xsd"/>
<!-- ======================================================================= -->
Expand Down Expand Up @@ -204,6 +205,11 @@ Rail transport, Roads and Road transport
<xsd:documentation>Number of days after the starting time of the journey if not same calendar day. Default is 0 for same day.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="checkConstraints" type="checkConstraints_RelStructure" minOccurs="0">
<xsd:annotation>
<xsd:documentation>CHECK CONSTRAINTs can be used on StopPointInJourneyPattern as well. It should be used there, if it affects every SERVICE JOURNEY with that SERVICE JOURNEY PATTERN. If the CONSTRAINT only affects one single SERVICE JOURNEY and PASSING TIME is used, then it is better to use this CHECK CONSTRAINT here in PASSING TIME. +v2.1</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="occupancies" type="OccupancyView_RelStructure" minOccurs="0">
<xsd:annotation>
<xsd:documentation>OCCUPANCYs associated with this journey. +v2.0</xsd:documentation>
Expand Down
Loading