diff --git a/.github/scripts/validate-examples.sh b/.github/scripts/validate-examples.sh index d2be5eb89..93bb351a9 100755 --- a/.github/scripts/validate-examples.sh +++ b/.github/scripts/validate-examples.sh @@ -9,7 +9,7 @@ set -e echo "Validating NeTEx XML examples ..." -if xmllint --noout --schema xsd/NeTEx_publication.xsd examples/standards/epiap/*xml && xmllint --noout --schema xsd/NeTEx_publication.xsd examples/functions/calendar/*.xml examples/functions/fares/*xml examples/functions/grouping/*xml examples/functions/newModes/*xml examples/functions/patterns/*xml examples/functions/pointOfInterest/*xml examples/functions/simpleNetwork/*xml examples/functions/site/*xml examples/functions/stopPlace/*xml examples/functions/timetable/*xml examples/functions/validityCondition/*xml examples/functions/variant/*xml examples/functions/vehicleSchedule/*xml examples/functions/versioning/*xml examples/standards/epip/*xml examples/standards/era_uic/*xml examples/standards/fxc/*xml examples/standards/gbfs/*xml examples/standards/gtfs/*xml examples/standards/neptune/*xml examples/standards/noptis/*xml examples/standards/tap_tsi/*xml examples/standards/txc/*xml examples/standards/vdv452/*/*xml examples/standards/vdv452/*/*/*xml; then +if xmllint --noout --schema xsd/NeTEx_publication.xsd examples/functions/deckPlans/*.xml examples/standards/epiap/*xml && xmllint --noout --schema xsd/NeTEx_publication.xsd examples/functions/calendar/*.xml examples/functions/fares/*xml examples/functions/grouping/*xml examples/functions/newModes/*xml examples/functions/patterns/*xml examples/functions/pointOfInterest/*xml examples/functions/simpleNetwork/*xml examples/functions/site/*xml examples/functions/stopPlace/*xml examples/functions/timetable/*xml examples/functions/validityCondition/*xml examples/functions/variant/*xml examples/functions/vehicleSchedule/*xml examples/functions/versioning/*xml examples/standards/epip/*xml examples/standards/era_uic/*xml examples/standards/fxc/*xml examples/standards/gbfs/*xml examples/standards/gtfs/*xml examples/standards/neptune/*xml examples/standards/noptis/*xml examples/standards/tap_tsi/*xml examples/standards/txc/*xml examples/standards/vdv452/*/*xml examples/standards/vdv452/*/*/*xml; then echo -e '\033[0;32mValidating NeTEx XML examples succeeded\033[0m' else echo -e '\033[0;31mValidating NeTEx XML examples failed\033[0m' diff --git a/NeTEx.spp b/NeTEx.spp index c45064784..c2afd9dd3 100644 --- a/NeTEx.spp +++ b/NeTEx.spp @@ -60,6 +60,8 @@ + + @@ -78,55 +80,93 @@ - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -243,6 +283,8 @@ + + @@ -272,6 +314,10 @@ + + + + @@ -298,6 +344,8 @@ + + @@ -639,6 +687,7 @@ + @@ -745,6 +794,11 @@ + + + + + @@ -759,6 +813,14 @@ + + + + + + + + diff --git a/README.md b/README.md index 7cffbc7a1..a80c3c34f 100644 --- a/README.md +++ b/README.md @@ -1,37 +1,88 @@ # NeTEx (Network Timetable EXchange) XML schema -(C) 2009-2021 NeTEx, CEN, Crown Copyright +**(C) 2009-2024 NeTEx, CEN, Crown Copyright** -## Schemas for: Core, Part 1 (Network), Part 2 (Timetables), Part3 (Fares) and Part5 (NewModes). - -See the NeTEx UML Physical and Conceptual models for an UML view of the packages. (This is available in electronic format). +## Schemas for: -The individual XML files are arranged hierarchically in folders, in a similar arrangement to that of the UML model and documentation. Thus there is a main folder for each part, and subfolders for each NeTEx functional area. +- Core +- Part 1 (Network) +- Part 2 (Timetables) +- Part 3 (Fares) +- Part 5 (New Modes) ----- -## Getting Started -There are two main root schemas: - - **netex_publication** : Embeds NeTEx XML model elements in a bulk output file format for use in asynchronous publication. The intended content scope can be indicated by a filter object. - - **netex_siri.xsd** : Embeds NeTEx XML model elements in the SIRI protocol for dynamic exchange of elements between servers. Both Request/response or publish / subscribe is supported +### Overview + +- NeTEx (Network Timetable EXchange) XML schema is a standardized format for exchanging network timetable data. + +### Folder structure 📁 + +The individual XML files are organized hierarchically in folders, following the same structure as the UML model and documentation. The architecture is: + +- **Main Folder for Each Part**: There is a main folder for each part of the schema (e.g., Core, Part 1, Part 2, etc.). +- **Subfolders for Functional Areas**: Within each main folder, there are subfolders for each NeTEx functional area, keeping the schema well-structured. + +You can find more information about the directory's structure on the [wiki](https://github.com/ITxPT/NeTEx/wiki/Structure-And-Compatibility#netex-directory-structure) +### UML models + +- You can refer to the NeTEx UML Physical and Conceptual models (note that NeTEx Conceptual model is Transmodel) for a detailed UML view of the schema packages. +- These models are available in electronic format. + +## Getting started 🚀 + +### Main root schemas + +1. **netex_publication** + - Embeds NeTEx XML model elements in a bulk output file format for use in asynchronous publication. + - The intended content scope can be indicated by a filter object. + - **netex_publication_noConstraint**: same as **netex_publication** but without all the XSD constraint that is convenient to speed up the work in development phases (but at the price of a much weaker validation). -In addition: +2. **netex_siri.xsd** + - Embeds NeTEx XML model elements in the SIRI protocol for dynamic exchange of elements between servers. + - Supports both request/response and publish/subscribe. - - **nx.xsd** : Embeds NeTeX XML model elements within a simple thematic organisation to facilitate browsing and inspection of NeTEx. The NX schema is not intended for actual use. +### Additional information -There are **XML examples** of the use of both protocols, see */examples* subdirectory. +- **nx.xsd** + - Embeds NeTeX XML model elements within a simple thematic organisation to facilitate browsing and inspection of NeTEx. + - The NX schema is not intended for actual use. +### XML examples + +- Explore XML examples of the use of both protocols in the */examples* subdirectory. + +Further information on the examples is available on the [wiki](https://github.com/ITxPT/NeTEx/wiki/Using-NeTEx#how-to-use-example-files) ### Support for XML editors -There is an _Altova XMLSpy_ project file in the root directory that provides an organised view of the schema and examples: - - NeTEx.spp -There is also an _Oxygen_ project file: - - NeTEx.xpr +- **Altova XMLSpy Project**: Find an organized view of the schema and examples in the root directory. + - Project file: NeTEx.spp + +- **Oxygen Project File**: + - Project file: NeTEx.xpr + ---- + ### Note on the schema -The schema is broken down systematically into small modular files; generally for each functional package in the design model (See UML Model) there are two xml schema files - - netex_xxxx_suppport.xsd - containing data type and ref structure definitions. - - netex_xxxx_version.xsd - containing the element definitions. + +The schema is systematically divided into small modular files. Generally, for each functional package in the design model (See UML Model), there are two XML schema files: + +- **netex_xxxx_suppport.xsd**: Contains data type and ref structure definitions. +- **netex_xxxx_version.xsd**: Contains the element definitions. + ---- -# Changelog +## Branches 🌿 -See [CHANGELOG](CHANGELOG.md) +| Branch Name | Description | Link | +| ----------- | ------------------------------------------------------- | ----------------------------------------------- | +| `master` | Current head of the project | [GitHub](https://github.com/NeTEx-CEN/NeTEx) | +| `next` | Work for the next release | [GitHub](https://github.com/NeTEx-CEN/NeTEx/tree/next) | +| `epiap` | CEN NeTEx European Passenger Information Accessibility Profile | [GitHub](https://github.com/NeTEx-CEN/NeTEx/tree/EPIAP) | +# Change Log +## Releases +| Release Number | Release Date | Description | Link | Release Notes | +| -------------- | ------------- | ---------------------------------------------- | ------------- | ----------------------------------------------------------------------------------------------- | +| 1.2 | March 2022 | Latest productive version before new modes merge | [Code](https://github.com/NeTEx-CEN/NeTEx/releases/tag/v1.2) | [Release Notes](https://github.com/NeTEx-CEN/NeTEx/blob/v1.2/README.md) | +| 1.2.2 | August 2023 | First version of new modes | [Code](https://github.com/NeTEx-CEN/NeTEx/releases/tag/v1.2.2) | [Release Notes](https://github.com/NeTEx-CEN/NeTEx/blob/v1.2.2/README.md) | +| 1.3 | 2024 | European Passenger Information Accessibility Profile (EPIAP) - upcoming | N/A | N/A | +| 2.0 | 2024 | Upcoming release ⏳ | N/A | N/A | +## Full Version History 📚 +The comprehensive versions history is available in [change_log.md](https://github.com/ITxPT/NeTEx/blob/NeTEx/change_log.md) diff --git a/change_log.md b/change_log.md new file mode 100644 index 000000000..25d87719f --- /dev/null +++ b/change_log.md @@ -0,0 +1,2274 @@ +# Change Log + +## Version 1.2.2 - Revised to add New Modes +The Part 1, Part 2, & Part 3 schemas include corrections and enhancements since the release of the version 1.2 CEN specification documents for NeTEx. + +A new Part 5 is added for new modes, with examples. + +The new Part 5 CEN specification document describes the additions and changes. + + + +### 2021.09.03 NewModes: CommentAction Add __MustReturnToSameBay__ attribute to __PoolOfVehicles__. + * _Updates to xml schema_: + * ++ netex_netex_nm_mobilityConstraintZone_version.xsd + +### 2021.09.02 NewModes: CommentAction Add __BatteryEquipment__ and __ChargingEquipmentProfile__. + * Add __BatteryEquipments__ to energy equipment. Add uniqueness constraint. + * Add ChargingEquipmentProfile__ and__TypeOfPlug__in new module. + * Add __MobilityServiceConstraintZone__ to Network access right validity parameters. + * _Updates to xml schema_: + * ++ netex_nm_chargingEquipmentProfile_support.xsd + * ++ netex_nm_chargingEquipmentProfile_version.xsd + * netex_ifopt_nm_equipmentEnergy_support.xsd + * netex_ifopt_nm_equipmentEnergy_support.xsd + * netex_vehicleType_version.xsd + * netex_trainElement_version.xsd + * netex_netex_nm_mobilityConstraintZone_version.xsd + * netex_units.xsd + * netex_all_objects_reusableComponents.xsd + * netex_publication_version.xsd + * _Other updates_: + * NeTEx.spp + * NeTEx.xpr + * _Updates to xml examples_: + * NewModes-CycleSharingExample.xml + + +### 2021.09.01 NewModes: CommentAction Add __PoolOfVehicles__. [#221](https://github.com/NeTEx-CEN/NeTEx/pull/221) + * Add __mustpickupanddropoffInSameZone_ value to __mobilityConstraintZone__ restiction values. + * Add __PoolOfVehicles__ to Mobility Service Zonstraint zone package. Add uniqueness constraint. + * Add __PoolOfVehicles__to __MobilityServiceFrame__. + * Add __MobilityServiceConstraintZone__ to Network access right validity parameters. + * _Updates to xml schema_: + * netex_netex_nm_mobilityConstraintZone_support.xsd + * netex_netex_nm_mobilityConstraintZone_version.xsd + * netex_netex_nm_mobilityServiceFrame_version.xsd + * netex_netex_nm_mobilityJourneyFrame_version.xsd + * netex_nm_vehicleParkingAreaInformation_version.xsd + * netex_ifopt_parking_support.xsd + * netex_accessRightParameter_version.xsd + * netex_publication_version.xsd + * _Updates to xml examples_: + * NewModes-CycleSharingExample.xml + +### 2021.08.30 NewModes: CommentAction: Add policy url attributes + * Add to __SharingPolicyUrl__ attribute to __VehicleSharingService__ and __PoolingPolicyUrl__ attribute to __VehiclePoolingService___. + * _Updates to xml schema_: + * netex_netex_nm_mobilityService_version.xsd + +### 2021.05.03 NewModes: GBFS compatibility AT#1 __MobilityConstraintZone__ add __ZoneRuleApplicability__ add _inside_ and _outside_. [#165](https://github.com/NeTEx-CEN/NeTEx/pull/165/files) + + * Add _enclosed_ value to __ParkingLayout__ enumeration + * _Updates to xml schema_: + * netex_mobilityZerviceConstraintZone_support.xsd.xsd +### 2021.04.18 NewModes: GBFS compatibility AT#1 __DataSource__ add __DataLicenceCode__ and __DataLicenceUrl__ to __DataSource__. + * Add _enclosed_ value to __ParkingLayout__ enumeration + * _Updates to xml schema_: + * netex_mobilityZerviceConstraintZone_support.xsd.xsd + * netex_mobilityZerviceConstraintZone_version.xsd.xsd + * _Updates to xml examples_: + * NewModes-CycleSharingExample.xml + +### 2021.04.15 NewModes: GBFS compatibility AT#1 Add _car_ as enum value to to __Vehicle__ / _vehicle Types_. +__ParkingProperties__ + * Add __BayGeometry__, __ParkingVisibility__ with values. + * Add _enclosed_ value to __ParkingLayout__ enumeration. + * _Updates to xml schema_: + * netex_vehicle_type_support.xsd.xsd + * netex_parking_support.xsd.xsd + * netex_parking_version.xsd.xsd + * _Updates to xml examples_: + * NewModes-CycleSharingExample.xml + * NewModes-CarPoolingExample.xml. + +### 2021.04.15 NewModes: Revise AT#8 Add __ShortName__ to __MobilityService__. [#164](https://github.com/NeTEx-CEN/NeTEx/pull/164/commits) + * _Updates to xml schema_: + * netex_mobility_service.xsd.xsd + +### 2021.04.15 NewModes: Revise AT#8 Facilities: AT#8 add _scooterHire_ to value to __HireFacility__ enumeration. + * Align __Hirefacility__ values with spec and add new __Mode__ values _scooterHire_, _vehicleHire_, _boatHire_ and _other_. + * Add _docks_ to __CycleStorage__ enumeration. + * _Updates to xml schema_: + * netex_ifopt_localServiceCommercial_support.xsd.xsd + * netex_ifopt_mobilityService_version.xsd. + * netex_ifopt_equipmentParking_support.xsd + * netex_facility_support.xsd.xsd + * _Updates to xml examples_: + * NewModes-CycleSharingExample.xml + * NewModes-CarPoolingExample.xsd + +### 2021.04.14 NewModes: Revise AT#8 add _mobileAppInstallCheck_ to value to __infoLinkTypes__ enumeration. [#162](https://github.com/NeTEx-CEN/NeTEx/pull/162) + * _Updates to xml schema_: + * netex_utility_types.xsd + * _Updates to xml examples_: + * NewModes-CycleSharingExample.xml + +### 2021.04.14 NewModes: Revise AT#9 Add missing enum values to __MobilityConstraintZone__. __TransportZoneUseEnumeration__: _allUsesAllowed_ and _noPassThrough_ . [#161](https://github.com/NeTEx-CEN/NeTEx/pull/161) + * _Updates to xml schema_: + * netex_nm_mobilityServiceConstraintZone_version.xsd + * _Updates to xml examples_: + * NewModes-CycleSharingExample.xml + +### 2021.03.10 NewModes: Revisions to support GBS. add _targetPlatform_ attribute to _InfoLink_. + * New modes: add target platform to attributes of __InfoLink__. + * _Updates to xml schema_: + * netex_utilityTypes.xsd + +### 2021.03.10 NewModes: Revisions to support GBFS. + * Add _RentalAvailability_ and _ParkingBayCondition_. + * _Updates to xml schema_: + * RENAME parkingBayStatus to netex_nm_vehicleParkingAreaInformation_support.xsd + * RENAME nm_mobilityJourneyFrame_version.xsd + * netex_nm_publication_version.xsd + * netex_all_objects_part5_newModes.xsd + * netex_nm_mobilityJourneyFrame_version.xsd + * NeTEx.SPP + * NeTEx.xpr + * _Updates to xml examples_: + * NewModes-CarPoolingExample.xsd + +### 2021.01.29 Bug Issue #143 Correct data type of __GapToPlatform__. [#149](https://github.com/NeTEx-CEN/NeTEx/pull/149) + * _Updates to xml schema_: + * netex_equipmentVehiclePassenger_version.xsd.xsd + +### 2021.01.10 NewModes: Revisions. + * Add constraint for __ModeRestrictionAssessment__. + * Add unverified status to __AccountStatusType__. + * __Customer__: Add EMail and Phone verification flag. + * Add __allVehicles__ enbum value to __SelfDriveMode__ values. + * _Updates to xml examples_: + * NewModes-CarPoolingExample.xsd + * NewModes-CyclePoolingExample.xsd + * NewModes-CyclePoolingExample.xsd + * _Updates to xml schema_: + * netex_mobilityService_version.xsd + * netex_salesContract_support.xsd + * netex_salesContract_version.xsd + * netex_nm_publication_version.xsd + +### 2021.01.08 NewModes: Revisions. + * Rename __PersonalVehicleType__ to __SimpleVehicleType__. + * Drop __MobilityServiceElement__ and use __DistanceMatricElement__ instead. + * _Updates to xml examples_: + * NewModes-CarPoolingExample.xsd + * NewModes-CyclePoolingExample.xsd + * NewModes-CyclePoolingExample.xsd + * _Updates to xml schema_: + * netex_distanceMatrixElement_version.xsd + * netex_farsStructureElement_version.xsd + * netex_nm_publication_version.xsd + * REMOVE netex_nm_mobilityServiceElement_support.xsd + * REMOVE netex_nm_mobilityServiceElement_version.xsd +### 2020.12.11 NewModes: Revisions + * Rename __PersonalVehicleType__ to __SimpleVehicleType__. + * Drop __PublicTransportOrganisationType__. + * Add expiry date to __AccessCode__. + * _Updates to xml schema_: + * netex_submmode_version.xsd + * netex_mode_version.xsd + * netex_mode_support.xsd + * netex_vehicleType_support.xsd + * netex_vehicleType_version.xsd + * netex_transportOrganisation_support.xsd + * netex_transportOrganisation_version.xsd + * netex_mobilityService_support.xsd + * netex_mobilityService_version.xsd + * netex_onlineService_version.xsd + * netex_trainElement_version.xsd + * netex_accessCredentials_version.xsd + +### 2020.11.06 NewModes: Corrections + * Drop unused __ContinuousModes__ enumeration. + * _Updates to xml schema_: + * netex_mode_support.xsd + +### 2020.11.06 NewModes: Corrections + * Correct __ParkingEquipment__ supertypes. + * _Updates to xml schema_: + * netex_nm_parkingEquipment_version.xsd + * netex_nm_parkingEquipmentsupport.xsd + * netex_nm_parkingEquipment_version.xsd + +### 2020.11.12 NewModes: Corrections + * Rename __ModelEquipmentProfile__ to __VehicleModelProfile__, __CycleEquipmentProfile__ to __CycleModelProfile__, , __CarEquipmentProfile__ to __CarModelProfile__ + * Correct comments and missing types. Move __Contact__ into organisation package. + * _Updates to xml examples_: + * NEW NewModes-CarPoolingExample.xsd + * NEW NewModes-CyclePoolingExample.xsd + * _Updates to xml schema_: + * netex_nm_vehicleType_support.xsd + * netex_nm_fleetEquipment_support.xsd + * netex_nm_fleetEquipment_version.xsd + * netex_publication.xsd + +### 2020.11.06 NewModes: Corrections + * Rename __GeneralVehiclePooling__ to __CarPoolingService__. + * Correct comments and missing types. Move __Contact__ into organisation package. + * _Updates to xml examples_: + * NEW NewModes-CarPoolingExample.xsd + * _Updates to xml schema_: + * netex_organisation_support.xsd + * netex_organisation_version.xsd + * netex_transportOrganisation_version.xsd + * netex_nm_mobilityService_support.xsd + * netex_nm_mobilityService_version.xsd + * netex_publication.xsd + +### 2020.11.06 NewModes (Norway): Enhace Organisations + * Add relationship between organisations: * Add __RelatedOrganisation__, with __OrganisationRole__ enumerations. + * Add reusable __Contact__ details. + * _Updates to xml schema_: + * netex_organisation_support.xsd + * netex_organisation_version.xsd + * netex_transportOrganisation_version.xsd + * netex_all_objects_generic.xsd + * netex_salesDistribution_version.xsd + * netex_publication.xsd + * NeTEx,SPP + +### 2020.11.06 Incorporate master udpates : + * Issue #124, Add _multimodalQuay_ enumeration to __Quay__. + * Fix typo on __AllInclusivePriceType__. + * _Updates to xml schema_: + * netex_all_frames_framework.xsd + * netex_stopPlace_support.xsd + * netex_facilityUic_support.xsd + +### 2020.10.21 NewModes : Car service example and miscellaneous small revisions. + * Add XML Example of Chauffeured car service; revise schema to enable. + * NewModes: Add __MobilityServiceElement__ to __Tariff__. + * Geofencing: + * Add new __MobilityServiceConstraintZone__ : for geofenceing. Add to __ResourceFrame__. + * __RoutingConstraintZone__ : Add _forbiddenZone_, _passThroughUseOnly_, _cannotBoardInZone_ and _mustAlightInZone_ to __ZoneUse__. + * Individual Traveller: + * Add __IndividualTraveller__ with __IndividualTravellerInfo__ and __VehiclePoolingDriverInfo__, + * Add _member_ and _other_ to __UserProfile__ __UserType__ enumeration. + * Add _unspecified_ enum value to __GenderEnumeration__, for use in __IndividualTraveller__. + * Usage Paremeters: + * Rename __HireChargePolicy__ to __RentalChargePolicy__ and move to separate rental operations package. + * Add _fine_ and _findHandlingFee_ to __RentalPolicy__ values. + * Vehicles: + * Add __PropulsionType__ (with enum values) and __MaximumRange__ to __TransportType__, + * Add __Description__, and __ModelProfileRef__ to __Vehicle__, + * Rename __TypeofFuel__ to __FuelType__ (Depreceate __TypeOfFuel__), + * __Parking__ add open vehicle types using __TransportTypeRef__. + * _Updates to xml examples_: + * NEW NewModes-ChauffeuredServiceExample.xsd + * _Updates to xml schema_: + * netex_routingConstraint_support.xsd + * NEW netex_mobilityServiceConstraint_support.xsd + * NEW netex_mobilityServiceConstraint_version.xsd + * netex_distribution_support.xsd + * netex_parking_support.xsd + * netex_parking_version.xsd + * netex_equipmentENergySupport_support.xsd + * netex_fareStructureElement_support.xsd + * NEW netex_nm_individualTraveller_support.xsd + * NEW netex_nm_individualTraveller_version.xsd + * netex_vehicleType_support.xsd + * netex_vehicleType_version.xsd + * netex_all_objects_part5_newModes.xsd + +### 2020.10.20 NewModes : Car pooling example and miscellaneous small revisions. [#190](https://github.com/NeTEx-CEN/NeTEx/pull/190) + * NewModes:Add XML Example of Car Pooling Service, revise schema to enable. + * Frames + * TM Support: __SalesTransactionFrame__ : Add __MediumAccessDevice__. + * General: __ResourceFrame__ : Add __FacilitySets__. + * __ConditionSummary__ (for __FareProduct__ and __SalesOfferPackage__): Add __RentalConditionSummaryGroup__. + * Utility types: __InfoLinks__ add _mobileAppDownload_ value to __infoLinkTypes__ enumeration. + * Facilities: Add _AnimalsAllowed_ enum value to __NuisanceFacility__. Add missing _taxiRank_ enumeration value to __StopPlaceType__, + * _Updates to xml schema_: + * NEW NewModes-CarPoolingExample.xsd + * netex_salesContract_version.xsd + * netex_salesTransaction_version.xsd + * netex_usageParameterEligibility_support.xsd + * netex_facility_support.xsd + * netex_parkingSupport_version.xsd + * netex_utilityTypes_version.xsd + * netex_resourceFrame_version.xsd + * netex_customerEligibility_version.xsd + +### 2020.10.16 NewModes : Cycle example and miscellaneous small revisions. + * NewModes: Add XML Example of Cycle Sharing service, revise to enable new features. + * Usage Parameters + * New Modes: __UsageValidityPeriod__ : __ Add _accessCode_ value to __ActivationMeans__ enumeration. + * NewModes: Add new __HirePenaltyPolicy__ parameter with _noVehicleReturn_, _lateVehicleReturn_, _damageToVehicle_, _damageToEquipment_, etc, values. + * NewModes: __ChargingPolicy__ : Add __DepositPolicy__ attribute with enum values. + * Fare Product + * NewModes: Add __RequiresDeposit__ and __NoCashPayment__ to __CommercialConditionSummary__. + * FIX: __ChargingMomementType__ add new value _beforeTravelThenAdjustAtEndOfTravel_; correct typo on _beforeStartThenAdjustAtEndOfFareDay__ + * Fare Table: + * Add __EquipmentRef__ to __FareTable__ and __Cell__ specifics. + * Organisation: + * NewModes: __Organisation__; Add __onlineProvider__ to __OrganisationType__ enumeration + * Equipment: + * NewModes: Add _docks_ value to __CycleStorageType__ enumeration values. + * __LuggageStorageFacilities__: add enumeration values _skiRacks_ and _skiRacksAtRear_. + * Network Restriction + * NewModes: __NetworkRestrictions__ : Widen all references __VehicleTypeRef__ to be __TransportTypeRef__ + * _Updates to xml schema_: + * NEW NewModes-CycleSharingExample.xsd + * netex_organisation_support.xsd + * netex_equipmentParking_support.xsd + * netex_facility_support.xsd + * netex_networkRestriction_version.xsd + * netex_parking_version.xsd + * netex_usageParameterTravel_support.xsd + * netex_usageParameterCharging_support.xsd + * netex_usageParameterCharging_version.xsd + * netex_fareTable_version.xsd + * netex_usageParameterCharging_version.xsd + * netex_nm_accessCredentialAssignment_version.xsd + * netex_conditionSummary_support.xsd + +### 2020.10.15 NewModes : Revise condition summary. + * NewModes: __FareProduct__ / __ConditionSummary__: Add __Mode__ and __ModeOfOperation__. + * FIX: __Site__: Add _transport_ value to __SiteType__ enumeration values. + * _Updates to xml schema_: + * netex_site_support.xsd + * netex_resourceFrame_version.xsd + * netex_conditionSummary_support.xsd + +### 2020.10.15 NewModes : Add Constraints for NewMode entities. + * _Updates to xml schema_: + * netex_networkRestriction_version.xsd + * netex_nm_publication_version.xsd + +### 2020.10.15 NewModes : Revise Frames + * _Updates to xml schema_: + * netex_nm_mobilityServiceFrame_version.xsd + * netex_nm_vehicleMeetingPoint_version.xsd + * netex_nm_singleJourneyPath_version.xsd + +### 2020.10.15 NewModes : Add attributes from IXSO + * NewModes:Update __FleetEquipment__: add attributes from IXSO. + * _Updates to xml schema_: + * netex_nm_fleetEquipment_support.xsd + * netex_nm_fleetEquipment_version.xsd + +### 2020.10.15 NewModes : Fares support. + * NewModes: Add __LocalServiceRef__ and __MobilityServiceRef__ to __Tariff__ applicability. + * NewModes: Add __MobilityServiceElement__ and __MobilityServiceElementPrice__. + * _Updates to xml schema_: + * netex_fareStructureElement_version.xsd + * netex_ifopt_allObjects.xsd + * NEW netex_nm_mobilityServiceElement_support.xsd + * NEW netex_nm_mobilityServiceElement_version.xsd + +### 2020.10.14 NewModes : Parking Caspacity. + * NewModes: Add __ParkingCapacityAssignment__ + * _Updates to xml schema_: + * netex_ifopt_allObjects.xsd + * NEW netex_nm_parkingCapacityAssignment_support.xsd + * NEW netex_nm_parkingCapacityAssignment_version.xsd + +### 2020.10.14 NewModes : Corrections to "all object" include files, + * FIX: Clean up all_object includes. Add missing files. + * _Updates to xml schema_: + * netex.spp + * netex_ifopt_allObjects.xsd + * DELETE netex_accounting_version.xsd + * netex_allObjects_part2_journeyTimes.xsd + * netex_allObjects_reusableComponents.xsd + * netex_all_objects_part3_salesTransactions + +### 2020.10.14 NewModes : Revise __Parking__ model. + * NewModes: Add __VehicleServiceParkingBay__ and __ParkingBayStatus__ . + * _Updates to xml schema_: + * netex_all_objects_part5_newModes.xsd + * netex_nm_parkingBayStatus_support.xsd + * netex_nm_parkingBayVersion_version.xsd. + +### 2020.10.13 NewModes : Fare model updates. + * NewModes: __CustomerPurchasePackage__: Add __MediumApplicationRef__. + * NewModes: Eligibility __UsageParameter__: Add __VehiclePoolerProfile__. + * _Updates to xml schema_: + * netex_netex_customerPurchasePackage_version.xsd + * netex_nm_usageParameterEligibility_support.xsd + * netex_nm_usageParameterEligibility_version.xsd. + * netex_nm_salesContract_version.xsd. + +### 2020.10.11 NewModes: File reorganise and rename to follow dependencies + * TIDY UP Move prerequisite files to NeTEx framework. Add "nm" to file name to distinguish. + * _Updates to xml schema_: + * MOVE to RC: netex_netex_nm_fleet_support.xsd + * MOVE to RC: netex_netex_nm_fleet_version.xsd + * MOVE to RC: netex_netex_nm_fleetEquipment_support.xsd + * MOVE to RC: netex_netex_nm_fleetEquipment_version.xsd + * MOVE to IFOPT: netex_taxiPlace_support.xsd + * MOVE to IFOPT: netex_taxiPlace_version.xsd + * MOVE to FM_ST: netex_mediumAplication_support.xsd + * MOVE to FM_ST: netex_mediumApplication_version.xsd + * MOVE to FM_ST: netex_customerPaymentMeans_support.xsd + * MOVE to FM_ST: netex_customerPaymentMeans_version.xsd + * RENAME as netex_netex_nm_fleet_version.xsd + * RENAME as netex_netex_nm_fleet_support.xsd + * RENAME as netex_netex_nm_fleet_version.xsd + * RENAME as netex_netex_nm_fleetEquipment_support.xsd + * RENAME as netex_netex_nm_fleetEquipment_version.xsd + * RENAME as netex_netex_nm_mobilityService_support.xsd + * RENAME as netex_netex_nm_mobilityService_version.xsd + * RENAME as netex_netex_nm_onlineService_support.xsd + * RENAME as netex_netex_nm_onlineService_version.xsd + * RENAME as netex_nm_vehicleMeetingPoint_support.xsd + * RENAME as netex_nm_vehicleMeetingPoint_version.xsd + * RENAME as netex_nm_vehicleMeetingPointAssignment_support.xsd + * RENAME as netex_nm_vehicleMeetingPointAssignment_version.xsd + * RENAME as netex_nm_taxiPlace_support.xsd + * RENAME as netex_nm_taxiPlace_vesion.xsd + * RENAME as netex_nm_vehicleMeetingPlace_support.xsd + * RENAME as netex_nm_vehicleMeetingPlace_vesion.xsd + * RENAME as netex_nm_vehicleAccessCredentials_support.xsd + * RENAME as netex_nm_vehicleAccessCredentials_vesion.xsd + +### 2020.10.11 NewModes Price Tidy ups - update references, fixes. + * NewModes __FareTable___ Update __CellReferences__: + * Add __VehicleTypeRef__ . __VehicleModelRef__, __ModelEquipmentRef__, __EquipmentRef__. + * _Updates to xml schema_: + * netex_fareTable_version.xsd + +### 2020.10.09 NewModes Tidy ups - update references, fixes. + * NewModes: revise __TravelSpecificationSummary__: + * Add __VehicleMeetingPoint__ and __VehicleMeetingPlace__ to __TravelSpecificationSummaryEndpoint__. + * __TravelSpecificationSummary__: Add __SingleJourneyRef__. + * NewModes: Widen refernce to use __TransportOrganisationRef__ rather than __OperatorRef__ + * Revise reference: __TravelSpecificationSummaryEndpoint__. + * Revise reference: __SiteConnection__. + * Revise reference: __FareTable__. + * Revise reference: __JourneyDesignator__. + * NewModes: Widen reference to use __TransportTypeRef_ rather than __VehicleRef__. + * Revise reference: __TimetableFrame__. + * Revise reference: __ParkingTariff__, __Parking_Properties__. + * Revise reference: __Fleet__. + * Revise reference: __SingleJourneyPath__: Add __OnwardMeetingLinkRef__ to __PointInSingleJourneyPath__. + * __FareTable__ : Add __SingleJourneyRef__, __GroupOfSingleJourneysRef__. + * _Updates to xml schema_: + * netex_travelSpecificationSummary_version.xsd + * netex_timetableFrame_version.xsd + * netex_siteConnection_version.xsd + * netex_fleet_version.xsd + * netex_singleJourneyPath_version.xsd + * netex_journeyDesignator_support.xsd + * netex_parkingTariff_version.xsd + * netex_fareTable_version.xsd + +### 2020.10.09 NewModes: Revise booking arrangements + * NewModes: Add __ServiceBookingArrangement__ to __MobilityService__. + * General: Add further __PaymentMethodType__ enum values; _mobileApp_ and _atCounter_ to __BookingMethod__ . + * _Updates to xml schema_: + * netex_serviceRestriction_support.xsd + * netex_serviceRestriction_version.xsd + * netex_usageParameterBooking_support.xsd + * netex_usageParameterBooking_version.xsd + +### 2020.10.09 NewModes: Allow a colour to be associated with a parking etc. + * NewModes: Add __Presentation__ to __SiteElement__. + * _Updates to xml schema_: + * netex_ifopt_site_version.xsd + +### 2020.10.07 NewModes Add new frames + * NewModes: Add __MobilityServiceFrame__ and __MobilityJourneyFrame__. + * Updates to xml schema_: + * netex_all_objects_part5_newModes.xsd + * NEW netex_mobilityServiceFrame_version.xsd + * NEW netex_mobilityJourneyFrame_version.xsd + +### 2020.10.07 NewModes: Make new mode elements assignable as fare parameters. + * Add parameters to __ValidityParameterAssignments__. + * _Updates to xml schema_: + * netex_all_objects_part5_newModes.xsd + +### 2020.10.07 NewModes: Implement TM6.0 Fare entities not yet in NeTEx. + * Add __MediumAccessDevice__, __CustomerPaymentMeans__. + * _Updates to xml schema_: + * netex_all_objects_part5_newModes.xsd + * NEW netex_mediumApplication_support.xsd + * NEW netex_mediumApplication_version.xsd + * NEW netex_customerMeans_support.xsd + * NEW netex_customerMeans_version.xsd + * NEW netex_vehicleAccessCredentials_support.xsd + * NEW netex_vehicleAccessCredentials_version.xsd + * netex_salesContract_support.xsd + +### 2020.10.07 NewModes: Equipment additions. + * NewModes: Add __VehicleReleaseEquipment__, __RefuellingEquipment__ , + * NewModes: __TransportType__: Add __ModelProfile__. + * _Updates to xml schema_: + * netex_all_objects_part5_newModes.xsd + * netex_parkingEquipment_support.xsd + * netex_parkingEquipment_version.xsd + * netex_vehicleType_support.xsd + * netex_vehicleType_version.xsd + * NEW netex_fleetEquipment_support.xsd + * NEW netex_fleetEquipment_version.xsd + * NEW netex_equipmentEnergy_support.xsd + * NEW netex_equipmentEnergy_version.xsd + +### 2020.10.06 NewModes: Add single journey support. + * NewModes: Add __SingleJourney__ and ___SingleJourneyPath__. + * NewModes: Add __ModeRestrictionAsssessment__ to __RouteLink__. + * _Updates to xml schema_: + * netex_all_objects_part5_newModes.xsd + * NEW netex_singleJourney_support.xsd + * NEW netex_singleJourney_version.xsd + * NEW netex_singleJourneyPath_support.xsd + * NEW netex_singleJourneyPath_version.xsd + * NEW netex_vehicleServicePlaceAssignment_support.xsd + * NEW netex_vehicleServicePlaceAssignment_version.xsd + * netex_route_support.xsd + * netex_route_version.xsd + +### 2020.10.06 NewModes: Add topology elements; points, places and assignments. + * NewModes: Add __VehicleMeetingPooint__ and ___VehicleMeetingLink__. + * NewModes: Add __VehicleMeetingPlace__ and ___VehicleServicePlaceAssignments__, with subtypes. + * NewModes: Add __VehicleMeetingPoint__ to __Connection__ end. + * _Updates to xml schema_: + * netex_all_objects_part5_newModes.xsd + * NEW netex_vehicleMeetingPoint_support.xsd + * NEW netex_vehicleMeetingPoint_vesion.xsd + * NEW netex_vehicleMeetingPointAssignment_support.xsd + * NEW netex_vehicleMeetingPointAssignment_version.xsd + * NEW netex_taxiPlace_support.xsd + * NEW netex_taxiPlace_vesion.xsd + * NEW netex_vehicleMeetingPlace_support.xsd + * NEW netex_vehicleMeetingPlace_vesion.xsd + * netex_servicePattern_version.xsd + +### 2020.10.04 NewModes: Update responsibility role types. + * NewModes: Add new enumeration values for __StakeholderRoleType__ and __DataRoleType__. + * _Updates to xml schema_: + * netex_responsibilities_support.xsd + +### 2020.10.04 NewModes: Add mobility services. + * NewModes: Add __MobilityService__ and subtypes, add __OnlineServiceOperator__. + * _Updates to xml schema_: + * netex_all_objects_part5_newModes.xsd + * NEW netex_mobilityService_support.xsd + * NEW netex_mobilityService_version.xsd + * NEW netex_onlineService_support.xsd + * NEW netex_onlineService_version.xsd + * netex.spp + +### 2020.10.04 NewModes: Revise __VehicleType__ + * Add __TransportType__ and __PersonalTransportType__. + * _Updates to xml schema_: + * NEW netex_fleet_support.xsd + * NEW netex_fleet_version.xsd + * netex_vehicleType_support.xsd + * netex_vehicleType_version.xsd + * netex_train_support.xsd + * netex_train_version.xsd + * netex_vehicleJourney_version.xsd + * netex_all_objects_reusableComponents.xsd + * NEW netex_all_objects_newModes.xsd + +### 2020.10.04 NewModes Revise Transport Organisations. + * NewModes: Add __TransportOrganisation__ and __PublicTransportOrganisation__. + * _Updates to xml schema_: + * netex_transportOrganisation_support.xsd + * netex_transportOrganisation_version.xsd + +### 2020.10.04 NewModes: Add references to __ModeOfOperation__. + * NewModes: Update existing references to __Mode__ to include __ModeOfOperation__. + * _Updates to xml schema_: + * netex_transportOrganisation_version.xsd + * netex_vehicleType_version.xsd + * netex_stopPlace_version.xsd + * netex_flexiblStopPlace_version.xsd + * netex_equipmentTicketing_version.xsd + * netex_equipmentSigns_version.xsd + * netex_access_version.xsd + * netex_line_version.xsd + * netex_servicePattern_version.xsd + * netex_assistenceBooking_version.xsd + * netex_accessRightParameter_version.xsd + * netex_usageParameterTravel_version.xsd + * netex_fareFrame_version.xsd + +### 2020.10.04 NewModes : Revise modes + * NewModes Add __ModeOfOperation__. + * FIX: Also correct typos in __Notice__ file. + * _Updates to xml schema_: + * NEW netex_modeOfOperation_support.xsd + * NEW netex_modeOfOperation_version.xsd + * netex_mode_support.xsd + * netex_mode_version.xsd + * netex_notice_version.xsd + * netex.spp +---- +## Version 1.1.2 - Base version plus further minor fixes comprising. + +### 2020.08.11 Update Oxygen project to include new examples + * _Other updates_: + * netex.xpr + * _Updates to examples_: + * \examples\standards\era_uic\Netex_Eurostar mapping_era_1.xml + * \examples\standards\era_uic\Netex_Eurostar mapping_era_2.xml + * \examples\standards\era_uic\Netex_era_uic_joiningsplitting.xml + * \examples\standards\era_uic\Netex_era_uic_timetable_hack_01.xml + * \examples\standards\norway\stops\BasicStopPlace_example.xml + +### 2020.08.11 FIX Issue #110 Add missing fuel types to __VehicleType__ / __FuelType__ [#110](https://github.com/NeTEx-CEN/NeTEx/pull/110) + * Additional values: _electricContact, battery, dieselBatteryHybrid, petrolBatteryHybrid, biodiesel, hydrogen, liquidGas, methane, ethanol_. + * _Updates to xml schema_: + * netex_framework\netex_reusableComponents\netex_vehicleType_support.xsd + +### 2020.08.11 FIX Issue #106 *Schema*: Add missing constraints for allow __GeneralZone__ and __AdministrativeZone__ + * _Updates to xml schema_: + * netex_publication_version.xsd + +### 2020.08.11 FIX Issue #104 *Framework*: Add __ResponsibilityRole__ in __ResourceFrame__ [#112](https://github.com/NeTEx-CEN/NeTEx/pull/112) + * _Updates to xml schema_: + * netex_framework\netex_frames\netex_resourceFrame_version.xsd" + +### 2020.08.10 FIX Issue #108 *Framework*: Allow __ServiceCalendar__ to hold __UuicOperatingPeriod__ [#109](https://github.com/NeTEx-CEN/NeTEx/pull/109) + * _Updates to xml schema_: + * netex_framework\netex_reusableComponents\netex_serviceCalendar_support.xsd + * netex_framework\netex_reusableComponents\netex_serviceCalendar_version.xsd + * netex_publication_version.xsd + * _Updates to examples_: + * Add NTA XML examples + +### 2020.07.29 FIX Issue #97 *Part2*: Add __NormalDatedJourney__ and __DatedVehicleJourney__ to journeys in __TimetableFrame__. + * _Updates to xml schema_: + * netex_part2\netex_journeyTimes\netex_datedVehicleJourney_version.xsd + +---- +## Version 1.2.0 - Updated NeTEx Schema +The Part 1, Part 2, & Part 3 Schemas include minor corrections and enhancements since the issue of the Version 1.0 documents. +The revised Version 1.1 documents include the changes. +Base version plus further minor fixes comprising## + +### 2020.07.28 EXAMPLES Revise fare examples. + * _Updates to xml schema_: + * NONE + * _Updates to xml examples_: + * Extensive + +### 2020.07.28 FIX Issue #101*Publication*:Add missing constraints for __FareTableRow__, __FareTableColumn__, __TypeOfLine__ and for __FareZone__ Parent, + * _Updates to xml schema_: + * netex_framework/netex_genericFramework/netex_publication_version.xsd + * _Updates to xml examples_: + * Netex_era_distance_ro.xml. + +### 2020.07.28 FIX Issue #100*FRAMEWORK*: Correct the substitution group on OrganisationUnit. + * _Updates to xml schema_: + * netex_framework/netex_genericFramework/netex_organisation_version.xsd + +### 2020.06.21 FIX Issue #75*FRAMEWORK*: __FareClass__ Remove space from end of __secondClass__ enumeration value. + * _Updates to xml schema_: + * netex_framework/netex_reusableComponents/netex_serviceRestrictions_support.xsd + +### 2020.06.21 PARTIAL FIX Issue #73*PART2*:Recursive includes: + * NJSK Remove cyclic inclusion dependency. + * _Updates to xml schema_: + * netex_flexibleService Journey.xml + +### 2020.06.21 FIX Issue #78 *PART2*:Journey Coupling: + * NJSK __JourneyCouple__ / __MainPartRef__ should be of type __JourneyPartRef__. + * _Updates to xml schema_: + * netex_coupledJourney.xml + +### 2020.06.21 FIX Issue #92 *FRAMEWORK*:LinkProjection NJSK + * Expose the missing __EntityInVersion__ elements on the __LinkProjection__ derivation + * _Updates to xml schema_: + * netex_projectionVersion.xml + +---- +## Version 1.10 - Base version plus minor fixes comprising + * Norway contributions, + * The approved 1.1 CRs 1-50 + * Rollup of fixes and additional documentation on other fixes. + * Corrections to integration of NK 1.09. + * 51-55 CRs from Meeting Feb 2019. Also CRs from NL, EURA, UK, Norway and SBB input. + +The Part 1, Part 2, & Part 3 Schemas include minor corrections and enhancements since the issue of the Version 1.0 documents. +The revised Version 1.1 documents include the changes. + +### 2019.05.17 FIX *PART3:FARES*: NJSK __FarePointInPattern__ Fix case on __isFareStage__ and __isForbidden__ + * _Updates to xml schema_: + * netex_production.xml + +### 2019.05.15 FIX *PART1:ND*: NJSK Add constraints on __TypeOfLineRef__ + * _Updates to xml schema_: + * netex_publication.xml + +### 2019.05.14 EXMP *FRAMEWORK*: NJSK Add Serbia and Montenegro to country codes + * _Updates to xml schema_: + * netex_countrySupport.xml + +### 2019.05.10 EXMP *EXAMPLES*: NJSK Revise UK examples to have UK Profile data. + * _Updates to xml examples_: Many + +### 2019.05.19 FIX *PART1:ND*: NJSK Fix - remove empty value for CompassBearing enum + * _Updates to xml schema_: + * netex_locationTypes.xml + * netex_routeInstructionVersion.xml + +### 2019.05.02 FIX *FRAMEWORK*: NJSK Fix constraints on __DefaultCodespaceRef__ + * Also Corrections to a lot of examples. + * _Updates to xml schema_: + * netex_publication.xml + +### 2019.05.01 FIX *FRAMEWORK*: NJSK Fix constraints on __DefaultDataSourceRef__ and __DefaultResponsibilitySetRef__. + * ALso add EPIP draft profile metadata + * _Updates to xml schema_: + * netex_publication.xml + * netex.spp + * _Updates to xml examples_: + * uk_fxc_addon_HSP_plusbus.xml + * Netex_era_toc_uk.xml + * Netex_era_crossborder_de.xml + * uk_fxc_pass_Metrobus_metrorider.xml + * uk_fxc_trip_First_WoE_Line48_stage+Passes.xml + * uk_fxc_trip_First_WoE_Line48_stage-distance_minimal1.xml + * Netex_tap_tsi_tcvg_stations_1.xml + * epip_common_profile.xml + +### 2019.04.29 FIX *PART2:ND*: NJSK Fix Constraints on __JourneyPart__. + * _Updates to xml schema_: + * netex_publication.xml + +### 2019.04.28 FIX *FRAMEWORK*: NJSK Fix Constraints on __ParkingPassengerEntrance__ and __VehicleEntranceForParking__. + * _Updates to xml schema_: + * netex_publication.xml + * netex_parking_support.xml + * netex_parking_version.xml + +### 2019.05.01 FIX *Parts2VS*: NJSK Fix Add missing _ParentRef__ to __FlexibleService__. + * Also add missing flexble attributes to __SpecialService__ + * _Updates to xml schema_: + * netex_flexibleService.xml + * netex_ServiceJourney.xml + +### 2019.04.29 FIX *PART1:ND*: NJSK Fix Dummy __TariffZone__ should be abstract. + * _Updates to xml schema_: + * netex_zone_version.xml + +### 2019.04.29 FIX *PART2:ND*: NJSK Fix Constraints on __JourneyPart__. + * _Updates to xml schema_: + * netex_publication.xml + +### 2019.04.19 __CHECKPOINT__. + - Revised v1.1 versions of NeTEx UML diagrams, and revised draft NeTEx Part1, Part2 and Part3 documents correspond to this point. + +### 2019.04.19 FIX *Parts3FARES3*: NJSK Add missing __TypeOfFareTable__ element. + * _Updates to xml schema_: + * netex_fareTable_version.xml + +### 2019.04.18 FIX *Parts3FARES3*: NJSK Support Place to Place travel. + * __AccessRightParameter__: Add __AddressRef__, __TopoographicPlaceRef__ and __PlaceUseEnum__. + * __InterchangeRule__ use of __ServiceDesignator__ versus __JourneyDesignator__ + * _Updates to xml schema_: + * netex_accessRightParameter_support.xml + * netex_accessRightParameter_version.xml + * netex_travelSpecificationSummary_version.xml + +### 2019.04.18 FIX *Parts1,2,3*: NJSK Fix: Tidy up Designators. + * __AccessRightParameter__: Add __AddressRef__, __TopoographicPlaceRef__ and __PlaceUseEnum__. + * Modularise __ServiceDesignator__ and __JourneyDesignator__ (no functional change). + * Add __JourneyDesignator__ to __InterchangeRule__ and __GroupOfServiceJourneysMember__. + * _Updates to xml schema_: + * netex_journeyDesignator_support.xml + * netex_interchangeRuletravelSpecificationSummary_version.xml + * netex_serviceJourney_version.xml + +### 2019.04.16 FIXDoc *Part1-IFOPT*: NJSK __Parking__ - correct dependencies. + * Drop __Parking / tariffs relationship__: __ParkingTariff__ can reference __Parking__ but not vice versa. + * Also add missing parents to __ParkingCapacity__. + * NB this will break existing XML that uses __Parking / charges__ relationship. + * _Updates to xml schema_: + * netex_par *king_version.xml + * _Updates to xml examples_: + * netex_10_StopPlace_withParking_1.xml + * netex_21_Sites_Parking_1.xml + * netex_21_Sites_Parking_2.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.04.16 FIXDoc *Part1-IFOPT*: NJSKCorrect __VehicleStoppingPosition__ to reflect UML model. + * Add missing elements to implement relationships between components. + * _Updates to xml schema_: + * netex_stopPlace_version .xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.04.15 FIXDoc *Part1-TP*: NJSK __TimeDemandType__: Add missing __OperationalContextRef__. + * _Updates to xml schema_: + * netex_timedDemandType_version .xml + * netex_stopPlace_version .xml + * _Documentation Changes_: [uml_diagram: ok], [doc-done] + +### 2019.04.15 FIXDoc *Part1-IFOPT*: NJSK Fix __TypeOfEntity__ and __TypeofValue__ descendants to make root elements visible. + * _Updates to xml schema_: + * netex_organisation_version.xsd + * netex_responsibilitySet_version.xsd + * netex_place_version.xsd + * netex_pointAndLink_version.xsd + * netex_pointAndLinkSequence_version.xsd + * netex_projection_version.xsd + * netex_spatialFeature_version.xsd + * netex_zone_version.xsd + * netex_equipment_version.xsd + * netex_facility_version.xsd + * netex_notice_version.xsd + * netex_securityList_version.xsd + * netex_serviceRestrictions_version.xsd + * netex_activation_version.xsd + * netex_line_version.xsd + * netex_journeyPattern_version.xsd + * netex_timeDemandType_version.xsd + * netex_ifopt_checkConstraint_version.xsd + * netex_ifopt_serviceFeature_version.xsd + * netex_flexibleService_version.xsd + * netex_accessRightParameter_version.xsd + * netex_fareStructureElement_version.xsd + * netex_salesOfferPackage_version.xsd + * netex_retailConsortium_version.xsd + * netex_salesContract_version.xsd + * netex_coupledJourney_version.xsd + * netex_usageParameter_version.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-done] + +### 2019.04.15 __FIXDoc__ *Part1-IFOPT*: NJSK Fix Add missing __CountryRef__ to __Authority__. + * Align __Authority__ with __Operator__. + * _Updates to xml schema_: + * netex_transportOperator_version.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.04.15 __FIXDoc__ *Part1-IFOPT*: NJSK Fix add missing __typesOfEntity/TypeOfEntity__ relationship to __TypeOfFrame__. + * _Updates to xml schema_: + * netex_responsibility.xml + * netex_typeOfFrame_version.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.04.15 __FIXDoc__ *Part1-IFOPT*: NJSK Fix add missing element from doc to __TypeOfPassengerInformationEquipment__. + * _Updates to xml schema_: + * netex_passengerInformationEquipment_version.xml + * _Documentation Changes_: [uml_diagram: ok], [doc-ok] + +### 2019.04.14 __FIXDoc__ *Part1-RC*: NJSK Fix __Accommodation__ and __OnBoardStay__ - add missing parent elements. + * Correct typo on __BoardingPermission__. + * NB THis will break existing documents that use ths feature + * _Updates to xml schema_: + * netex_serviceRestrictions_version.xml. + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.04.07 __FIXDoc__ *Part1-IFOPT*: NJSK Add back missing attribute to __SanitaryEquipment / NumberofToilets__. + * Align schema With UML and document. + * _Updates to xml schema_: + * netex_passengerEquipment_version .xml + * _Documentation Changes_: [uml_diagram: ok], [doc-ok] + +### 2019.04.07 __FIX__ *Part3FARES-ST*: NJSK Tidy up - remodularise: move __TravelSpecification__ to be with __CustomerPurchasePackage__. + * Also revise __FareProduct__ classification types. + * _Updates to xml schema_: + * netex_fareStructureElement_support.xsd + * netex_fareProduct_support.xsd + * netex_fareProduct_version.xsd + * netex_fareConditionSummary_support.xsd + * netex_travelDocument_version.xsd + * netex_salesTransaction_support.xsd + * netex_salesTransaction_version.xsd + * netex_customerPurchasePackage_support.xsd + * netex_customerPurchasePackage_version.xsd + * netex_travelSpecifcationSummary_version.xsd + * _Updates to xml examples_: + * uk_fxc_pass_Metrobus_metrorider.xml + * netex_era_distance_ro.xml + * netex_era_crossborder_de.xml + * netex_era_toc_uk.xml + * uk_fxc_trip_First_York_Line26_stage-Z2Z_minimal1.xml + * uk_fxc_trip_First_WoE_Line48_stage-distance_minima1.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.04.04 __FIXDoc__ *PART2-VJ*: NJSK Fix Add missing __ConnectionCertainty__ element that is in doc. + * Add new __ConnectionCertainty__ attribute to __Interchange__ as per UML diagrams and doc. + * _Updates to xml schema_: + * netex_interchange_support.xsd + * netex_interchange_version.xsd + * _Documentation Changes_: [uml_diagram: ok], [doc-ok] + +### 2019.04.04 __FIXDoc__ *Part3-FARES-AR*: NJSK Further tidy ups arising from doc. + * Add new value to __PreassignedFareProduct / Product__ enumeration; _shortTrip_. + * Add new value to __AmountOfPriceUnit / ProductType__ numeration; _storedValue_. + * Add new attribute __ProductType__ to __UsageDiscountRight__ with values _mileagePoints, usageRebate, other_. + * Add new attribute __ProductType__ to __SaleDiscountRight__ with values; _travelCard, payAsYouGoDiscount, other_. + * Add new values to __SupplementProductType__; _penalty_. + * Add new __ChargingMomentType__ attribute to __FareProduct__ with values: _beforeTravel, onStartOfTravel, beforeEndOfTravel, onStartThenAdjustAtEndOfTravel, onStarThenAdjustAtEndOfFareDay, onStartThenAdjustAtEndOfChargePeriod, atEndOfTravel, atEndOfFareDay, atEndOfChargePeriod, free, other_. + * Also remodularise: move __TariffBasisEnum__ to _netex.fareElement_support.xsd_. + * Add new __TypeOfSalesOfferPackage__ attribute to __ValidityParameterAssignment__. Reorganise fare parameters. + * _Updates to xml schema_: + * netex_fareStructureElement_support.xsd + * netex_fareProduct_support.xsd + * netex_fareProduct_version.xsd + * netex_fareConditionSummary_support.xsd + * netex_validityParameterAssignment_version.xsd + * netex_facility_version.xsd + * _Updates to xml examples_: + * uk_fxc_pass_Metrobus_metrorider.xml + * netex_era_distance_ro.xml + * netex_era_crossborder_de.xml + * netex_era_toc_uk.xml + * uk_fxc_trip_First_York_Line26_stage-Z2Z_minimal1.xml + * uk_fxc_trip_First_WoE_Line48_stage-distance_minimal1.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.04.02 __FIX__ *PART2*: Add TransportOperatorRef to JourneyDesignator + * _Updates to xml schema_: + * netex_journeyDesignator_support.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.30 __EURA-52, EURA40__ *Part3-FARES-AR*: Support suspension of season passes. + * NJSK Review: Make __Suspending__ a separate usage parameter, with attributes __SuspensionPolicy, QualificationPeriod, QualificationPercent, MinimumSuspensionPeriod, MaximumSuspensionPeriod, MaximumNumberOfSuspensionsPerTerm__. + * _Updates to xml schema_: + * netex_usageParameterTravel_support.xsd. + * netex_usageParameterTravel_version.xsd. + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.30 __FR49__ *Part1-IFOPT*: CD #65 Accessibility changes, +* Fix add missing __DropKerbOutside__ attribute to __EntranceEquipment__. +* NJSK Review: Rename __LuggageService__ new attribute __LuggageMaxiumWeight__ new attribute to to __MaximumBagWeight__. +* NJSK Review: Rename __Entrance__ new attribute __OpeningNecssaryForce__ to __NecessaryForceToOpen__. +* NJSK Review: Move __Stair__ new attribute __WithoutRiser__ to __StairCase__ (does not apply to escalators). +* NJSK Review: Rename __PathLink__ new attribute __Width__ to __MinimumWidth__ also add __MinimumHeight__. +* NJSK Review: Add value _alwaysOn_ to __LightingMethodEnumeration__. Rename to __LightingOnMethod__. +* NJSK Review: Systemise; for __SignEquipment__ : reuse __AudioTriggerMethod__ rather than have separate valeu set +* NJSK review: Add __PrintedPresentation__ to __SignEquipment__ rather than simple __FontSize__ so as to separate presentation from content. +* NJSK review: Add __FontSizeEnum__ to __PrintedPresentation__ as a general property. +* NJSK Review: Revise __PassengerSafetyEquipment__ , rename 'Acoustic' to 'Audio'. rename app _value_ to _mobileApp_, add _cyclicReadingValue_ +* _Updates to xml schema_: + * netex_ifopt_equipmentTicketing_version.xsd + * netex_ifopt_localService_version.xsd + * netex_ifopt_equipmentAccess_support.xsd + * netex_ifopt_equipmentAccess_ version.xsd + * netex_ifopt_path_support.xsd + * netex_ifopt_path_ version.xsd + * netex_ifopt_equipmentPassenger_support.xsd + * netex_ifopt_equipmentWaiting_support.xsd + * netex_ifopt_equipmentWaiting_version.xsd + * netex_ifopt_equipmentSign_support.xsd + * netex_ifopt_equipmentSign_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.26 __UK-27__ *FRAMEWORK-RC*: NJSK Fix add missing __TrainSize__ attribute to __TrainElement__. +* Align doc with schema. +* _Updates to xml schema_: + * netex_line_support.xsd + * netex_trsinElement_version.xsd + * netex_vehicleJourney_version.xsd + * _Documentation Changes_: [uml_diagram: ok], [doc-done] + +### 2019.03.26 __UK-27__ *Fares-ST*: NJSK Correct annotations, reorder parameters, + * Add __TypeOfProductCategoryRef__ to __TravelSpecificationSummary__, fix __CellRef__ . + * Make __TravelDOcumentRef__ many-to-one.as per TM. + * Also EURA-(nk)Allow marking of use of __CustomerPurchasePackage__. Refine model: make blocking separate from status. Correct annotations. + * Wrap __CustomerPurchasePackage /TravelDocRef__ in a tag. + * Align doc with schema. + * Reorganize fare examples. + * _Updates to xml schema_: + * netex_salesTransaction_version.xsd + * netex_travelDocument_version.xsd + * netex_salesDistribution_support.xsd + * netex_travelSpecificationSummary_version.xsd + * netex_customerPurchasePackage_support.xsd + * netex_customerPurchasePackage_version.xsd + * _Updates to xml examples_: + * uk_fxc_pass_Metrobus_metrorider.xml + * netex_era_distance_ro.xml + * netex_era_crossborder_de.xml + * netex_era_toc_uk.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.26 __NL27__ *Part1-ND*: CD #58 Add default __TypeOfProductCategory__ and __TypeOfService__ to __Line__: + * CD Move __TypeOfProductCategory__ and __TypeOfService__ to _netex_line_version.xsd_. + * NJSK Review: Move __TypeOfProductCategory__ and __TypeOfService__ from (Part2:) _netex_journey_version.xsd_ to (Framework reusable component) _netex_travelRights_version.xsd_)- rather than _line.xsd_, so they are visible to part 1. + * NJSK Review: clean up dependencies. + * Drop include of _netex_travelRights_version.xsd_ from _netex_accessRightParameter_version.xsd_. + * Drop include of _netex_travelRights_version.xsd_ from _netex_usageParameterAfterSales_version.xsd_. + * Drop include of _netex_travelRights_version.xsd_ from _netex_fareTable_version.xsd_. + * Drop include of _netex_travelRights_version.xsd_ from _netex_parking_version.xsd_. + * NJSK Review: Rename _netex_travelRights_version.xsd_ to _netex_servicRetrictions.xsd_ so as to align with TM6 and UML. + * NJSK Review: correct the annotations. Also align _Netex.xpr_ with _Netex.spp_ and correct _Netex.spp_ project files for _XMLSpy_ and _Oxygen_. + * _Updates to xml schema_: + * netex_serviceJourney_support.xsd + * netex_servicePattern_support.xsd + * netex_serviceRestrictions_support.xsd (renamed from netex_travelRights_support.xsd) + * netex_serviceRestrictions_version.xsd (renamed from netex_travelRights_version.xsd) + * netex_line_version.xsd + * netex_accessRightParameter_version.xsd + * netex_usageParameterAfterSales_version.xsd. + * netex_fareTable_version.xsd + * netex_parking_version.xsd + * netex.spp + * netex.xpr + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __FR49__ *Part1-IFOPT*: CD #65 Accessibility changes. + * __TicketingEquipment__ (_netex_ifopt_equipmentTicketing_.xsd): + * CD Add new attributes to __TicketingEquipment__; __TactileInterfaceAvailable, AudioInterfaceAvailable, DisabledPriority, WheelchairSuitable__. + * NJSK Review: Place accessibility attributes in a separate group. Break down into subgroups; __TicketingEquipmentPropertiesGroup, TicketingEquipmentServiceGroup, TicketingEquipmentAccessibilityGroup__. + * CD: Add new attributes to __TicketValidatorEquipment__; __AudioValidationFeedback, VisualValidationFeedback, TactileValidationFeedback, ValidationGuidance__. + * __LocalService__ ( _netex_ifopt_localService.xsd_): + * CD add __LuggageMaximalWeihgt__ to __LuggageService__. + * NJSK Review: Correct Typo and revise name on __LuggageMaximumWeight__ to MaximumBagWeight. Make datatype of __LuggageMaximumWeight__ _WeightType_. Also add to __LeftLuggageService__. + * __AccessEquipment__ (_netex_ifopt_equipmentAccess_.xsd): + * CD Add __NecessaryForce__ to __Entrance__ with values _noForce, lightForce, mediumForce, heavyForce, unknown_. + * CD Add __LightingMethodEnumeration__ to __PlaceLighting__ with values _movementDetector, stepDetector, switchOnTheWall, + atDoorOpening, onlyAtNight_. + * NJSK Review: Correct typo on _stepDetector_. + * CD Add __TactileWarningStripEnumeration__ to __CrossingEquipment__ with values _tactileStripAtBeginning, tactileStripAtEnd, tactileStripAtBothEnds, noTactileStrip, unknown_, + * NJSK Review: Move __TactileWarningStripEnumeration, FlooringTypeEnumeration, BorderTypeEnumeration__ to _netex_ifopt_equipmentAccess,xsd_ from _netex_path_support.sd_; use lower camel case for values. + * CD Add new attribute __NecessaryForceEnumeration__ with values _noForce, lightForce, mediumForce, heavyForce, unknown_. + * CD Add new attribute __LightingMethod__ to __PlaceLighting__ with values _movementDetector, stepDetector, switchOnTheWall, atDoorOpening, onlyAtNight, other_. + * NJSK Review: correct typo on _stepDetector_. + * CD Add new attribute __WithoutRiser__ to __StairEquipment__. + * NJSK Review: Change order of new elements to be with other step properties. + * CD Add new attribute __EscalatorWithLanding__ to __EscalatorEquipment__. + * CD Add new attributes to __TravelatorEquipment__; __Length__, __Slope__ and __IntegratesAnEscalatorPart__. + * NJSK Review: correct name of __IntegratesAnEscalatorPart__ + * CD Add new attributes to __EscalatorEquipment__: __MagneticInductionLoop__, __GroundMarkAlignedWithButton__, __TactileGroundFloorButton__, __ExternalFloorSelection__. + * NJSK Review: Correct name of __GroundMarkAlignedWithButton__. + * NJSK Review: Drop __ButtonsHeigt__ as all ready covered by __CallButtonHeight__. + * NJSK Review: Change order to group with like properties. + * CD Add new attributes to __EntranceEquipment__: __AudioOrVideoIntercom, Airlock, DoorstepMark AudioPassthroughIndicator, OpeningNecessaryForce__ + * NJSK Review: Change order of new elements to group with like properties + * NJSK Review: NB __AudioOrVideoIntercom__ overlaps with __EntranceAttention__. + * CD Add new attributes to __QueuingEquipment__: __DisabledPriority, QueuingSeatedPossible.__ + * __PathLink__ (_netex_ifopt_path.xsd_): + * CD Add new attributes to __PathLink__; __Width, FlooringType, RightSideBorder, LeftSideBordert, TiltAngle, CodedTilt, TactileWarningStrip, TactileGuidingStrip__. + * NJSK Review: Reorder so as to place like elements together, add XML sub groups to organize + * _netex_ifopt_equipmentPassenger_: + * CD Add __FlooringTypeEnumeration__ to __PathLink__ with values _carpet, concrete, asphalt, cork, fibreglassGrating, glazedCeramicTiles, plasticMatting, ceramicTiles, rubber, steelPlate, vinyl, wood, stone, grass, dirt, gravel, uneven, unknown, other_ + * CD Add __BorderTypeEnumeration__ with __PathLink__ values _wall, grass, dirt, barrier, road, cyclingLane, step, rail, plants, trees, mud, solidEdge, water, gravel, noPhysicalBorder, otherPhysicalBorder, unknown, other,_ + * __PassengerEquipment__ (_netex_passengerEquipment.xsd_): + * CD Add new attribute to __PassengerSafetyEquipment__; __AcousticAnnouncementsTrigger__ with values _onDemand, automatic_. + * CD Add new attribute to __PassengerSafetyEquipment__; __AnnouncementsTriggeringMethod__ with values _presenceDetector, app, internetPage, specificDevice, pushButton_. + * CD add new attribute to __SanitaryEquipment__; __SupportBarHeight__ with values _onDemand, automatic_. + * NJSK Review: Correct typo on __SupportBarHeigth__, reorder new elements. + * NJSK Review: Add missing __ChangeAvailable__ attribute + * __WaitingEquipment__ (_netex_ifopt_equipmentWaiting_): + * CD to Add new attribute to __LuggageLockerEquipment__: __LockingType__ with values _key, keyboard, mechanicalNumbering, contactless, phoneApp, other_. + * CD to Add new attributes to __LuggageLockerEquipment__: __BlindAccessible ,WheelchairAccepted__. + * NJSK Review: Correct typo on __WheelchairAccepted__, Change order of new attributes, move __LockerTypeEnumeration__ and __LuggageServiceEnumeration__ enums to support file. + * CD to Add new attributes to __SeatingEquipment__: __Armrest ,SeatingHeight__., + * NJSK Review: Correct data type on __SeatingHeight__. and rename to __SeatHeight__. + * __SignEquipment__ (_netex_signEquipment.xsd_): + * CD add new attribute to __SignEquipment__; __AudioAnnouncementType__ with values _cyclicReading, whenSomebodyIsDetected, throughAnApp, throughASpecificDevice, other_ + * CD add new attribute to __SignEquipment__; __FontSize__; with values; _verySmall, small, medium, large, veryLarge_ + * NJSK Review: Correct typos, camelCase values, move __SignContentEnumeration__ enums to support file , add _other_ value, zap _xxxx_value. change"big" to "large" in value names. + * NJSK Review: Add missing __AsBraille__ attribute from doc. + * _Updates to xml schema_: + * netex_ifopt_equipmentTicketing_version.xsd + * netex_ifopt_localService_version.xsd + * netex_ifopt_equipmentAccess_support.xsd + * netex_ifopt_equipmentAccess_ version.xsd + * netex_ifopt_path_support.xsd + * netex_ifopt_path_ version.xsd + * netex_ifopt_equipmentPassenger_support.xsd + * netex_ifopt_equipmentWaiting_support.xsd + * netex_ifopt_equipmentWaiting_version.xsd + * netex_ifopt_equipmentSign_support.xsd + * netex_ifopt_equipmentSign_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __NL48__ *Part1-ND*: CD #64 Add new attributes to __StopPointInPattern__ for advertising of stop; __Print__ and __Dynamic__. + * NJSK Review: Correct dependencies: Move __DynamicAdvertisement__ of use of stop from _netex_serviceJourney_support.xsd_ to _netex_servicePattern_support.xsd_. + * NJSK Review: correct the annotations. + * _Updates to xml schema_: + * netex_serviceJourney_support.xsd + * netex_servicePattern_support.xsd + * netex_servicePattern_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __NL32__ *FRAMEWORK-RC*: CD #61 Add new values to SITE __AccessFacility__ enum; _wheelchairLift, automaticRamp. slidingStep_. + * NJSK Review: Keep SITE and SERVICE aspects separate; add separate __VehicleAccessFacility__ enum with values _unknown, wheelchairLift, manualRamp, automaticRamp, steps, slidingStep, narrowEntrance, validator_. + * _Updates to xml schema_: + * netex_facility_support.xsd + * netex_facility_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __NL31__ *FRAMEWORK-RC*: CD #60 Add new attributes __BoardingHeight__ and __GapToPlatform__ to __VehicleType__. + * NJSK Review: Correct data types of new attributes to be of _LengthType_. + * _Updates to xml schema_: + * netex_vehicleType_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __NL28__ *FRAMEWORK-CC*: CD #59 Add new __Presentation__ attribute to __Branding__. + * NJSK Review; Use a __BrandingGroup__ to be consistent with NeTEx coding patterns. + * _Updates to xml schema_: + * netex_dataSource_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __SBB23__ *FRAMEWORK-CC*: CD #57. Add new __BackgroundColour__ and __BackgroundColourName__ attributes to __Presentation__ and __PrintPresentation__ elements. + * Also add _icon_ to __TypeOfInfolink__ enum values. + * NJSK Review; __BackgroundColourName__ should be type _xsd:normalizedString_, not _xsd:string_. + * _Updates to xml schema_: + * netex_utility_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __SBB21__ *FRAMEWORK-CC*: CD #56. Add new __ColourSystem__ attribute to __Presentation__ and __PrintPresentation__. + * NJSK Review: __ColourSystem__ and __ColourName__ should be type _xsd:normalizedString_, not _xsd:string_. + * Also Merge in corrections to comments as per SBB20 #55. + * Also Correct camel case on names of __StopPointInXXXGroup__ groups. + * _Updates to xml schema_: + * netex_utility_version.xsd + * netex_servicePattern_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __FR-5__ *FRAMEWORK-CC*: CD change #53 Add __AccessFacilityList__ attribute to __SiteFacilitySet__. + * _Updates to xml schema_: + * netex_facility_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __CR55__ *PART1-IFOPT*: CD Change #52 Add new attribute __StopPlaceWeight__ to __StopPlace__ with values _international, national, regional, local_. + * NJSK Review: Make values lowerCamelCase consistent with NeTEx conventions. + * _Updates to xml schema_: + * netex_ifopt_stopPlace_support.xsd + * netex_ifopt_stopPlace_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __CR51__ *PART2-TI*: CD Add new __VehicleJourneyStopAssignment__ entity to set default stop assignment for __VehicleJourney__. + * NJSK Review CR51: add doc comments + * NJSK make __vehicleJourneyStopAssignmentsInFrame_RelStructure__ lower camel case consistent with NeTEx conventions. + * NJSK Allow inlining of __vehicleJourneyStopAssignments__ within __VehicleJourney__ as for other subcomponents + * NJSK Also correct camel case on __trainComponentLabelAssignents__ and __trainComponentLabelAssignents_RelStructure__. + * _Updates to xml schema_: + * netex_vehicleJourney_support.xsd + * netex_vehicleJourney_version.xsd + * netex_timetableFrame_version.xsd + * netex_stopAssignment_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __Fix__ *FRAMEWORK-FR*: Integrate constraint fix #49 by CD 2019.02.22 with other constraint changes: Add __EquipmentPlace__ to __Place_AnyVersionedKey__. + * _Updates to xml schema_: + * netex_publication.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __CR50__ by CD from 2019-02-20 *FRAMEWORK-CC*. CD add snow and ice modes. + * NJSK Revise - + * Correct camel casing of _snowAndIce_ value for __TransportMode__, + * Correct camel casing of __SnowAndIceSubmode__ values ; _unknown, undefined, snowMobile, snowCat, snowCoach, terraBus, windSled_, + * Add _snowAndIce_ to __Submode__ choices + * Add _snowAndIce_ to __AllModes__. + * Add _ski_ and _skate_ to __AccessMode__ __ContinuousMode__ values + * _Updates to xml schema_: + * netex_submode_version.xsd + * netex_mode_support.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __NL34__ from 2019.01.07 *FRAMEWORK-CC*. Fix #42 by Seime & #63 by CD move _canalBarge_ value from air to water modes. + * NB this will break existing XML that uses _canalBarge_ value. + * Also changed __Duty.TransportMode__ from __VehicleModeEnumeration__ to __AllVehicleModesOfTransportEnumeration__ to allow for non-vehicle modes. + * _Updates to xml schema_: + * netex_submode_version.xsd + * netex_duty_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.25 __Fix__ *FRAMEWORK-CC*: #43 by Skinkie from 2019.01.07. + * Fix typo on _tactilePlatformEdges_. + * NB this will break existing XML that uses _tactilePlatformEdges_ value. + * _Updates to xml schema_: + * netex_facility_support.xsd + * _Updates to xml examples_: + * examples\functions\stopPlace\Netex_10_StopPlace_uk_ComplexStation_Wimbledon_1.xml + * examples\functions\stopPlace\Netex_10_StopPlace_withParking_1.xml + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.03.25 __Fix__ *FRAMEWORK-CC*: #41 by Skinkie from 2019.01.07: Fix typo on __MobilityList__. Internal change only. + * _Updates to xml schema_: + * netex_acsb_passengerMobility.xsd + * netex_equipmentVehiclePassenger_version.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.03.25 __Fix__ *FARES-FS*: #40 by Skinkie from 2019.01.07 Fix typo on __DistanceMatrixElement.IsDirect__. + * NB this will break existing XML that uses __IsDirect__ attribute. + * _Updates to xml schema_: + * netex_distanceMatrixElement_version.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.03.25 __Fix__ *Part1-IFOPT*: #39 by Skinkie from 2019.01.07. + * Fix typo on __ServiceSiteRef.Structure__. + * _Updates to xml schema_: + * netex_ifopt_site_support.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.03.25 __Fix__ *Part1-IFOPT*: Fix #38 by Skinkie from 2019.01.07 + * Fix typo on __KeyScheme__. + * NB this will break existing XML that uses __KeyScheme__ attribute. + * _Updates to xml schema_: + * netex_ifopt_equipmentPassenger_version.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.03.25 __Fix__ *PART2-DM*: Fix #35 by Skinkie from 209.01.03 __AccountingTime__. + * Fix typo on __AccountingTime__. + * NB This will break existing XML that uses __AccountingTime__ attribute. + * NJSK Also add separate EndDayOffSer - DayOffSet should apply to start time relative to operatig day of Duty + * _Updates to xml schema_: + * netex_duty_version.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.03.25 __Fix__ *PART1-ND*: #37 by Skinkie from 2019.01.07 Correct type on __OppositeDirectionRef__. + * Correct Typo: rename __OppositeDIrectionRef__ to __OppositeDirectionRef__. + * NB This will break existing XML that uses __OppositeDirectionRef__ attribute. + * _Updates to xml schema_: + * netex_route_version.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 1.11 Summary of Changes since v1.10 + +### 2019.03.15 1.11 Small tidy ups to new value names and to documentation + +### 2019.03.13 __UK-27 & FIXES__ *Part3-FARES*: Fix __FareContract__ and __CustomerPurchasePackage__ issues. + * Allow marking of use of __CustomerPurchasePackage__. + * Also Fix several issues and align with TM6. + * UK-28 Add reference to __CustomerAccount__ to __FareContract__. + * Add new attribute __AccountStatusType__ to __CustomerAccount__. + * Add new __email__ attribute to __Customer__. + * Fix: Add missing relationship __fareContracts / FareContract__ to __CustomerAccount__. + * Remove __fareContractEntries__ relationship from __CustomerAccount__ : Use relationship on __FareContract__. NB BREAKAGE! + * Fix: Add missing relationship __customerPurchasePackageRefs / CustomerPurchasePackage__ to __CustomerAccount__. + * Add missing attributes __CustomerRef__, __CustomerAccountRef__ and FareCOntractRef__ to __CustomerPurchasePackage__. + * Add __PassengerSeatRef__ and __TrainElementRef__ to __TravelDocument__. + * Add __PrivateCode__ to __TravelDocument__. + * Add missing __CustomerPurchasePackageRef__ to __TravelDocument__. + * Add new attribute __PassengerSeatRef__ and __TrainElementRef__ to __TravelDocument__. + * Add new attribute __AccessNumber__ to __SpecificParameter Assignment__. + * Add new attribute __CustomerPurchasePackageStatus__ to to __CustomerPurchasePackage__ with values _resrved_,_ordered_, _paidFor_, _unused_, _activated_ _partiallyUsed_, _used_, _archived_. + * Add new attribute __MarkedAs__ to __CustomerPurchasePackageElement__. + * Add missing relationship __travelDocuments \ TravelDocument__ to __CustomerPurchasePackage__. + * Add new view element __TravelSpecificationSummaryView__ to __TravelSpecification__. + * Add new view element __TravelSpecificationSummaryView__ to __CustomerPurchasePackage__. + * Add new __CustomerPurchasePackageElementAccess__ element to __CustomerPurchasePackageElement__. + * Also UK-32 *Part3-FARES*: Add __StartDate__ and __EndDate__ attributes to __ResidentialEligibility__. + * HOUSEKEEPING Separate out _netex_typeOfravelDocumentPackage.xsd_ from _netex_travelDocumentPackag.xsd_ + * HOUSEKEEPING Move _netex_travelDocumentPackage.xsd_ from _\fares_ to to \ _sales_Transaction_ folder. + * _Updates to xml schema_: + * netex_typeOfTravelDocumentPackage_support.xsd (new) + * netex_typeOfTravelDocumentPackage_version.xsd (new) + * netex_travelSpecifcationSummaryView_version.xsd (new) + * netex_travelDocumentPackage_support.xsd + * netex_travelDocumenPackage_version.xsd + * netex_customerPurchasePackage_support.xsd + * netex_customerPurchasePackage_version.xsd + * netex_usageParameterEligibility_support.xsd + * netex_usageParameterEligibility_version.xsd + * netex_salesContract_support.xsd + * netex_salesTransaction_version.xsd + * netex_publication.xsd + * netex.spp + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.13 UK-27 & FIXES *Part3-FARES*: Extend __CustomerPurchasePackage__ implementation. + * Also add attribute __SupplementProductType__ to __SupplementProduct__ with values _seatReservation, bicycle, dog, animal, meal, wifi_ + * _Updates to xml schema_: + * netex_fareProduct_support.xsd + * netex_fareProducte_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.13 EURA-29 *Part3-FARES*: Add new __EligibilityChangePolicy__ usage parameter. + * Wwith attributes __OnBecomingPolicy__ and __OnCeasingPolicy__. + * __OnBecomingEnumeration__. + * _automatic_ - If user becomes eligible, automatically apply additional user profile benefits to user, e.g. apply student or senior discounts. + * _invite_ - If user becomes eligible, invite user to take up eligible products. e.g. Invite to buy Senior railcard. + * _noAction_ - If user becomes eligible,, no automatic measures are taken. + * _other_ + * __OnCeasingEnumeration__ - Allowed values + * _immediateTermination_ - If user ceases to be eligible, automatically terminate validity of an elibility dependent product. + * _useUntilExpiry_ - If user ceases to be eligible, they may go on using the product until it expires. + * _terminateAfterGracePeriod_ - If user ceases to be eligible, termination take place after the end of a grace period. + * _automaticallySubstituteProduct_ - If user ceases to be eligible, assign them an appropiate replacement product. + * _noAction_ - If user ceases to be eligible, take no action. + * _other_ + * Add integrity constraint for __EligibilityChangePolicy__. + * _Updates to xml schema_: + * netex_usageParameterEligibility_support.xsd + * netex_usageParameterEligibility_version.xsd + * netex_publication.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.13 EURA-50 *Part3-FARES*: Add new __PurchaseAction__ attribute to __PurchaseWindow__. + * With values: _purchase_, _reserve_, _orderWithoutPaying_, payForPreviousOrder, other_, _seatMap_ and _openSeating_. + * Also rename __Reserving__ \ __ReservationType__ to __SeatAllocationMethod__ and move __SeatAllocationMethodEnumeration__ to new __VehicleSeating__ package. + * Also add __ReservationExpiryPeriod__ to __Reserving__. + * _Updates to xml schema_: + * netex_vehicleSeating_support.xsd + * netex_usageParameterBooking_support.xsd + * netex_usageParameterBooking_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +## 2019.03.13 EURA-40 *Part3-FARES*: Tidy up - Include new elements as fare validity parameters + * Add new __FareStructureValidityParametersGroup__ to validity paarmaters with new attributes __TypeOfTariffRef__, __TypeOfFareStructureFactor__, __TypeOfFarFresStructureFactorRef__, + * Extend __FareProduct ValidityParametersGroup__ to validity paramaters with new attributes __TypeOfPriceingRuleRef__, __ChargingMethodRef__, __TypeOfPaymentMethodRef__, __TypeOfMachineReadability__, __TypeOfFareTableRef.__ + * Add new __SeatingValidityParametersGroup__ with new attributes __TrainElementRef__, __TrainComponentLabelAssignmentRef__. + * Also UK-69 Scaleability. Allow classification ofto __FareTable__ with new __TypeOfOfFareTable__ element. + * Also Rename draft __ValidityParameterSetOperator__ __ValidityParameterSelectionType__. + * Also UK-41 Also add new __LimitationSelectionType__ as additional functional operator to __GenericParameterAssignment__ to clarify use of groups : _oneOf / someOf/ allOf_. + * Also add integrity constraints for __TypeOfMachineReadability__. + * _Updates to xml schema_: + * netex_fareTable_support.xsd + * netex_fareTable_version.xsd + * netex_validityCondition_support.xsd + * netex_accessRightParameter_version.xsd + * netex_publication.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.13 EURA-40 *Part3-FARES*: Support Suscriptions - additional changes. + * Also add new attrributes to __FareProduct \ ConditionSummary__: __PenaltyIfWithoutTicket__ and __AvailableOnSubscription__. + * netex_conditionSummary_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done + +### 2019.03.13 EURA-93, EURA-085 *Part3-FARES*: Add new attribute to __InterChanging__, __RegisterBreak__. + * With values _none, markByStaff, markByValidator, markByMobileApp, other_ + * Also EURA-085 Add new attribute __ActivationMeans__ attribute to __UsageValidityPerido__ with values _noneRequired, checkIn, useOfValidato useOfMobileDevice, automaticByTime, automaticByProximity, other_ + * _Updates to xml schema_: + * netex_usageParameterTravel_support.xsd + * netex_usageParameterTravel_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + + +### 2019.03.13 UK *Part3-FARES*: Simplify use of Fares: + * Add new Atrribute __PreeassignedFareProductType__ to __PreassignedFareProduct__ with values _singleTip, timeTimitedSingleTrip, dayReturnTrip, periodReturnTrip, multiStepTrip, dayPass, periodPass, other_. + * Add new attribute __AmountOfPriceUnitType__ to __AmountOfPriceUnitFareProduct__ with values _tripCarnet, passCarnet, unitCoupons, other_. + * NB these are separate from __TariffBasis__. + * _Updates to xml schema_: + * netex_fareProduct_support.xsd + * netex_fareProduct_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.13 NORWAY-100 *Part3-FARES*: Support VAT (and other tax) categories. + * Add __TypeOfPricingRule__ element. + * Also FIX add missing (!) relationship __ruleStepResults \ RuleStep__ on __SalesTransaction__. + * Also FIX Allow payments in __PriceUnit__ other than currency (!). + * Also FIX Add __ruleStepResults \ RuleStep__ to __SalesTransaction__. + * Also FIX Type of __Transaction__ \ __Amount__ to be _currencyType_ not _distanceType_. + * Also add a __Narrative__ text element on __RuleStepResult__. + * Also add __UnitDimension__ attribute to __PriceUnit__ with values _currency, distance, time, valueToken, other_. + * Also revise __FarePrice__ element to add __AmountWithResultsGroup__ and refactor __FarePriceAmount__ groups to be clearer. + * Also revise __PriceRuleStepResult__: add new attributes __AdjustmentAmount__, __AdjustmentUnits__, __RoundingRef__. + * NB this revises current sense of __PriceRuleStepResult__ \ __Amount__. + * Also allow nesting of __FareTable__ column headings and rows. + * Add __RoundingStepRef__, and __Narrative__ text elements. + * _Updates to xml schema_: + * netex_farePrice_support.xsd + * netex_farePrice_version.xsd + * netex_fareTable_support.xsd + * netex_fareTable_version.xsd + * netex_salesTransaction_version.xsd + * _Updates to xml examples_: + * examples\rail\tariffs\Netex_era_distance_ro.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.13 NORWAY-100 *Part3-FARES*: Support VAT (and other tax) categories. +* Add __TypeOfPricingRule__ element. +* Also FIX add missing (!) relationship __ruleStepResults \ RuleStep__ on __SalesTransaction__. +* Also FIX Allow payments in __PriceUnit__ other than currency (!). +* Also FIX Add __ruleStepResults \ RuleStep__ to __SalesTransaction__. +* Also FIX Type of __Transaction__ \ __Amount__ to be _currencyType_ not _distanceType_. +* Also add a __Narrative__ text element on __RuleStepResult__. +* Also add __UnitDimension__ attribute to __PriceUnit__ with values _currency, distance, time, valueToken, other_. +* Also revise __FarePrice__ element to add __AmountWithResultsGroup__ and refactor __FarePriceAmount__ groups to be clearer. +* Also revise __PriceRuleStepResult__: add new attributes __AdjustmentAmount__, __AdjustmentUnits__, __RoundingRef__. +* NB this revises current sense of __PriceRuleStepResult__ \ __Amount__. +* Also allow nesting of __FareTable__ column headings and rows. +* Add __RoundingStepRef__, and __Narrative__ text elements. +* _Updates to xml schema_: + * netex_farePrice_support.xsd + * netex_farePrice_version.xsd + * netex_fareTable_support.xsd + * netex_fareTable_version.xsd + * netex_salesTransaction_version.xsd +* _Updates to xml examples_: + * examples\rail\tariffs\Netex_era_distance_ro.xml +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.12 EURA-40 *Part3-FARES*: Add integrity constraints for new elements. + * Elements __Subscribing__, __TypeOfPaymentMethod__, __TypeOfFareStructureFactor__, __TypeOfFareStructureElement__, __TypeOfPricingRule__. + * Also drop some spurious selectors. + * Add constraint for __SupplementToFareProductRef__. + * _Updates to xml examples_: + * netex_publication_support.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.03.12 NORWAY-100 *Part3-FARES*: Add __ReservationType__ to __Reserving__ usage parameter. + * With values _autoAssigned_, _seatMap_ and _openSeating_. + * _Updates to xml schema_: + * netex_usageParameterBooking_support.xsd + * netex_usageParameterBooking_version.xsd + * _Updates to xml examples_: + * examples\standards\fxc\uk_fxc_trip_Metrobus_1.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.12 NORWAY-102 *Part3-FARES*: Add new enum values to __Exchanging__ \ __ExchangeableTo__. + * Values _upgradeToSpecifiedFare_, _downgradeToSpecifedFare_, _equivalentProduct_ (already have a _changeGroupSize_ value). + * Also add new _purchaseGracePeriod_ (i.e. afterPurchaseWindow) enum values to __Reselling \ ResellWhen__. + * _Updates to xml schema_: + * netex_usageParameterAfterSales_support.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.12 NORWAY-105 *Part3-FARES*: Add new __MinimumDuration__ attribute to __TimeInterval__. + * Also fix __TypeOffareStructureFactor__ on __GeograohicalStructreFactor__. + * _Updates to xml schema_: + * netex_timeStructureFactor_version.xsd + * netex_geographicalStructureFactor_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.12 EURA-84 *PART1-ND* Add default __PaymentMethods__, to __Lines__. + * add xml groupwith __PaymentMethods__, __TypesOfPaymentMethods__ and __PurchaseMoments__ attributes. + * Add to __Network__, __GroupOfLines__, and __Line__. + * Also add _cashExactChangeOnly_ to values for __PaymentMethods__. + * _Updates to xml schema_: + * netex_travelRights.xsd + * netex_line_version.xsd + * _Updates to xml examples_: + * examples\standards\fxc\uk_fxc_trip_Metrobus_1.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.12 UK-45 *Part3-FARES*: Add constraint mechanism to Entitlements. + * This so that supplements and dependent products can be required to have same parameters. + * Add constraint elements to __EntitlementRequired__, __EntitlementGiven__. + * Add constraint elements to __SalesOfferEntitlementRequired__, __SalesOfferEntitlementGiven__. + * _Updates to xml schema_: + * netex_usageParameterEntitlement_support.xsd + * netex_usageParameterEntitlement_version.xsd + * netex_salesOfferPackageEntitlement_support.xsd + * netex_salesOfferPackage_version.xsd + * _Updates to xml examples_: + * examples\standards\fxc\uk_fxc_pass_Metrobus_metrorider.xml + * exaamplesstandards\fxc\uk_fxc_addon_HSP_plusbus.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.12 NORWAY-99 *Part3-FARES*: Change cardinality of __SupplementProduct__. + * Change __SupplementProduct__ / __SupplementToFareProductRef__ cardinality from _0:1_ to _0:*_. + * Also add missing constraint for __SupplementTofareProductRef__. + * _Updates to xml schema_: + * netex_fareProduct_supplement.xsd + * netex_fareProduct_version.xsd + * netex_publication_version.xsd + * _Updates to xml examples_: + * examples\standards\fxc\uk_fxc_pass_Metrobus_metrorider.xml + * exaamplesstandards\fxc\uk_fxc_addon_HSP_plusbus.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 NORWAY-98 *Part3-FARES*: NORWAY-98 Add new value _activation_ to __UsageTriggerEnumeration__ for __UsageValidityPeriod__. + * Also add _Deregistration_ value to __UsageEnd__ enumeration + * Also and annototation comments. + * _Updates to xml schema_: + * netex_usageParameterTravel_support.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 NORWAY-97 *Part3-FARES*: : Add new values to __UserProfile \ UserType__, + * Values: _student, schoolPupil, youngPerson, military, disabled, disabledCompanion, employee, jobSeeker_. + * _Updates to xml schema_: + * netex_user_support.xsd + * _Updates to xml examples_: + * \examples\standards\fxc\uk_fxc_common_profile.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 EURA-87 *Part3-FARES*: Support Partial Refunds of Passes + * Add new enumeration values _unused_ and _earlyTermination_ to __RefundType__ on __Reselling__. + * Add new __RefundPolicy__ attribute to __Refunding__ with enum values _illness, death, redundancy, maternity, other, etc_ + * Add new __RefundBasis__ atribute to __Refunding__ _unusedDays, unusedWeeks, unusedMonths, other_. + * Add new __ExchangableFromPercentUse__ and __ExchangableUntilPercentUse__ attributes to __Reselling__. + * Add new enumeration value _withinSpecifiedWindow_ to __PurchaseWhen__ attribute on __Reselling__. + * Add add new __EffectiveFrom__ attribute to __Reselling__ with values _anytime, nextInterval, nextInstallment, never_. + * Add new __NoticePeriod__ to __Reselling__. + * Also UK-46- Add __typesOfPaymentMethods /TypeOfPaymentRef__ and move __PaymentMethods__ up hierarchy with new name (Old attribute on __Refunding__ deprecated) + * _Updates to xml schema_: + * netex_usageParameterAfterSales_support.xsd + * netex_usageParameterAfterSales_version.xsd + * _Updates to xml examples_: + * netex_era_toc_uk.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 EURA-52, EURA40 *Part3-FARES*: Support Suspension. + * Add _subscription_ enum value to __UsageValidityPeriodType__. + * Add __SubscriptionSuspensionPolicy__ attribute to __UsageValidityPeriod__ with enumeration values: + * _none_ - Suspension not allowed. + * _forCertifiedIllness_ - Suspension allowed for illness. + * _forParentalLeave_ - Suspension allowed for parental leave. + * _forHoliday_ - Suspension allowed for Holiday. + * _forAnyReason_ - Suspension allowed for any reason. + * _Updates to xml schema_: + * netex_usageParameterTravel_support.xsd + * netex_usageParameterTravel_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 EURA-72 *Part3-FARES*: Improve __FareDemandType__ for direction constraints. + * Make __StartTimeAtStop__ and __StartTime__ optional. + * Add new attribute StopUseConstraint__ to __FareDemandType__ with values _arriving_. _departing_, _passingThrough_. + * _Updates to xml schema_: + * netex_fareQualityFactor_support.xsd + * netex_fareQualityFactor_version.xsd + * _Updates to xml examples_: + * netex_era_toc_uk.xsd + * Netex_101.21_TfL_GeographicFares_UnitZone_MultipleProduct.xml + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 CR-13 *PART1*: Add _replacement_ value to __LineType__ enumeration . + * _Updates to xml schema_: + * netex_line_support.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 EURA-40 *Part3-FARES*: Support Subscriptions. + * Add new __Subscribing__ usage parameter. + * Add __SubscriptionRenewalPolicy__ attribute with enumeration values: + * _automatic_ - Renew automatcally at end of term. + * _manual_ - Renew on request. + * _automaticOnConfirmation_ - Confirm and renew automatically at end of subscription term. + * _none_ - No renewal allowed. + * Add __SubscriptionTermEnumeration__ attribute with enumeration values: + * _fixed_ - Subscription must be for a fixed term. + * _variable_ - Subscription can be for an arbitrary term + * _openEnded_ - Subscription term is open ended. + * Also cf UK-46 Add new __TypeOfPayment__ method. + * Also Add __AutomatedUse__ attribute to __TypeofPaymentMethod__. + * Also Add _directDebit_ and bankTransfer_ values to __PaymentMethod__ enumeration values. + * Also __RESELLING__ parameter Add __typesOfPaymentMethods/TypeOfPaymentRef__ and move __PaymentMethods__ up hierarchy with new name (Old attribute on __REFUNDING__ deprecated) + * Also Add _unused_ and _earlyTermination_ to __Refunding__ __RefundType__ enumeration. + * Also Add with specified window value to __PurchaseWhen__ enumeration attribute. + * Also EURA-90 Add a new attribute __MaximumNumberOfFailToCheckOutEvents__ to __PenaltyPolicy__. + * _Updates to xml schema_: + * netex_usageParameterCharging_support.xsd + * netex_usageParameterCharging_version.xsd + * netex_usageParameterAfterSales_support.xsd + * netex_usageParameterAfterSales_version.xsd + * netex_travelRights_support.xsd + * netex_travelRights_version.xsd + * netex_salesDistribution_support.xsd + * _Updates to xml examples_: + * netex_91.1_Rail_RailCard_MultipleProducts.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 EURA-73 *Part3-FARES*: Add new __StartConstraintType__ attribute enumeration for __UsageValidityPeriod__. + * Add __StartConstraintType__With enum values _fixed_, _variable_, _fixedWindow_ + * Also EURA-88 Flexible start window: Add new __FixedStartWindow__ attribute to __UsageValidityPeriod__ with contents + __MaximumServicesBefore__. __FlexiblePeriodBefore__, __MaximumServicesAfter__, __FlexiblePeriodAfter__. + * _Updates to xml schema_: + * netex_usageParameterTravel_support.xsd + * netex_usageParameterTravel_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 UK-22 *Part3-FARES*: Add new __PrivateCode__ attribute to __FarePrice__. + * Also UK-22 Add new __Description__ attribute to __FareProductPrice__. + * Also UK-22 Add new __InfoLinks__ attribute to __PriceableObject__. + * _Updates to xml schema_: + * netex_farePrice_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 UK-55 *Part3-FARES*: Add new __TypeOfFareStructureElement__. + * Also UK-89 Add new __TypeOfFareStructureFactor__. + * Also EURA-77 Fix: Corrections to __TypeOfFareProduct__. + * _Updates to xml schema_: + * netex_fareStructureElement_support.xsd + * netex_fareStructureElement_version.xsd + * netex_fareStructure_support.xsd + * netex_fareStructure_version.xsd + * netex_fareProduct_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 UK-31 *FRAMEWORK* Fix: to attribute names on __TypeOfFrame__. + * __TypeOfFrame__ Change data type on __ClassAttributeInFrame__ and __ClassRelationshipInFrame/Name__ attributes from __NCName__ to __QNAME__. + * _Updates to xml schema_: + * netex_versionFrame_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 EURA-77 *Part3-FARES*: Add new relationship between __FareProduct__ and __Tariff__. + * Add new __tariffs/TariffRef__ attribute to __FareProduct__. + * _Updates to xml schema_: + * netex_fareProduct_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 EURA-71 *Part3-FARES*: Add new _superOffPeak_ and _specialEvent_ enumeration values to __FareDemandType__. + * _Updates to xml schema_: + * netex_usageParameterBooking_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 EURA-76 *Part3-FARES*: Add __IsFeeRefundable__ attribute to __Reserving__. + * _Updates to xml schema_: + * netex_usageParameterBooking_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.11 EURA-68 *Part3-FARES*: Specify conditions for changing group size. + * __Exchanging__ usage parameter __TypeOfExchange__ attribute: add new enumeration value _changeGroupSize_. + * Also __GroupTicket__ add new attribute __GroupSizeChanges__ with enum values _noChanges, free, charge, steppedCharge_. + * Also for __Refunding__ usage parameter, add new _changeOfGroupSize_ value to __RefundType__ enumeration. + * _Updates to xml schema_: + * netex_usageParameterAfterSales_support.xsd + * netex_usageParameterEligibility_support.xsd + * netex_usageParameterEligibility_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 UK-21 *Part3-FARES*: Add new __SalesOfferEntitlementGiven__ and __SalesOfferEntitlementRequired__ usage parameters. + * Add as new package because __SalesOfferPackage__ dependencies are downstream from __FareProduct__. + * _Updates to xml schema_: + * netex_salesOfferPackageEntitlement_support.xsd (new) + * netex_salesOfferPackageEntitlement_version.xsd (new) + * netex_salesOfferPackage_version.xsd + * netex_all_objects_part3_fares_SD.xsd + * netEx.SPP + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 EURA-42 *Part3-FARES*: Add __Currency__ to __PricingRule__ (NB this does not solve other aspects of CR. + * _Updates to xml schema_: + * netex_calculationParameters_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 EURA-65 *Part3-FARES*: Add new __SharedUsage__ attribute to __Transferability__ to specify whether multiple users may use a product at the same time. + * Add new enum for __SharedUsage__ with values _oneAtATime_, _severalAtATime_, _severalSpecifiedCompanionsAtATime_. + * _Updates to xml schema_: + * netex_usageParameterAfterSales_support.xsd + * netex_usageParameterAfterSales_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 EURA-75 *Part3-FARES*: Add new __Add TravelBillingPolicy__ attribute to __ChargingPolicy__. + * With enumerated values; _billAsYouGo_ , _billOnThreshold_, _billAtFareDayEnd_, _billAtPeriodEnd_. + * _Updates to xml schema_: + * netex_usageParameterCharging_support.xsd + * netex_usageParameterCharging_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 UK-32 *Part3-FARES*: Add new __ResidenceType__ attribute to __ResidenceQualification__. + * With enumerated values; _live_, _work_, _study_, _born_ + * Also EURA-62: Add new __CompanionRelationshipType__ attribute to __CompanionProfile__ with enumerated values _anyone, grandparent, parent, child, grandchild, colleague, family, legalRelative, spouse, partner, colleague, teacher, pupil_. + * Also EURA-89 Add new enumeration value _birthCertificate_ to __ProofOfIdentity__. + * _Updates to xml schema_: + * netex_usageParameterEligibility_support.xsd + * netex_usageParameterEligibility_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 EURA-53 *Part3-FARES*: Add new __CappingRuleStartConstraintType__ attribute to __CappedFareProduct__ __CappingRule__ to state if _fixed_ or _variable_. + * Also, if _fixed_, specify a __startOnlyOn__ \ __DayType__, e.g. for day of week. + * _Updates to xml schema_: + * netex_fareProduct_support.xsd + * netex_fareProduct_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 EURA-67 *Part3-FARES*: Add new _courier_ value to __FulfilmentMethodType__ enumerations. + * _Updates to xml schema_: + * netex_salesDistribution_support.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 EURA-91 *Part3-FARES*: Add new enumerated values _sameProductLongerJourney_ and _sameProductShorterJourney_ to __TypeOfExchange__ attribute on __Exchanging__ usage parameter. + * _Updates to xml schema_: + * netex_usageParameterAfterSales_support.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 EURA-87 *Part3-FARES*: Specify if start of validity is _variable_ or _fixed_. + * Add new __StartConstraint__ attribute to __UsageValidityPeriod__ to specify if start day is _variable_ or _fixed_. + * Add new values _variable_ / _fixed_ to __UsageStartConstraintTypeEnumeration__. + * Add new __startOnlyOn__ / __DayType__ attribute so that any required day of week, day of month, month of year can be indicated. + * Add two XML groups to organise absolute and variable start time attributes. + * Also add new _enrolment_ and _reservation_ enum values to __UsageTriggerEnumeration__. + * Also add new _eligibilityExpiry_ enum value to __UsageEndEnumeration__. + * Also EURA-94 Add new enumeration values _networks_, _operators_ and _countries_ to type of step on __StepLimit__. + * _Updates to xml schema_: + * netex_usagwParameterTravel_support.xsd + * netex_usageParameterTravel_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 UK-38 *Part3-FARES*: Add new attributes __MinimumAccess__ and __MaximumAccess__ to __FareStructureElementinSequence__. +* _Updates to xml schema_: + * netex_fareStructureElement_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 EURA-81 *Part3-FARES*: Make relationship between __FareProduct__ and __TypeOfFareProduct__ many-to-many. +* _Updates to xml schema_: + * netex_fareProduct_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.10 UK-08 *FRAMEWORK* Add new attribute __LayerRef__ to __VersionFrame__ and to __TypeOfFrame__. + * _Updates to xml schema_: + * netex_layer_support.xsd + * netex_versionFrame_version.xsd + +### 2019.03.10 UK-28 *Part3-FARES*: Add new attribute __CustomerAccountRef__ to __FareContract__. + * _Updates to xml schema_: + * netex_salesContract_version.xsd + * netex_salesTransaction_version.xsd + +### 2019.03.09 UK-12 *Part3-FARES*: Add new attribute __GroupOfOperatorRef__ to __Tariff__ (ie make relationship many to many). +* _Updates to xml schema_: + * netex_fareStructureElement_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.09 EURA-78 *Part3-FARES*: Allow more than one reference to a __GroupsOfSalesOfferPackageRef__ from a __SalesOfferPackage__ (i.e. make relationship many-to-many.) + * _Updates to xml schema_: + * netex_salesOfferPackage_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.08 EURA-54 *Part3-FARES*: Add a seat reference to assignable parameters. + * Add a new module with __PassengerSeatingRef__. + * Also Add a new attribute __PassengerSeatRef__ to __ServiceValidityParameterGroup__ of __accessRightParamaterAssignment__. + * Also Add new __TravelDocumentRef__ and __RetailDeviceRef__ attributes to __SalesTransaction__. + * Also Fix: make __RetailingOrganisationRef__ an __OrganisationOperatorRefStructure__ rather than an __OperatorRefStructure__. + * _Updates to xml schema_: + * netex_vehicleSeating_support.xsd (New) + * netex_all_objects_reusable_components.xsd + * netex.spp + * netex_accessRightParameter_version.xsd + * netex_salesTransaction_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.08 EURA-43 *Part3-FARES*: Add new relationship to __FareZone__ to indicate who who manages it. + * Add new attributes to __FareZone__ ; __AuthorityRef__ / __OperatorRef__, __GroupOfOperatorsRef__. + * _Updates to xml schema_: + * netex_fareZone_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.08 EURA-51 *Part3-FARES*: Add new enumeration values to __RoundTripType__ ; _returnOut_, _returnBack_ so as to distinguish legs. + * _Updates to xml schema_: + * netex_usageParameterTravel_support.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.08 PART2 UK-44, UK-69 *Part3-FARES*: Improve support for defining large tariffs in modular fashion + * Add new relationship __groupsOfOperators/GroupsOfOperatorRef__ to __Network__. + * Also __UseToExclude__ attribute to __GroupOfOperators__. + * Also add new values _flexible_ and _urban_ to __TypeOfLine__ enumeration. + * Add new __UseToExclude__ flag to __GroupOfLines__. + * Add new __UseToExclude__ flag to __GroupOfDistanceMatrixElements__. + * _Updates to xml schema_: + * netex_line_support.xsd + * netex_line_version.xsd + * netex_transportOrganisation_support.xsd + * netex_transportOrganisation_version.xsd + * netex_distanceMatrixElementVersion_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.08 UK-14 *Part3-FARES*: Improvements to __FareZone__. + * Add new __ScopingMethod__ attribute to __FareZone__ with values _explicitStops_, _implicitSpatialProjection_, _implicitSpatialProjection._ + * UK-13 Add new __ZoneTopology__ enumeration values _annular_, _sequence_, _overlappingSequence_. + * UK-18 Specify fare stages on a pattern: Add new __IsFareStage__ attribute to __FarePointInPattern__. + * EURA Allow stops to be excluded from a routing. Add new __IsForbidden__ attribute to __FarePointInPattern__. + * _Updates to xml schema_: + * netex_fareZone_support.xsd + * netex_fareZone_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.07 UK-46 *FRAMEWORK* & *Part3-FARES*: Add open __PaymentMethod__ as first class object so that user defined methods can be added. + + * _Updates to xml schema_: + * netex_travelRights_support.xsd + * netex_travelRights_version.xsd + * netex_salesDistribution_support.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.07 NJSK *Part3-FARES*: UK-74 Add new enumerations to __TariffBasis__; _zoneToZone_, _pointToPoint_, _discount_. + * Also add documentation annotations to existing annotations. + * _Updates to xml schema_: + * netex_fareStructureElement_support.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.07 NJSK Fix *FRAMEWORK* Make __InfrastructurePointRef__ and __InfrastructureLinkRef__ abstract. + * _Updates to xml schema_: + * netex_networkInfrastructure_support.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.03.07 NJSK-Fix *HOUSEKEEPING* Delete spurious references in XMLSpy _netext.ssp_ file. + * _Updates to other files_: + * netex.spp + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.03.07 NJSK-Fix *FRAMEWORK* - Correct Type of __VersionFrameRef__ to be _VersionFrameRefStructure_ , correct substitution group on __ResourceFrameRef__ to be __VersionFrameRef__. + * _Updates to xml schema_: + * netex_resourceFrame_version.xsd +* _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.03.07 EURA-40 *Part3-FARES*: Add support for Subscriptions. + * Basic steps + * Subscriptions add new values _onlineAccount_ and _postal_ to enumerations of __DistributionChannelType__. + * Add _subscriptionOnly_, also _onCheckIn_, _inAdvanceOnly_, _beforeBoardingOnly_ , _onBoardingOnly_ to __PaymentMoment__ enum. + * Fix: add __PaymentMoment__ to __PurchaseWindow__. + * _Updates to xml schema_: + * netex_salesDistribution_support.xsd + * netex_travelRights_support.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.05 UK-24 *FRAMEWORK-RC*: & *Part3-FARES*: Add open __PaymentMethod__ as first class object so that user defined methods can be added. + * Add _ePayDevice_, _ePayAccount_ and _mileagePoints_ to __PaymentMethod__ enum + * _Updates to xml schema_: + * netex_travelRights_support.xsd + * netex_travelRights_version.xsd + * netex_salesDistribution_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.05 UK-96 *FRAMEWORK-CC*: Add __prerequisites__ relationship to __VersionFrame__. + * _Updates to xml schema_: + * netex_versionFrame_version.xsd + * _Updates to examples_: + * Many fares exampels updated to indicate prerequisites. + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.05 UK-09 *Part3-FARES*: Add __TypeOfTariffRef__ and __FareElementInSequenceRef__ to __TravelSpecification__ so that can correctly specify choices. + * _Updates to xml schema_: + * netex_salesTransaction_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.05 UK-19 *Part3-FARES-FP*: Fix __PriceGroup__ should be abstract. + * _Updates to xml schema_: + * netex_farePrice_version.xsd +* _Documentation Changes_: [uml_diagram: NONE], [doc-doane] + +### 2019.03.05 NJSK-Fix *PART1*: Make alternative name and date visible on __Direction__. + * _Updates to xml schema_: + * netex_route_version.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-done] + +### 2019.03.05 UK-41 *Part3-FARES*: Revise __UserProfile__ to allow more than one enum values for __ProofOfEligibilty__. + * _Updates to xml schema_: + * netex_usageParameterEligibility_support.xsd + * netex_usageParameterEligibility_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.02 UK-18 *Part3-FARES*: Add values for __TypeOfInterval__. +* _Updates to xml schema_: + * netex_geographicalStructureFactor_support.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + + +### 2019.03.02 UK-80 *Part3-FARES*: Add further values to __GenericParameterAssignment__, +__TypeOfConcessionRef__, __TypeOfUsageParameterRef__, __VehicleType Ref__, __TypeOfLineRef__. +* _Updates to xml schema_: + * netex_validityCondition_support.xsd + * netex_accessRightParameter_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.02 UK-41 *Part3-FARES*: Add an additional functional operator to __GenericParameterAssignment__ to clarify use of groups. +* New values: _oneOf_ / _someOf_/ _allOf_. +* Also correct documentation on relational operators. +* _Updates to xml schema_: + * netex_validityCondition_support.xsd + * netex_accessRightParameter_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.03.01 EURA-(nk) *Part3-FARES*: Add __DistanceMatrixInverseRef__ for backwards direction of reference. Revise constraints. + * _Updates to xml schema_: + * netex_distanceMatriElement_support.xsd + * netex_distanceMatriElement_version.xsd + * netex_publication.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.02.28 EURA-10 *Part3-FARES*: Improve __CustomerPurchasePackage__. +* Fix correct case on __customerPurchasePackageRefs__. +* Allow inlining of __CustomerPurchasePackages__ in a __FareContract__. +* _Updates to xml schema_: + * netex_customerPurchasePackage_support.xsd + * netex_customerPurchasePackage_version.xsd + * netex_salesTransaction_version.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.02.21 UK-07 *Part3-FARES*: Allow __xxPriceRefs__ directly in __FareTable__ / __cells__. +* Also allow __VersionOfObjectRef__ on __FareTable__ __Row__ and __Column__. +* _Updates to xml schema_: + * netex_fareZone_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.02.21 UK-20 *Part3-FARES*: Add contains relationship to __FareZone__. +* _Updates to xml schema_: + * netex_fareZone_version.xsd +* _Updates to xml examples_: + * uk_fxc_trip_First_WoE_Line48_stage+Passses.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.02.21 UK-57 *Part3-FARES*: Add Allow list of __MachineReadable__ enumerations, +* Also add open ended __TypeOfMachineRedability__. +* _Updates to xml schema_: + * netex_travelDocument_support.xsd + * netex_travelDocument_version.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.02.21 UK-34 *Part3-FARES*: TRAVEL DOCUMENT should not be in FARE FRAME - remove. + * _Updates to xml schema_: + * netex_travelDocument_version.xsd + * netex_fareFame_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.02.21 UK-07 *Part3-FARES*: __FareTable__ - Allow direct containment of __FarePriceRef__. + * Also UK-23 Add __FareSectionRef__ to __FareTable / specifics__ + * _Updates to xml schema_: + * netex_fareTable_version.xsd + * _Updates to xml examples_:Various to drop unecessary __cells__ wrapper tags + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +## 1.10 Summary of Changes since v1.09 + + +### 2019.02.21 .No-Fix *PART2*: Reapply 1.09 Fix Merge in correction to spelling of __AccountingTime__. +* NB This will break any existing documents that use __AccountingTime__. +* _Updates to xml schema_: + * netex_duty_version.xsd +* _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.02.21 .No-Fix *Part3-FARES*: Reapply 1.09 Fix up examples +* _Updates to xml examples_: fare examples, Norway examples +* _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.02.21 NJSK-Fix *FRAMEWORK* Make dummy types abstract __TransportOrganisation__ . +* _Updates to xml schema_: + * netex_transportOrganisation_version.xsd +* _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.02.21 NJSK-Fix *FRAMEWORK* Reapply 1.09 Make __ValidityCondition__ etc visible [xsd only] +* _Updates to xml schema_: + * netex_travelRights.xsd + * netex_trainElement.xsd +* _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.02.21 NJSK-Fix: *FRAMEWORK* Reapply 1.09 Constraint changes and further clean up constraints [xsd only] +* Changes include: + * (a) Fix keyref constraint on __TimingLinkInJourneyPattern_AnyVersionedKey__, (Drop __DropFarePointInPattern__. __TimingTimingLinkInJournePattern__, __StopTimingLinkInJourneyPattern__). + * (b) Fix keyref constraint on __ServiceLinkInJourneyPattern_AnyVersionedKey__ (Drop __xxxPoints__). + * (c) Fix keyref constraint on __FarePointInPattern_AnyVersionedKey__ - Add __xxxPoints__. + * (d) Fix keyref constraint on __LinkInJourneyPattern_AnyVersionedKey__ - Ddrop __xxxPoints__. + * (e) Fix constraint __ServiceLinkInJourneyPattern_AnyVersionedKey__ drop bogus __ServiceService__ selector. + * (f) Fix __FarePointInPattern__ Key + * (g) Fix keyref constraint on StopPointInJourneyPattern - remove bogus __DeadRunInPattern__ and __ServiceStopPointInPattern__ selectors. + * (h) Fix keyref constraint on TimingPointInPattern - remove bogus __DeadRunInPattern__ and __ServiceStopPointInPattern__ selectors. + * (i) Fix uniqueness constraint on __HeadwayJourneyGroup__ - drop __RhythmicalJourneyGroup__. + * (j) Fix (again) __Constraints on SalesOfferPackage__ and __SalesOfferPackagePrice__. + * (k) Fix keyref __LinkInJourneyPattern_AnyVersionedKey__ correct __LinkInPattern__ to __ServiceLinkInPattern__. + * (l) Fix remove obsolete __ParkingTaxRate__ constraint + * (m) Fix Reinstate integrity constraints on StopPointInJourneyPattern, etc {NB THIS MAY CATCHE EXISTING ERRORS IN EXAMPLES]. + * (n) Fix Add constraints on __SectionInSequence__. {NB THIS MAY CATCHE EXISTING ERRORS IN EXAMPLES]. + * (o) Revise key names to emphasise when key is ordered separate. + * (b) Fix Make uniqueness of __PriceGroup__ and __FareTable__. +* _Updates to xml schema_: + * netex_publication.xsd +* _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.02.18 NJSK-Fix *FRAMEWORK* Correct data type of __LayerRef__ and substitution group on __Layer__ and __CellRef__ + * NB dependencies need sorting out - move layer to core framework? + * _Updates to files_: + * netex_layer_support.xml + * netex_layer_version.xml + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.02.18 NJSK-Fix OTHER update XML SPy & Oxygen project files [xsd only] + * _Updates to files_: + * netex_layer_support.xml + * netex_layer_version.xml + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.02.18 NJSK-Fix OTHER update XML SPy & Oxygen project files [xsd only] +* _Updates to files_: + * netex.spp + * netex.spr +* _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.02.18 EXAMPLES - Add new Fare examples [xsd only] +#### Rail fares +* Example: Distance rail tariff: + * Netex_era_distance_ro.xml +* Example: Point to Point Multi-operator National tariff and single operator regional products: + * netex_era_toc_uk.xml +* Example: Cross-border National tariff : + * netex_crossborder_de.xml +#### Bus fares +* Example: Zone-to-zone bus fares: + * uk_fxc_trip_Metrobus_1.xml.xml +* Example: Zonal day & season pass fares: + * uk_fxc_pass_Metrobus_metrorider.xml +* Example: Stage trip fares: + * uk_fxc_trip_First_WoE_stage-distance_minimal1.xml +* _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.02.18 UK-006 *Part3-FARES*: - Add missing FARE TABLE price references. + * Fix: Add __CellSpecificNetworkGroup__ to Fare Table Specifics, + * Fix: Add __TariffZoneRef , LineRef, FareZoneRef, TariffRef, LineRef, ScheduledStopPointRef__ and __FareStructureElementInSequenceRef__. __SectionRef__ to __CellSpecificNetworkGroup__, + * _Updates to xml schema_: + * netex_fareTable_version.xsd + * netex_stopPlace_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2019.01.11 1.09 NJSK-Fix *Part3-FARES*: Constraints. + * Fix: Correction to constraints + 1. Fix keyref constraint on __TimingLinkInJourneyPattern_KeyRef__ - drop __xxxPoints__. + 2. Fix keyref constraint on __ServiceLinkInJourneyPattern_AnyVersionedKey__ - drop __xxxPoints__. + 3. Fix keyref constraint on __FarePointInPattern_AnyVersionedKey__ - add __xxxPoints__. + 4. Fix keyref constraint on __LinkInJourneyPattern_AnyVersionedKey__ - drop __FarePointInPattern__. + 5. Fix constraint __ServiceLinkInJourneyPattern_UniqueBy_Id_Version_Order__ drop __ServiceServiceLinkInJourneyPattern__. + 6. Fix __FarePointInPattern__ Key constraint +* _Updates to xml schema_: + * netex_publication.xsd +* _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2019.01.10 HOUSEKEEPING Migrate to Github. Rename all schema files to remove version numbers. +* _Updates to xml schema_: + * All NeTEx files changed. +* Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2018.06.02 GITHUBBER FRAMEWORK Add __Centroid__ to __GroupOfStopPlaces__. + * _Updates to xml schema_: + * netex_stopPlace_version.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] +---- +# 1.09 Summary of Changes since v1.08 + +### 2018.06.06 CR057 NJSK add URL to Priceable object. +* _Updates to xm schema_: netex_farePrice_version-v1.1.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2018.06.02 1.09 *BUG* Fix __UsageParameterRef__ - should be abstract to prevent use [xsd only] + * _Updates to xml schema_: netex_usageParameter_Support-v1.1.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2018.06.02 *BUG* Fix __ServiceDesignator__ & __JourneyDesignator__ - Make fromPoint value optional . + * _Updates to xml schema_: netex_vehicleJourney_Support-v1.1.xsd + * _Documentation Changes_: [uml_diagram: done], [doc-done] + [DOCTODO] Also Add designator UML diagram to SPec + +### 2018.06.02 1.10 *BUG* Fix Substitution group __PointInJourneyPattern__. + * _Updates to xml schema_: netex_journeyPattern-v1.1.xsd + * _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2018.06.02 Add __ServiceDesignator__ to __GroupOfServicesMember__ [DOCTODO] + * _Updates to xml schema_: netex_serviceJourney_Version-v1.1.xsd + +### 2018.06.01 CR049 Rename to align with Transmodel. Fix case of names [xsd only] + * TM6 Alignment: Rename __SalesPackage__ to __SalesOfferPackage__ + * Fix: Correct the camel casing of __GroupsOfsaleOfferPackages__ ==> __groupsOfSaleOfferPackages__ + * Fix: Correct constraint names + * _Updates to xml schema_: + * netex_SalesOfferPackage_version-v1.1.xsd + * NeTEx_publication.xsd + * NeTEx_publication_timetable.xsd * + * Nx.xsd + * _Updates to examples_: + * Netex_tap_tsi_B3+more.xml + * Netex_tap_tsi_B2.xml + * Netex_tap_tsi_B2-71.xml + * Netex_tap_tsi_B2-1181.xml + * Netex_tap_tsi_B2-1180.xml + * Netex_tap_tsi_tcvs_irt_1.xml + * Netex_tap_tsi_B3.xml + * Netex_tap_Train_Hotel_SalesPackage_2.xml + * Netex_101.21_TflGeographicFares_UnitZone_MultipleProducts + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2018.03.20 1.09 CR047 Fix __SupplementToFareProductRef__. + * Fix _ResultStepIdType_[xsd only] + * _Updates to xml schema_: + * netex_farePrice_version & netex_FarePrice_support + * _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2018.03.20 1.09 Fix Inheritance of __CompanionProfileRef__ to be a type of __UserProfileRef__ [xsd only] +* _Updates to xml schema_: + * netex_usageParameterEligibility_support-v1.0 +* _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2018.03.20 CR049 Rename to align with Transmodel +* Renames and fixes + * Fix Capitalisation [xsd only] x + * Fix Capitalisation of wrapper tags + * TM Alignment: __salesOfferPackages__ should be lower ca.mel case. + * TM Alignment: __salesOfferPackageElements__ should be lower camel case. + * TM Alignment: __saleslesOfferPackageSubstitutions__ should be lower camel case. + * TM Alignment: __salesOfferPackagePrices__ should be lower camel case + * TM Alignment: __salesOfferPackageRefs__ should be lower camel case. +* _Updates to xml schema_: + * netex_SalesOfferPackage_support-v1.1.xsd + * netex_SalesOfferPackage_version-v1.1.xsd + * netex_FareTable_version-v1.1.xsd + * nete_AccessRight_Parameters_version-v1.1.xsd + * netex_FareProduct_version-v1.1.xsd +* _Updates to multiple Examples_. +* _Documentation Changes_: [uml_diagram: NONE], [doc-NONE] + +### 2018.03.20 CR049 Rename to align with Transmodel [*uml:v96-nk4; doc:v39*] +* TM Alignment: Rename __PassengerContract__ ==> __FareContract___. +* TM Alignment: Rename __PassengerContractEntry__ ==> __FareContractEntry__. +* TM Alignment: Rename __PassengerContractSecurityListing__ ==> __FareContractSecurityListing__. +* TM Alignment: Rename __TypeOfPassengerContract__ ==> __TypeOfFareContract__. +* TM Alignment: Rename __TypeOfPassengerContractEntry__ ==> __TypeOfFareContractEntry__. +* _Updates to xml schema_: + * netex_fareContract_support-v1.1.xsd + * netex_fareContract_version-v1.1.xsd + * netex_salesTransaction_support-v1.1.xsd + * netex_salesTransaction_version-v1.1.xsd + * netex_salesTransactionFrame_version-v1.1.xsd + * netex_publication.xsd + * netex_publication_timetable.xsd +* _Documentation Changes_: [uml_diagram: done], [doc-done] + +### 2017.12.20 CR049 Rename to align with Transmodel [*uml:v96-nk4; doc:v39*] +* TM Alignment: Rename __SalesPackage__ ==> __SalesOfferPackage__. +* TM Alignment: Rename __SalesPackageElement__ ==> __SalesOfferPackageElement__. +* TM Alignment: Rename __SalesPackageSubstitition__ ==> __SalesOfferPackageSubstitition__. +* TM Alignment: Rename __TypeOfSalesPackage__ ==> __TypeOfSalesOfferPackage__. +* TM Alignment: Rename __SalesPackageSubstitition__ ==> __SalesOfferPackageSubstitition__. +* TM Alignment: Rename __GroupOfSalesPackages__ ==> __GroupOfSalesOfferPackages__. +* _Updates to xml schema_: + * netex_salesPackage_support-v1.1.xsd ==> netex_aalesOfferPackage_support--v1.1.xsd + * netex_salesPackage_version-v1.1.xsd ==> netex_aalesOfferPackage_version-v1.1.xsd + +### 2017.12.20 Fix up fare examples + +## 1.08 Summary of Changes since v1.07 + +### 2017-12-01 Further revisions & Fixes for v1.1 + * Fix: Add notice assignments to **GroupOfDistanceMatrixElements** [*uml:v96-nk3; doc:v38.04*] + * netex_distranceMatrixLement_version-v1.1.xsd + * Fix: Move _alternativeTexts_ up hierarchy to **EntityInVersion** [*uml:v96-nk2; doc:v38.03*] + * Fix: Move **AlterativeName** to generic framework so Organisation can reference. [uml 96-nk2; doc done v38.03] + * netex_organisation_version-v1.1.xsd + * netex_all_objects_generic_version-v1.0.xsd + * Fix: Add **ContactDetails** to **Line** as per uml [*uml:v96-nk2; doc:v38.03*] + * netex_line_version-v1.1.xsd + * Fix: Update uml diagram for **PropertyOfDay**, **Line** [*uml:v96-nk2; doc:v38.03*] + * Fix: cd - **Place** should be typed **Place_VersionStructure** [*uml:v96-nk2; doc:v38.03*] + * netex_place_version-v1.1.xsd + * CR: Cr0019/Cr0013 correct type on **DayOffSet** on **CourseOfJourney** and **ReliefOpportunity**, **InterchangeRule**, [*uml:v96-nk2; doc:v38.03*] + * netex_vehicleService_version-v1.1.xsd + * netex_coupledJourney_version-v1.1.xsd + * netex_interchange-v1.1.xsd + * Fix: Add **DayOffSet** to JourneyMeeting [*uml:v96-nk2; doc:v38.03*] + * netex_interchange-v1.1.xsd + * CR: Cr0051: Add _infolinks_ to **GroupOfEnNtities** [*uml:v96-nk3; doc:v38.04*] + * netex_groupin-v1.1.xsd + +### 2017-11-08 Further revisions & Fixes for V1.1 + * Fix: Add **DayOffSet** to **JourneyPartCouple** [*uml:v96-nk2; doc:v38.03*] + * netex_coupledJourney_version-v1.1.xsd + * Fix: Correct spelling & Allow multiple infolinks on **FareProduct** [*uml:v96-nk2; doc:v38.03*] + * netex_fareProduct_version-v1.1.xsd + * Fix: Add _MobileApp_ to **MediaType** enumeration [*uml:v96-nk2; doc:v38.03*] + * netex_travelDocumentSupport_support-v1.1.xsd + * Fix: Allow version of derived view id [*xsd only*] + * netex_responsibility_version-v1.1.xsd + * Fix: Allow **DistanceMatrixView** on *AccessRightParameter** [*xsd only*] + * netex_accessRightParameter_version-v1.1.xsd + * CR: CR0051 Allow *Line* and _documentlinks_ on **Tariff** [*uml:v96-nk2; doc:v38.03*] + * netex_fareStructureElement_version-v1.1.xsd + * CR: CR0051 Add _map_ and _faresheet_ to **InfoLink** types [*uml:v96-nk2; doc:v38.03*] + * netex_utilityTypes_v1.1.xsd + * CR: CR0051 Allow **Presentation** details on **TariffZone** [*uml:v96-nk2; doc:v38.03*] + * netex_zone_version-v1.1.xsd + * Fix: Add _totalNumberParkingSpaces_ to **ParkingProperties** [*uml:v96-nk2; doc:v38.03*] + * netex_ifopt_parking_version-1.1,xsd + * Fix: Update **Facility** - correct _nuisance_ to match XML[*uml:v96-nk2; doc:v38.03*] + * netex_facility_support-v1.1.xsd + * CR: CR0049 Change **PiQuery** to **PiRequest** [*uml:v96-nk2; doc:v38.03*] + * netex_salesTransaction_support-v1.1.xsd (replaces 1.0) + * CR: CR0040 Rework to make **Section** a type of **LinkSequence** [*uml:v96-nk2; doc:v38.03*] + * netex_commonSection_support-v1.1.xsd ++ + * netex_commonSection_version-v1.1.xsd ++ + * netex_section_support-v1.1.xsd + * netex_section_version-v1.1.xsd + * netex_linkSequence_version-v1.1.xsd + * netex_lineNetwork_version-v1.1.xsd + * netex_fareZone_version-v1.1.xsd + * CR: CR0049 TM Change. Move _Description_ to supertype for **LinkSequence** [*uml:v96-nk2; doc:v38.03*] + * netex_journeyPattern_version-v1.1.xsd + * netex_journey_version-v1.1.xsd + * netex_ifopt_navigationPath_version-v1.1.xsd + * netex_ifopt_parking_version-v1.1.xsd +---- +### 2017-10-10 Further revisions & Fixes + +* Fix: Correct **FareStructureElement** to allow Multiple interval support, Add timeIntervals & geographical intervals to fareElement, Also allow inlining of DistanceMatrixElements [xml] + * netex_FareStructureELement_version_-v1.1.xsd + * netex_all_objects_part3_fares-v1.0.xsd + * netex_all_objects_part3_fares_FS-v1.1.xsd + * netex_accessRightParameter_version-v1.1.xsd +* Fix: **CustomerPurchasPeackageElement** add **GeographicalIntervalRef** & **TimeIntervalRef** [*uml:v96-nk2; doc:v38.03*] + * netex_CustomerPurchasePackage_version_-v1.1.xsd + +* CR: CR0049 TM alignment + (i) **CustomerPurchasePackage** element add **TypeOfTravelDocument** to **ProductValidityParametersGroup** [*uml:v96-nk2; doc:v38.03*] + * netex_accessRightParameter_version-v1.1.xsd + + (ii) Fix Add **TypeOfTravelDocument** to **FareTable** specifics [*uml:v96-nk2; doc:v38.03*] + * netex_fareTable_version-v1.1.xsd + * etex_all_objects_part3_fares_FP-v1.1.xsd + * netex_distanceMatrixElement_version-v1.0.xsd + (iii) Add **TypeOfTravelDocument** to **FareFrame** [*uml:v96-nk2; doc:v38.03*] + * netex_travelDocument_version-v1.1.xsd + +* Fix: NeTEx **FareFrame** had wrong reference 1.0 [*xsd only*] + * netx_all_objects_part3_fares-v1.1.xsd + * netex_fareFrame_version-v1.0.xsd + * netex_all-v1.0.xsd + * netex_salesTransactionFrame-v1.1.xsd +* CR: CR0051 Misc small fix - **ParkingArea** add **NumberOfBaysWithRecharging**, **RechargingAvailable** [*uml:v96-nk2; doc:v38.03*] + * netex_parkingTariff_version-v1.1.xsd + * netex_siteFrame_version-v1.0.xsd + * netex_ifopt_all_objects-v1.0.xsd +* CR: CR0051- **LostPropertyService**: add **KeptForDuration**. **LeftLuggage addMaximumDuration** [*uml:v96-nk2; doc:v38.03*] + * netex_ifopt_localService_version-v1.1.xsd + * netex_ifopt_localServiceCommercial_version-v1.0.xsd + * netex_Ifopt_equipmentAll-v1.0.xsd + * netex_assistanceBooking_version-v1.0.xsd +---- +## 2017-08-17 +* CR: CR0047 - **RailSubmode** add _AirportLink_ as rail submode [*uml:v96-nk2; doc:v38.03*] + * netex_submode_version-v1.1.xsd +* FIX: Reorganise project folders [*xsd only*] + * Split all_object_part3_fares into four sublists -FP, FS, AR, SD + +---- +### 2017-08-10 Align with TM6 Changes + +* CR: CR0045 TM6: **GenericLoggable** support **LogEntry** [*uml:v96-nk2; doc:v38.03*] + (i) Add generic **Loggable**. Make **PassengerContractEvent** a type of **LogENtry** [*uml:v96-nk2; doc:v38.03*] + * netex_loggable_support-v1.1.xsd + * netex_loggable_version-v1.1.xsd + * netex_salesContract_support-v1.1.xsd + + (ii) Rename **PassengerContractEvent** to **PassengerContractEntry** NB not back compatible for **TypeOfPassengerContractEvent**[*uml:v96-nk2; doc:v38.03*] + * netex_salesContract_support-v1.1.xsd + + (iii) Add Support for **SecurityLists** & **WhiteLists*** , revise use of **lacklist**. NB this is functionally, but not syntactically backwards compatible. [*uml:v96-nk2; doc:v38.03*] + * +netex_securityList_support-v1.1.xsd + * +netex_securityList_version-v1.1.xsd + * netex_salesContract_support-v1.1.xsd + * netex_salesContract_version-v1.1.xsd + * netex_travelDocument_support-v1.1.xsd + * netex_travelDocument_version-v1.1.xsd + * netex_retailConsortium_support-v1.1.xsd + * netex_retailConsortium_version-v1.1.xsd + * netex_salesTransactionFrame_version-v1.1.xsd + + (iv) Add **CustomerPurchasePackage** support [*uml:v96-nk2; doc:v38.03*] + * allObjects_part3 + * ++ netex_customerPurchasePackage_support-v1.1.xsd + * ++ netex_customerPurchasePackage_version-v1.1.xsd + * netex_salesTransactionFrame_version-v1.1.xsd + + (v) Add **CustomerAccount**, **CustomerAccountStatus**, **TypeOfCustomerccount** [*uml:v96-nk2; doc:v38.03*] + * netex_salesContract_support-v1.1.xsd umlp + * netex_salesContract_support-v1.1.xsd umlp + + (vi) Add **CustomerEligibility** [*uml:v96-nk2; doc:v38.03*] + * ++ netex_customerEligibility_support-v1.1.xsd umlp + * ++ netex_customerEligibility_version-v1.1.xsd umlp +* CR: CR00xx Add **Presentation** including graphics to **AllowedLineDirection** [*uml:v96-nk2; doc:v38.03*] + * netex_line_version-v1.1.xsd umlp + +* CR: CR0040 Revise **Section**: Add **GeneralSection** distinct from **CommonSection**. [*uml:v96-nk2; doc:v38.03*] + Separate out section from point and link package. NB not strictly compatible just for **Section** usedIn **LinkSequence** + * netex_pointAndLinkSequence_support-v1.1.xsd UMLcp + * netex_pointAndLinkSequence_version-v1.1.xsd UMLcp + * netex_pointAndLink_support-v1.1.xsd UMLcp + * netex_pointAndLink_version-v1.1.xsd UMLcp + * netex_lineSection_version-v1.1.xsd UMLcp + * ++netex_section_support-v1.1.xsd UMLcp + * ++netex_section_version-v1.1.xsd UMLcp +* CR: CR0010 **QuayType** Add _BusPlatform_ enum value [*uml:v96-nk2; doc:v38.03*] + * netex_ifopt_stopPlace_support-v1.1.xsd +* CR: CR0030 Add **DayOffsets** [u*uml:v96-nk2; doc:v38.03*] + * netex_coupledJourney_version-v1.1.xsd UM p + * netex_datedPassingTime_version-v1.1.xsd + * netex_monitoredPassingTime_version-v1.1.xsd + * netex_passingTimes_version-v1.1.xsd +* CR: CR0010 Add **JourneyPartPosition** to **JourneyPart** [*uml:v96-nk2; doc:v38.03*] + * netex_coupledJourney_support-v1.1.xsd + * netex_coupledJourney_version-v1.1.xsd +* CR: CR014 Add **GroupOfLinesType** enum [*uml:v96-nk2; doc:v38.03*] + * netex_line_support-v1.1.xsd + * netex_line_version-v1.1.xsd +* CR: CR0047 Add support for tax to **FarePrice**: self ref on **PriceRule** & **StepResult** [*uml:v96-nk2; doc:v38.03*] + * netex_farePrice_version-v1.1.xsd + * netex_parkingTariff_support-v1.1.xsd + * netex_parkingTariff_version-v1.1.xsd + +=============================== +End diff --git a/examples/functions/deckPlans/DeckPlans-Example.xml b/examples/functions/deckPlans/DeckPlans-Example.xml new file mode 100644 index 000000000..f3758c163 --- /dev/null +++ b/examples/functions/deckPlans/DeckPlans-Example.xml @@ -0,0 +1,1753 @@ + + + + 2020-12-17T09:30:47.0Z + SYS001 + + + 2020-12-17T09:30:46.0Z + SYS002 + Request for Erebus 1 tariff + + + + + 2020-01-01T00:00:00Z + + + + + + + + + + + P1M + Example of DeckPlans + + + + + 2023-01-01T00:00:00 + 2023-12-31T12:00:00 + + Deck Plan Example + This is an example showing how one might encode a Deck plan for a double decker bus in NeTEx. It includes seat an, entrance and sensor equipment. + + + + + + + + + + EUR + + + + + erebus Operator specific common resources + + + mb + http://www.erebus.eu/ + erebus data + + + + + feedback@erebus.eu + + + + + + Operator data + + + creates + Planning + erebus + + + + + + + + Bike equipment + + + Battery + + + Charger + + + + + + + + MBK + erebus + erebus + erebus SA + operator +
+ Alpha1 + Metropolis + RH10 9UA + Metroland +
+ bus +
+
+ + + + Bench seat + 0.48 + 0.50 + 0.50 + false + + + Pulldown seat + 0.48 + 0.40 + 0.40 + true + + + Bench seat + 0.48 + 0.50 + 0.45 + false + + + External Door sensor + cable + + + Internal sensor on bottom step + cable + + + Seat sensor + cable + + + true + 1 + 2.00 + 1.80 + 2.00 + true + + + + true + cashAndCard contactlessPaymentCard travelCard + + + 1.00 + true + + + true + true + true + + + 12 + 0.10 + oneSide + 1.00 + true + true + 1 + + + + + freeWifi + purchase + noCycles + + + + + Double Decker Bus + Double decker bus with staircase. Wheelchair and luggage spaces on lower deck. + false + true + human + diesel + bus + + 60 + 20 + 2 + 1 + + false + 0.15 + 10 + 4 + 2000 + + + + + + + + + + + + + + + Lower Deck + + + + + Driver seat + + + 1 + + + + false + 1 + + + Lower Deck seating area + + true + standardClass + + true + + + true + false + true + + + + true + false + + + + Front Door + 1.00 + 1.90 + + + 1 + + + + 1 + + + + external + + true + + + + + + + + + Rear Door + 0.95 + 1.90 + + + 1 + + + + + + + + + + external + + true + + + + + + + + + Entrance to stairs + 0.80 + 1.90 + + + + + + internal + + + + + + + + + + entry + + + exit + + + 43 + + + seat + 22 + + + standingSpace + 20 + + + wheelchairSpace + 1 + + + pushchairSpace + 2 + + + + + + + leftwards + + + + + + + + + + + + rightwards + + + + + + + + + + + + + leftwards + + + + + + + + + + + + rightwards + + + + + + + + + + + + + leftwards + + + + + + + + + + + + rightwards + + + 1 + + + + + + + + + + + leftwards + + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + leftwards + + + + + + + + Stairwell to upper deck + + + + 1 + + + + Stop button at top of stairs + + + + false + + + + Bottom of stairwell + 1.00 + 1.90 + internal + true + + + + Top of Stairwell + 1.00 + 1.90 + internal + true + + + + + + + + + + + + + + + entryAndExit + + + entryAndExit + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Upper Deck + + + + + Upper Deck seating area + + false + + + false + false + true + + + + true + false + + + ENtrance to top of stairs + 0.80 + 2.00 + internal + + + + + seat + 37 + + + standingSpace + 12 + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + forwards + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Basic Elements for map of bus + http:erebus.eu/plans/double_decker_floor_plan + + + Bottom Deck + + + + Forward Entrance + + + + Rear Entrance + + + + Stairs + + + + Top Deck + + + + + +
+ + Deck Plan Assignment Example + This is an example showing how one might assign a Deck Entrance to a journey so as to state which entrance will be at which point on teh platform . More sense for a train of ferry . + + + To a particalr stopt + + + + + + + true + false + 1 + + Board at front + + + + + + + + false + true + 1 + + exit at rear + + + + + + + + + + + + + Deck Plan Example + This is an example showing how one might assign a deck plan to a journey. + + + + 10:10:00 + + + + + + + + In to centre + + + + 10:10:00 + 10:30:00 + + + Across centre - doors open + + + + 10:31:00 + 10:50:00 + + + + + + + + Assign double decker bus to Journey - doors shut + + + + + + + Assign double decker bus to Journey - doors open + + + + + + + + + Ties a STOP ASSIGNMENT to a specific VEHICLE JOURNEY + + + + + +
+
+
+
diff --git a/examples/functions/deckPlans/DeckPlans-Example_bus.xml b/examples/functions/deckPlans/DeckPlans-Example_bus.xml new file mode 100644 index 000000000..0daaf70a6 --- /dev/null +++ b/examples/functions/deckPlans/DeckPlans-Example_bus.xml @@ -0,0 +1,1906 @@ + + + + + 2020-12-17T09:30:47.0Z + SYS001 + + + 2020-12-17T09:30:46.0Z + SYS002 + Request for Erebus 1 tariff + + + + + 2020-01-01T00:00:00Z + + + + + + + + + + + P1M + Example of DeckPlans + + + + + 2023-01-01T00:00:00 + 2023-12-31T12:00:00 + + Deck Plan Example for DOuble DEcker Bus + This is an example showing how one might encode a Deck plan for a double decker bus in NeTEx. It includes seat an, entrance and sensor equipment. + + + + mb + http://www.erebus.eu/ + erebus data + + + + + + + + + + + + erebus Operator specific common resources + + + + + + + feedback@erebus.eu + + + + + + Operator data + + + creates + Operation + erebus + + + + + Operator timetable data + + + creates + Planning + erebus + + + + + + + + MBK + erebus + erebus + erebus SA + operator +
+ Alpha1 + Metropolis + RH10 9UA + Metroland +
+ bus +
+
+ + + + + Bench seat + Bench Seat contiguous with neighbour + 0.48 + 0.50 + 0.50 + false + + + Pulldown seat + 0.48 + 0.40 + 0.40 + true + + + Single seat + 0.48 + 0.50 + 0.45 + false + + + Seat sensor + cable + + + true + 1 + 2.00 + 1.80 + 2.00 + true + + + + 0.90 + 1.00 + 0.45 + 0 + + + 0.90 + 1.00 + 0.80 + 1.0 + + + + 1.20 + true + PT90S + + + true + foldingPair + true + true + false + + + External Door sensor + cable + + + + Spiral staircase from deck1 to deck2 + 2.0 + both + 6 + false + 8.00 + 12 + 0.10 + true + oneSide + 1.00 + + false + + + false + + true + true + 1 + + + Internal sensor on step + cable + + + + true + cashAndCard contactlessPaymentCard travelCard + + + paperStamp + true + true + Insert ticket into machine to obtain validation stamp + + + + + freeWifi + purchase + steps + freeSeating standing + seating pushchair wheelchair + noCycles baggageStorage pushchairsAllowed + noReservationsPossible + + + + + Double Decker Bus + Double decker bus with staircase. Wheelchair and luggage spaces on lower deck. + false + true + human + diesel + bus + + 60 + 20 + 2 + 1 + + Default to use. + false + 0.15 + 10.00 + 4 + 2000 + + + + + Double decker bus + + + Doors open Configuration + + + Doors shut Configuration + + + + + + + + + + + + + Lower Deck + + + + + Driver seat + + + 1 + + + + 1 + + + + false + 1 + + + Lower Deck seating area + + true + standardClass + + true + + + true + false + true + + + + true + false + + + + Front Door + 1.00 + 1.90 + + + 1 + + + + true + leftSide + 1 + 0.20 + external + true + true + true + + + + + + + + + Rear Door + 0.95 + 1.90 + + + 1 + + + + + + + true + leftSide + 2 + 0.20 + external + true + true + true + + + + + + + + + Downstairs Entrance to stairs + 0.80 + 1.90 + + + + + + internal + internal + false + + + + + + + + + + entry + + + + + + With rear door set open so passengers can alight when stopped in town + exit + open + + + + + + With rear door set shut + exit + shut + true + + + + + 1.50 + false + false + + + 43 + + + seat + 22 + + + standingSpace + 20 + + + wheelchairSpace + 1 + + + pushchairSpace + 2 + + + + + + + leftwards + + + + + + + + byAisleAndWindow + + + + rightwards + + + + + + + + byAisleAndWindow + + + + + leftwards + + + + + + + + byAisleAndWindow + + + + rightwards + + + + + + + + byAisleAndWindow + + + + + leftwards + + + + + + + + byAisleAndWindow + + + + rightwards + + + 1 + + + + 1 + + + + + + byAisleAndWindow + + + + + leftwards + + + + + + + + byAisleAndWindow + + + + rightwards + + + 1 + + + + + + byAisleAndWindow + + + + + forwards + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + byWindowNoAisle + + + + + forwards + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + byWindowNoAisle + + + + + forwards + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + byWindowNoAisle + + + + + forwards + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + inMiddle + + + + forwards + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + inMiddle + + + + forwards + + + + + + + + byWindowNoAisle + + + + + + + leftwards + + + + + + + + + + + Stairwell to upper deck + + + + 1 + + + + Stop button at top of stairs + + + + false + + + + Bottom of stairwell + 1.00 + 1.90 + internal + true + + + + Top of Stairwell + 1.00 + 1.90 + internal + true + + + + + + + + + + + + + + + entryAndExit + + + entryAndExit + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Upper Deck + + + + + Upper Deck seating area + + false + + + false + false + true + + + + true + false + + + Entrance to top of stairs + 0.80 + 2.00 + internal + + + + + Side windows continuous with thin strios + leftwards + 9.50 + 0.90 + 1.50 + continuous + false + false + + + LeftSide windows continuous with thin strips + leftwards + 9.50 + 0.90 + 1.50 + continuous + false + false + + + Right Side window in front of starirwells continuous with thin strios + rightwards + 4.0 + 0.90 + 1 + 1.50 + continuous + false + false + + + Right Side window in front of starirwells continuous with thin strips + rightwards + 4.0 + 0.90 + 2 + 1.50 + continuous + false + false + + + Front window window + forwards + 3.0 + 0.90 + 1.50 + continuous + false + false + + + Back window + forwards + 2.0 + 0.30 + 1.70 + continuous + false + false + + + + + seat + 37 + + + standingSpace + 12 + + + + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + forwards + + + + + + + + + + + + + inMiddle + + + + forwards + + + + + + + + + + + + + byAisleNoWindow + + + + forwards + + + + + + + + + + + + + inMiddle + + + + forwards + + + + + + + + + + + + + byWindowNoAisle + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Basic Elements for map of bus + http:erebus.eu/plans/double_decker_floor_plan + + + Bottom Deck + + + + + Forward Entrance + + true + + + Rear Entrance + + true + + + Stairs + + true + + + + Top Deck + + + + + +
+ + Deck Plan Assignment Example + This is an example showing how one might assign a Deck Entrance to a journey so as to state which entrance will be at which point on the platform . More sense for a train of ferry . + + + To a particular stopt + + + + + + + Board at front from position A + true + false + 1 + + Board at front + + + + + + + + Exit at rear from position A + + false + true + 1 + + exit at rear + + + + + + + + + + + + + Deck Plan Example + This is an example showing how one might assign a deck plan to a journey and also apply conditions. + + + + 10:10:00 + + + + + + + + + In to centre + + + + 10:10:00 + 10:30:00 + + + Across centre - doors open + + + + 10:31:00 + 10:50:00 + + + Out of to centre doors open + + + + 10:50:00 + 11:20:00 + + + + + + + + Assign double decker bus to Journey - doors shut + + + + + + + Assign double decker bus to Journey - doors open + + + + + + + Assign double decker bus to Journey - doors shut + + + + + + + + + Ties a STOP ASSIGNMENT to a specific VEHICLE JOURNEY + Will use a specific assignment at a specifc stiop just for this journey + + + + + +
+
+
+
diff --git a/examples/functions/deckPlans/DeckPlans-Example_train.xml b/examples/functions/deckPlans/DeckPlans-Example_train.xml new file mode 100644 index 000000000..0691f097f --- /dev/null +++ b/examples/functions/deckPlans/DeckPlans-Example_train.xml @@ -0,0 +1,5058 @@ + + + + + + + + + + 2020-12-17T09:30:47.0Z + SYS001 + + + 2020-12-17T09:30:46.0Z + SYS002 + + P1M + Example of DeckPlans + + + + + 2023-01-01T00:00:00 + 2023-12-31T12:00:00 + + Deck Plan Example + This is an example showing how one might encode a Deck plan for a train in NeTEx. It Also shows how the Deck plan can be related to the train in a specific station. + + + + rc + http://www.frail.eu/ + Frail rail data + + + + + + + + + + + Rail examples of sleeper train with motor rail transport + Describes a train with sleeper wagons, a buffet car and car transport carriages. + + + + MRC + Motor Rail CO + Moto + Motovacation SA + operator +
+ Prince Rupert Street + Strelsau + z354 + Ruritania +
+ bus +
+
+ + + + + Passenger Train door + true + hingedSingle + true + true + false + + + Sliding door to compartment + true + slidingSingle + false + true + true + + + Hinged door to compartment + true + hingedSingle + false + true + true + + + Passenger Train dor on car transporter + false + hingedSingle + false + false + + + External Door sensor + cable + + + true + slidingPair + true + true + true + + + External Door sensor + cable + + + + Bottom seat in couchette + 0.48 + 0.50 + 0.50 + false + + + Bottom seat in couchette + 0.48 + 0.50 + 0.50 + false + + + Bottom bed in couchette + 0.48 + true + true + bottomBunk + false + 1.0 + 0.50 + + + Middle bed in couchette + 2.0 + true + middleBunk + true + 1.0 + 0.50 + + + Top bed in couchette + 3.0 + true + topBunk + true + 1.2 + 0.50 + + + Standard carriage seate + 0.48 + 0.50 + 0.50 + false + + + Bold down chaire + 0.48 + 0.50 + 0.50 + true + + + true + 1 + 2.00 + 1.80 + 2.00 + true + + + + luggage area + 4.00 + 1.25 + 0.40 + 1.90 + luggageBay + 0.40 + false + + + luggage area + 2.00 + 0.20 + 1.50 + cycleRack + false + + + + toilet washbasin + 1 + true + + + + + + + General facilities + firstClass standardClass + suitableForWheelchairs + mobilePhoneFreeZone mobilePhoneUseZone noSmoking + publicWifi powerSupplySockets + nextStopIndicator passengerInformationDisplay realTimeConnections stopAnnouncements + toilet wheelchairAccessToilet + couchette seating sleeper + C2 C6 T2 + baggageStorage baggageVan cyclesAllowedWithReservation luggageRacks + + + First class facilities + breakfastInCar + airConditioning heating + firstClass + blinds tintedWindows + powerSupplySockets publicWifi freeWifi + reservation + sleeper + + + firstClass + sleeper + 1 + lower + noSmoking mobilePhoneFreeZone + freeWifi + + + firstClass + doubleSleeper + C2 + 2 + freeWifi + + + + + firstClass + earlyBoardingPossibleBeforeDeparture + PT1H + + + firstClass + overnightStayOnboardAllowed + PT9H + + + + + Second class facilities + buffet + airConditioning heating + standardClass + blinds tintedWindows + powerSupplySockets publicWifi + reservation + couchette + + + secondClass + couchette + C6 + 6 + all + freeWifi + + + + + Buffet facilities + buffet + + + + General facilities + recharging + + + + + + 4 carriage sleeper train with 2 Motorrail + [Vehicles2] [Velicles1] [Sleeper3] [Buffet1] [Sleeper1] [Sleeper1] [Engine] + true + electric + + + + 186 + + 126 + + 60 + + + + 32 + + + false + true + 0.40 + + + + + + + + Engine + + forwards + + true + noThroughAccess + + + + + Sleeper + + forwards + + false + door + + + + + Sleeper + + forwards + + false + door + + + + + Buffet car + + forwards + + false + door + + + + + Sleeper + + forwards + + false + door + + + + + + backwards + + true + noThroughAccess + + + + + + backwards + + true + noThroughAccess + + + + + + + + Engine + engine + 10 + 3.5 + 4 + 1000 + + + Sleeper Waggon + sleeperCarriage + firstClass economyClass + false + true + 0.15 + 25 + 3.5 + 4 + 1000 + + + + Buffet car + sleeperCarriage + firstClass standardClass + + + + Vehicle Wagon + sleeperCarriage + any + + + + + + Example rail stock + + + Engine + + + + car transporter + + + + car transporter + + + + Sleeper + + + + buffet + + + + Sleeper + + + + Sleeper + + + + + + + + Rail sleeper wagon + + + Day Configuration + Couchettes used as seats 8 per seconf class compartment + + + Night Time confguration + Couchettes used as bunk beds 6 per seconf class compartment + + + + Folded down + Wheel chair space used a fold down seat + + + Folded up for wheelchair + Wheel chair space used for wheel chair + + + + + Sleeper wagon Passenger deck + + + + Corridor + + false + + + + + Left Front Door + 1.00 + 1.90 + + + 1 + + + + 1 + + + + + + + true + leftSide + 1 + 0.20 + external + true + true + true + + + + + + + + + Front Right External Door + 1.00 + 1.90 + + + 1 + + + + 1 + + + + true + rightSide + 1 + 0.20 + external + true + true + true + + + + + + + + + Rear External Door + 0.95 + 1.90 + + + 1 + + + + + + + + + + true + leftSide + 2 + 0.20 + external + true + true + true + + + + + + + + + Rear Right External Door + 0.95 + 1.90 + + + 1 + + + + + + + true + rightSide + 2 + 0.20 + external + true + true + true + + + + + + + + + + Rear end door connecting to next carriage + 0.80 + 1.90 + + + + + + true + frontEnd + communicating + false + true + true + + + + + + + + + Rear end door connecting to next carriage + 0.80 + 1.90 + + + + + + + + + true + backEnd + communicating + false + true + true + + + + + + + + + Compartment 1 door + 0.80 + 1.80 + + + + + + internal + true + false + + + + + Compartment 1 door + 0.80 + 1.80 + + + + + + internal + true + false + + + + Compartment 2 door + internal + true + false + + + + Compartment 3 door + internal + true + false + + + + Compartment 4 door + internal + true + false + + + + Compartment 5 door + internal + true + false + + + + Compartment 6 door + internal + true + false + + + + + Access to seats 01-12 + entryAndExit + shut + true + + + Seat 01 + + + Seat 12 + + + + entryAndExit + shut + true + + + Seat 01 + + + Seat 12 + + + + entryAndExit + shut + true + + + Seat 13 + + + Seat 36 + + + + entryAndExit + shut + true + + + Seat 13 + + + Seat 36 + + + + + + 1 + 4 + true + true + + + 2 + 14 + true + true + + + + 20 + + + standingSpace + 20 + + + true + + + + Passenger Toilet + + + 1 + + + + true + true + false + + + + Toilet door connecting to corridor + 0.80 + 1.80 + + + + + + true + true + false + + + + + Connected to corridor + + + + + + + entryAndExit + shut + + + + 1 + + + + + Compartment 1: Seats 01-02 + First class compartment with two beds + + true + standardClass + + true + + + true + false + true + + + + true + false + + + + Compartment 1 door connecting to corridor + 0.80 + 1.80 + + + + + + true + firstClass + true + false + + + + + Connected to corridor + + + + + + + entryAndExit + shut + + + + + + leftwards + + 1.50 + true + true + + + 8 + + + + + + seat + 8 + + + + + + bed + 6 + + + standingSpace + 0 + + + false + + + + + backwards + 0.60 + 0.50 + 2.0 + + + + + + + + + + + + + + byAisleAndWindow + fixedFlat + true + + + + + forwards + + + + + + + + + + + + + + byAisleAndWindow + fixedFlat + true + + + + + + Compartment 2: Seats 02-03 + Rirst class with two beds + + true + standardClass + + true + + + true + false + true + + + + true + false + + + + Compartment 1 door connecting to corridor + 0.80 + 1.80 + + + + + + true + firstClass + true + false + + + + + Connected to corridor + + + + + + + entryAndExit + shut + + + + 8 + + + + + + seat + 8 + + + + + + bed + 6 + + + standingSpace + 0 + + + false + + + + + backwards + 0.60 + 0.50 + 2.0 + + + + + + + + + + + + + + byAisleAndWindow + true + + + + + forwards + + + + + + + + + + + + + + byAisleAndWindow + + + + + + + + Compartment 3 : Seats 05-12 + 2nd class configurable as 2 x 4 seats or 2 x 3 bunk berths + + true + standardClass + true + false + + + + + Compartment 1 door connecting to corridor + 0.80 + 1.80 + + + + + + true + standardClass + true + false + + + + + entryAndExit + shut + + + + 8 + + + + + + 8 people as daytime compartment + seat + 8 + + + + + + 6 people as nightime couchette + bed + 6 + + + false + + + + + Seat 05 turns into bottom Bunk + backwards + + + + + + + + + + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + Seat 06 turns into middle Bunk + backwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + Seat 06 turns into top Bunk + backwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + Seat only available in daytime + backwards + + + + + + + + + + + byAisleNoWindow + true + + + + + forwards + + + + + + + + + + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + forwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + forwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + Seat only available in daytime + forwards + + + + + + + + + + + byAisleNoWindow + true + + + + + + Compartment 4 : Seats 12-20 + 2nd class configurable as 2 x 4 seats or 2 x 3 bunk berths + + true + standardClass + true + false + + + + Compartment 1 door connecting to corridor + 0.80 + 1.80 + + + + + + true + standardClass + true + false + + + + + entryAndExit + shut + + + + 8 + + + + + + 8 people as daytime compartment + seat + 8 + + + + + + 6 people as nightime couchette + bed + 6 + + + false + + + + + backwards + + + + + + + + + + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + backwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + backwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + Seat only available in daytime + backwards + + + + + + + + + + + byAisleNoWindow + true + + + + + forwards + + + + + + + + + + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + forwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + forwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + Seat only available in daytime + forwards + + + + + + + + + + + byAisleNoWindow + true + + + + + + Compartment 5 : Seats 21-28 + 2nd class configurable as 2 x 4 seats or 2 x 3 bunk berths + + true + standardClass + true + false + + + + Compartment 1 door connecting to corridor + 0.80 + 1.80 + + + + + + true + standardClass + true + false + + + + + entryAndExit + shut + + + + 8 + + + + + + 8 people as daytime compartment + seat + 8 + + + + + + 6 people as nightime couchette + bed + 6 + + + false + + + + + backwards + + + + + + + + + + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + backwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + backwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + Seat only available in daytime + backwards + + + + + + + + + + + byAisleNoWindow + true + + + + + forwards + + + + + + + + + + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + forwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + forwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + Seat only available in daytime + forwards + + + + + + + + + + + byAisleNoWindow + true + + + + + + compartment 6 : Seats 21-28 + 2nd class configurable as 2 x 4 seats or 2 x 3 bunk berths + + true + standardClass + true + false + + + + Compartment 1 door connecting to corridor + 0.80 + 1.80 + + + + + + true + standardClass + true + false + + + + + entryAndExit + shut + + + + 8 + + + + + + 8 people as daytime compartment + seat + 8 + + + + + + 6 people as nightime couchette + bed + 6 + + + false + + + + + backwards + + + + + + + + + + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + backwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + backwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + Seat only available in daytime + backwards + + + + + + + + + + + byAisleNoWindow + true + + + + + forwards + + + + + + + + + + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + forwards + + + + + + + + + + + + + + + + + inMiddle + true + + + + forwards + + + + + + + + + + + + + + + + + byAisleNoWindow + true + + + + Seat only available in daytime + forwards + + + + + + + + + + + byAisleNoWindow + true + + + + + + WC + true + true + false + 1 + + + + angledRight + 0.5 + 2.5 + 2.0 + + + 1 + + + + + + + angledRight + 0.5 + 2.5 + 2.0 + + + 1 + + + + + + + angledRight + 0.5 + 2.5 + 2.0 + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mid point at front fo carriage + + 3 2 + + all + + + + + mid point at front fo carriage + + 3 2 + + all + + + + + + + + + + + + + + + + + + + + + + + + + link to Compartment 1 + + + + + + + + + + + link to Compartment 1 + + + + + + + + + + + link to Compartment3 + + + + + + + + + + + + Seat in Compartment 3 + + + + + + + + + + + Static Navigation path to get from right rear door to Compartment 3 seat 05 + + + + + + + wellLit + true + + + + left + Turn right into corridor + + + + forward + Go down corridor third compartment from end on leftt + + + + left + Seat 9is on far side by window on left + + + + + + + + + Rail sleeper wagon + Double decker wagon drive through eaxis from front and back. Passenger doors on side + + + If One vehicle per space + + + If Two vehiclesper space + + + + + + Lower vehicle deck + true + + + + Lower vehicle deck + true + + + + + Car transporter Waggon - lower deck + + + + + Car area + + false + + + + + Passenger access left Door + 1.00 + 1.90 + + + 1 + + + + true + leftSide + 0.20 + external + true + true + false + + + + >Passenger access Right External Door + 1.00 + 1.90 + + + 1 + + + + true + rightSide + 1 + 0.20 + external + true + true + false + + + + Front End entrance + 4.00 + 5.00 + true + frontEnd + communicating + false + + + Back End entrance + 4.00 + 5.00 + true + backEnd + communicating + false + + + + + entryAndExit + shut + false + + + + entryAndExit + shut + false + + + + 4 + + + vehicleSpace + 4 + + + vehicleSpace + 2 + + + true + + + + + + + 5.0 + 9.0 + 3.40 + motorcycle microCar miniCar smallCar largeCar + + + + + + + 5.0 + 9.0 + 3.40 + motorcycle microCar miniCar smallCar largeCar + + + + + + + 5.0 + 21.0 + 3.40 + largeCar camperCar minibus carWithTrailer + + + + + + + + 5.0 + 9.0 + 3.40 + motorcycle microCar miniCar smallCar largeCar + + + + + + + 5.0 + 9.0 + 3.40 + motorcycle microCar miniCar smallCar largeCar + + + + + + + 5.0 + 21.0 + 3.40 + largeCar camperCar minibus carWithTrailer + + + + + + + Car transporter Waggon - upper deck + + + + + Car area + + false + + + + Front End entrance + 4.00 + 5.00 + true + frontEnd + communicating + false + + + Back End entrance + 4.00 + 5.00 + true + backEnd + communicating + false + + + 4 + + + vehicleSpace + 4 + + + true + + + + 5.0 + 9.0 + 3.0 + motorcycle microCar miniCar smallCar largeCar + + + + 5.0 + 9.0 + 3.0 + motorcycle microCar miniCar smallCar largeCar + + + + 5.0 + 9.0 + 3.0 + motorcycle microCar miniCar smallCar largeCar + + + + 5.0 + 9.0 + 3.0 + motorcycle microCar miniCar smallCar largeCar + + + + + + + + + + Rail sleeper wagon + + + Buffet car Passenger deck + + + + @seating_area@ + + false + + + + + Front Door + 1.00 + 1.90 + + + 1 + + + + 1 + + + + + + + true + leftSide + 1 + 0.20 + external + true + true + true + + + + + + + + + Front Right External Door + 1.00 + 1.90 + + + 1 + + + + 1 + + + + true + rightSide + 1 + 0.20 + external + true + true + true + + + + + + + + + Rear External Door + 0.95 + 1.90 + + + 1 + + + + + + + + + + true + leftSide + 2 + 0.20 + external + true + true + true + + + + + + + + + Rear Right External Door + 0.95 + 1.90 + + + 1 + + + + + + + true + rightSide + 2 + 0.20 + external + true + true + true + + + + + + + + + + Rear end door connecting to next carriage + 0.80 + 1.90 + + + + + + true + frontEnd + communicating + false + true + true + + + + + + + + + Rear end door connecting to next carriage + 0.80 + 1.90 + + + + + + + + + true + backEnd + communicating + false + true + true + + + + + + + + + Compartment 1 door + 0.80 + 1.80 + + + + + + internal + true + false + + + + Compartment 1 door + 0.80 + 1.80 + + + + + + internal + true + true + + + Compartment 2 door + internal + true + false + + + + + + entryAndExit + shut + true + + + Seat 01 + + + Seat 24 + + + + entryAndExit + shut + true + + + Seat 01 + + + Seat 24 + + + + entryAndExit + shut + true + + + Seat 25 + + + Seat 46 + + + + entryAndExit + shut + true + + + Seat 25 + + + Seat 46 + + + + + entryAndExit + shut + true + + + + entryAndExit + shut + true + + + + entryAndExit + lockedShut + + + + + + 1 + 4 + true + true + + + 2 + 14 + true + true + + + + 20 + + + standingSpace + 20 + + + true + + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + + forwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + forwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + forwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + forwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + + forwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + forwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + forwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + forwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + + backwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + backwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + backwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + forwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + + forwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + forwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + forwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + forwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + + forwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + forwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + forwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + forwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + + forwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + forwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + forwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + forwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + + backwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + backwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + backwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + forwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + + forwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + forwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + forwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + forwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + + + + forwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + forwards + + + + + + + + + + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + + + WC + + + 1 + + + + true + true + false + 1 + + + + Luggage + true + true + false + + + Galley + false + true + false + + + buffet + false + true + false + + + Snack area + true + true + false + 20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Basic Elements for map of wagon + http:railco.eu/plans/wagon_floor_plan + + + Bottom Deck + + + + Forward Entrance left + + + + Rear Entrance left + + + + Forward Entrance right + + + + Rear Entrance right + + + + Toilet + + + + + + +
+ + Deck Plan - Train and Journey assignment Example + Example descripotion of a Station with Navigation paths to reach a platform + + + xx + http://www.natrail.rt/ + Fake stop data + + + + + + + Station Opening hours + + + + + Everyday + + + + + 05:30:00 + 00:30:00 + 1 + + + + + + + Erewhon hbf + + + Street Level + ST + 0 + + + Platform Level + PL + 1 + + + + + Main Entrance + External Entrance to Ticket Hal + + + Passenger Terminal + 45 + Bahnhof Srasse + Erewhon + 7562 + Ruritania + + + true + + + true + true + + + + + + + Main door + true + hingedPair + true + true + true + false + true + true + noForce + true + false + false + true + outside + 4.00 + + + + openDoor + true + true + true + 3.0 + 2.0 + + + + + + + -1 + + + + 0 + + + + + + + + Boarding assistance is availabel if booked + boardingAssistance wheelchairAssistance + availableIfBooked + fullTime + true + firstAid + ccTv sosPoints + + + rail + local + railStation + false + + + + + + Quays 1 and 2 + + true + + + true + true + + + + + + + Assisted boarding for wheelchair + bothWays + boarding + ramp + + + + PT3M + PT5M + PT10M + + + + + + + true + 300.00 + 0.30 + 0.10 + rampRequired + boardOnlyAtSpecifiedPositions + + + Info assistance + true + true + true + wellLit + true + automatic + + + + + + + + + + + + E + railPlatform + 1.0 + + + Quay 1 - Trains to Pas de Ville + P1 + + + + Entrance to quay 1 + + + + + http://rcicons.com/platform + Platform 1 + transportModePoint + + + opening + false + true + true + 4.0 + 4.0 + + + + + + railPlatform + 1.0 + 4 + + + + Quay 2 - Trains to Keinstadt + P2 + + true + + + true + true + + + + + + + + + 0.12345 + -53.654 + + + + + + + 20 + EREWHON HBF2 + + + + + + + + + + + railPlatform + 4 + + + + covered + + positionOnRailPlatform + + + covered + + positionOnRailPlatform + + + covered + + positionOnRailPlatform + + + + + + + Ticket Hall + indoors + openArea + wellLit + true + + + + Possible delay Queueing for ticket counter + ticketPurchase + counterService + hall + + + + PT2M + PT5M + PT21M + + + + + + + ticketMachines ticketOffice mobileTicketing + purchase refund exchange reservations renewal collection + true + 2 + separateLines + cashAndCard + all + localTicket nationalTicket + true + 1.2 + true + false + true + + + realTimeDepartures networkStatus lineNetworkPlan + + + + + + + + bookingHall + + + Stairwell to Q1 and Q2 + indoors + openArea + wellLit + false + + + 4.00 + 20 + 0.20 + true + bothSides + 1.4 + 0.8 + + false + true + true + + + false + true + true + + true + 2 + + + 2.00 + 10 + true + 0.8 + true + + + 2.00 + 10 + true + 0.8 + true + + + + + + + Ticket Hall Entrance to stairs to Platforms 1 and 2 + + + + + http://rcicons.com/platform + Stairs to Platforms 1 & 2 + transportModePoint + + + opening + false + true + true + 3.0 + 3.0 + + + Platforms 1 and 2 -from bottom of stairs + + + opening + false + true + true + 3.0 + 3.0 + + + staircase + + + Lift to Q1 and Q2 + openArea + true + 6 + + + Possible delay Waiting for lift + bothWays + waitForLift + lift + + + + PT2M + PT4M + PT10M + + + + + + + Lift to platforms + both + 6 + true + 3.00 + 400 + true + 2.5 + 2.5 + bothSides + 1.3 + 1.2 + 1.2 + true + false + true + false + false + false + false + true + false + true + true + true + true + true + 1.2 + + + + + Ticket Hall Kift entrance at street level + + + + + 1.2 + true + false + false + true + true + E + + + + automaticDoor + false + true + true + 2.0 + 2.0 + + + Ticket Hall lift entrance at street level + + + + + 1.4 + true + false + false + true + true + S + + + + automaticDoor + false + true + true + 2.0 + 2.0 + + + lift + + + + + + Ticket Hall Entrance to middle junction point + 15 + + + forward + 15 + level + Proceed though door to middle of ticket hall + + + + + + + + + + + + 0 + twoWay + level + concrete + true + + + Ticket Hall middle to Platforms 1 and 2 - top of stairs + 20 + + + + + + + + + + 0 + twoWay + handrail + handrail + false + + + Ticket Hall middle to Lift entrance street level + 20 + + + + + + + + + + 0 + twoWay + level + concrete + true + + + + Stairs to platform level top of stairs Entrance to Platforms 1 and 2 - bottom of stairs + 15 + + + + + + + + + + + 0 + downAndUp + + + + + + Lift to platform level: Lift entrance street level to Lift entrance platform level + 20 + + + + + + + + + + + 0 + downAndUp + lift + + + + + + + + + + + Bottom of of stairs Entrance to Platforms 2 - boarding position c + 15 + + + + + + + Boarding PointC + + + 0 + twoWay + level + concrete + tactileStripAtEnd + true + + + Lift entrance street level to bottom of start to q1 and q2 level + 20 + + + + + + + + + + + 0 + twoWay + level + concrete + true + + + + Lift entrance street level to entrance to quay 1 + 3 + + + + + + + + + + + 0 + twoWay + level + concrete + true + + + Entrance to quay 1 to middle of platform + 20 + + + + + + + + + + 0 + twoWay + level + concrete + wall + noPhysicalBorder + true + + + + + + + + From Station main entrance to QUAY 2 Boarding point C - via stairs + 70 + + + + + + + Boarding PointC + + + + + hall + 1 + level + + + stairs + 1 + down + + + indoors + openArea + false + streetToQuay + + + + forward + level + Enter station main entrance and cross ticket hall to far side + + + + left + level + Turn left and proceed to entrance to platforms 1 and 2 + + + + forward + down + Take stairs down to platform level + + + + right + level + Turn right and Walk along platform to boarding point C + + + + + From Station main entrance to QUAY 2 Boarding point C - via lift + 65 + + + + + + + Boarding PointC + + + + + hall + 1 + level + + + lift + 1 + down + + + indoors + openArea + true + streetToQuay + + + + forward + level + Enter station by main entrance + + + + left + level + Turn left and proceed to lift entrance at left end of ticket hall + + + + right + down + Take lift down to platform level. Exit on right + + + + left + level + Turn left on exit from lift and proceed to bottom of stairs + + + + right + level + Walk along platform to boarding point C + + + + + + + Junction in middle of ticket hall + + + right + Turn right to go to lift + + + left + Turn left to go to ticket machine. + + + forward + Continue forward for stairs to platforms. + + + + + Junction in middle of Quay 1 + + + + + + Deck Plan - Train and Journey assignment Example + This is an example showing how one might assign a deck plan to a journey. Note that Train elements can specify a default deck plan + + + + Train from Pas de Ville - Erewhon - Cockaigne - Keinstadt + Operates as sleeper between Erewhon -Keinstadt + 18:10:00 + + + + + + + + + + + + Day Configuration as seats + + + + 18:10:00 + 20:30:00 + true + + + Night configuration as bunk beds + + + + 20:45:00 + 06:50:00 + 1 + + false + + + + Buffet Service betwen 18:30 and 11:45 + + 18:30:00 + 11:45:00 + + + + + + + + Pas de Ville + + + true + + + + + + + Erewhon + + + true + + + + + true + + + + + + + Very Short Platform. Access only to front two carriages + + + + + + + Cockaigne + + + true + + + + + true + + + + true + + + Keinstadt + + + 1 + true + + + + + + + Connecting journey Erewhon - Novado + 21:00:00 + + + + + + + + + + + + Erewhon + + + true + + + + + + Novado + + + true + + + + + + + + + General service specific facilities + boardingAssistance conductor wheelchairAssistance + buffet + purchase + reservation + couchette seating sleeper + C2 C6 T2 + baggageStorage baggageVan cyclesAllowedWithReservation luggageRacks + + + + + + Day Coach leg of journey + + + + + + + + + + Night leg of journey + + + + + + + + + + + + Ties a STOP ASSIGNMENT to a specific VEHICLE JOURNEY + + + + + + + Interchange to train to Novado + + true + true + guaranteed + PT2M + + + + + + + Rail Deck Plan Assignment Example + This is an example showing how one might assign a Deck Entrance to a journey so as to state which entrance will be at which point on the platform . + + + Pas de Ville + + + Keinstadt + + + Keinstadt + + + Cockaygne + + + + + Novado + + + + + + Pas de Ville - Gare de L'Eest + Pas de Ville + railStation + rail metro + + true + + + Erewhon HBF + Erewhon + railStation + rail + + true + + + Erewhon HBF Platform 2 + Erewhon + railStation + rail + + true + + + Cockaygne BF + Cockaygne + railStation + rail + + true + + + Keinstadt Bhf + Keinstadt + railStation + rail metro + + true + + + + + Novado FS + Novado + railStation + rail + + false + + + + + + + PT5M + PT12M + + true + + bus + + + rail + + + + Connection between platforms 1 and 2 in timetable + 40.00 + + PT2M + PT6M + + true + + + + + + + + + + + + Assignment for train at particular stop Erewhon 015E + Short platform so only front three doors accessible. Train reverses in station + + true + false + true + false + + + + + Front half of Carriage F01 + Carriage F01 Seats 01-12 can use Boarding Position A + true + true + + + + sleeperCarriage + + 2 + + true + Board at front + + + Entrance to F01 is at Boarding Position A via forward door on right hand side of train + + + Seat 01 + + + Seat 12 + + + + + + Rear half of Carriage F01 + Carriage F01 Seats 03-26 can use Boarding Position B + true + true + + + + sleeperCarriage + + 2 + + true + Exit by rear doors + + + Entrance to F01 seats 13-26 at Boarding Position B via rear door on right hand side of train + + shut + + + Seat 13 + + + Seat 36 + + + + + + Carriage F02 front + Carriage F02 All seats must use forward door to Boarding Position C. Rear door shut + true + true + + + + sleeperCarriage + + 3 + + true + Exit through front carriages + + + Entrance to F03 at Boarding Position A via forward door on right hand side of train + + shut + + Seat 01 + + + Seat 36 + + + + No Entrance to F02 via rear door on right hand side of train + + lockedShut + + + + + Short platform means F03 (buffet car) doors cannot be used + false + false + + + + buffetCar + + 4 + false + Move to front 2 carriages to access platfrom + + + Short platform means F04 (sleeper wagon) doors cannot be used + false + false + + + + sleeperCarriage + + 5 + false + Move to front 2 carriages to access platfrom + + + + + +
+
+
+
diff --git a/examples/functions/deckPlans/DeckPlans-Example_train_simple.xml b/examples/functions/deckPlans/DeckPlans-Example_train_simple.xml new file mode 100644 index 000000000..50be5c478 --- /dev/null +++ b/examples/functions/deckPlans/DeckPlans-Example_train_simple.xml @@ -0,0 +1,1770 @@ + + + + + + 2020-12-17T09:30:47.0Z + SYS001 + + + 2020-12-17T09:30:46.0Z + SYS002 + + P1M + Example of DeckPlans + + + + + 2023-01-01T00:00:00 + 2023-12-31T12:00:00 + + Deck Plan Example + This is an example showing how one might encode a Deck plan for a train in NeTEx. + + + + rc + http://www.frail.eu/ + Frail rail data + + + + + + + + + + + Rail examples of IC train seating cars + Describes a train with IC wagons. + + + + MRC + Motor Rail CO + Moto + Motovacation SA + operator +
+ Prince Rupert Street + Strelsau + z354 + Ruritania +
+ bus +
+
+ + + + Passenger Train door + true + hingedSingle + true + true + false + + + true + slidingPair + true + true + true + + + Sliding door to the entrance room + true + slidingSingle + true + false + true + + + Hinged door to compartment + true + hingedSingle + false + true + true + + + Standard carriage seate + 0.48 + 0.50 + 0.50 + false + + + + luggage area + 4.00 + 1.25 + 0.40 + 1.90 + luggageBay + 0.40 + false + + + + toilet washbasin + 1 + true + + + + + + General facilities + standardClass + mobilePhoneUseZone noSmoking + publicWifi powerSupplySockets + nextStopIndicator passengerInformationDisplay realTimeConnections stopAnnouncements + toilet + seating + baggageStorage luggageRacks + + + + + + 4 carriage train + [Seating car 3] [Seating car 3] [Seating car 2] [Seating car 1] [Engine] + true + electric + + + + 400 + + 320 + + 80 + + + false + false + 0.40 + + + + + + + Engine + + forwards + + true + noThroughAccess + + + + + Seating car + + forwards + + true + door + + + + + Seating car + + forwards + + true + door + + + + + Seating car + + forwards + + true + door + + + + + Seating car + + forwards + + true + door + + + + + + + + Engine + engine + 10 + 3.5 + 4 + 1000 + + + Seating car + carriage + economyClass + false + false + 0.15 + 26.4 + 2.825 + 4 + 43000 + + + + + + IC seat wagon (DB Bpmmz284) + + + Seat car Passenger deck + + + + @seating_area@ + + false + + + + + Front Door + 0.80 + 1.90 + + + 1 + + + + true + leftSide + 1 + 0.20 + external + true + true + true + + + + Front Right External Door + 1.00 + 1.90 + + + 1 + + + + true + rightSide + 1 + 0.20 + external + true + true + true + + + + Rear External Door + 0.95 + 1.90 + + + 1 + + + + true + leftSide + 2 + 0.20 + external + true + true + true + + + + Rear Right External Door + 0.95 + 1.90 + + + 1 + + + + true + rightSide + 2 + 0.20 + external + true + true + true + + + + + Rear end door connecting to next carriage + 0.80 + 1.90 + + + + + + true + frontEnd + communicating + false + true + true + + + + Rear end door connecting to next carriage + 0.80 + 1.90 + + + + + + true + backEnd + communicating + false + true + true + + + + Compartment 1 door + 0.80 + 1.80 + + + + + + internal + true + false + + + + + + entryAndExit + shut + true + + + Seat 12 + + + Seat 76 + + + + entryAndExit + shut + true + + + Seat 12 + + + Seat 76 + + + + entryAndExit + shut + true + + + Seat 81 + + + Seat 115 + + + + entryAndExit + shut + true + + + Seat 81 + + + Seat 115 + + + + + entryAndExit + shut + true + + + + entryAndExit + shut + true + + + + + + + 900 + 1 + 3.250 + true + false + + + 1400 + 2 + 4.415 + true + false + + + 1400 + 3 + 6.415 + true + false + + + + 80 + + + standingSpace + 20 + + + true + + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byAisleAndWindow + none + true + + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + + forwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + forwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + forwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + forwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + + backwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + backwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + backwards + + + + + + + + byAisleNoWindow + fixedFlat + true + + + + backwards + + + + + + + + byWindowNoAisle + fixedFlat + true + + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byAisleNoWindow + none + true + + + + forwards + + + + + + + + byWindowNoAisle + none + true + + + + + forwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + forwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + forwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + forwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + + backwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + backwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + backwards + + + + + + + + byAisleNoWindow + seatBackFolding + true + + + + backwards + + + + + + + + byWindowNoAisle + seatBackFolding + true + + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byAisleNoWindow + none + true + + + + backwards + + + + + + + + byWindowNoAisle + none + true + + + + + + WC + + + 1 + + + + true + true + false + 1 + + + + Luggage + true + true + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
diff --git a/examples/functions/fares/Netex_101.21_TfL_GeographicFares_UnitZone_MultipleProduct.xml b/examples/functions/fares/Netex_101.21_TfL_GeographicFares_UnitZone_MultipleProduct.xml index e64faf7b7..f66731ad3 100644 --- a/examples/functions/fares/Netex_101.21_TfL_GeographicFares_UnitZone_MultipleProduct.xml +++ b/examples/functions/fares/Netex_101.21_TfL_GeographicFares_UnitZone_MultipleProduct.xml @@ -12,7 +12,7 @@ Data is (C) Copyright Transport for Lonond 2017-2019 (C) CEN & Crown Copyright 2018, 2019 Free to use under a Creative Commons license. -v1.1 Revised & corrected to use Tariff and simpler ids +v1.1 Revised & corrected to use Tariff and simpler ids =================================================== @@ -5170,7 +5170,7 @@ You can only get these as paper tickets, not on an Oyster card, and they must be Visitor centres debitCard creditCard companyCheque cash - + Overseas Agents centres @@ -5196,7 +5196,7 @@ You can't Buy paper tickets (cash single tickets and Day Travelcards) debitCard creditCard cash - + Oyster Online @@ -15583,6 +15583,13 @@ For more information on National Rail services see the + + List of registered universties + + + + + diff --git a/examples/functions/newModes/NewModes-CarClubExample.xml b/examples/functions/newModes/NewModes-CarClubExample.xml index a4b00e6e9..4f15f0116 100644 --- a/examples/functions/newModes/NewModes-CarClubExample.xml +++ b/examples/functions/newModes/NewModes-CarClubExample.xml @@ -1074,6 +1074,7 @@ This Shows sample Purchases Book and pay for 1-day use of a car 2021-10-01T10:10:00 + true 103.50 @@ -1086,6 +1087,7 @@ This Shows sample Purchases creditCard + 1231 0000 0000 0000 0000 2021-10-08T11:15:00 diff --git a/examples/functions/newModes/NewModes-CarPoolingExample.xml b/examples/functions/newModes/NewModes-CarPoolingExample.xml index 24639e0fb..ae7f390b9 100644 --- a/examples/functions/newModes/NewModes-CarPoolingExample.xml +++ b/examples/functions/newModes/NewModes-CarPoolingExample.xml @@ -262,6 +262,8 @@ In addition CUSTOMER PURCHASE PACKAGES showing the parameters that might be held + + Taxi Rank at Alphaville Hotel de Ville @@ -276,7 +278,7 @@ In addition CUSTOMER PURCHASE PACKAGES showing the parameters that might be held - + ALphaville Hotel de Ville diff --git a/examples/functions/newModes/NewModes-ChauffeuredServiceExample.xml b/examples/functions/newModes/NewModes-ChauffeuredServiceExample.xml index a85702b02..1f0c88015 100644 --- a/examples/functions/newModes/NewModes-ChauffeuredServiceExample.xml +++ b/examples/functions/newModes/NewModes-ChauffeuredServiceExample.xml @@ -397,6 +397,8 @@ + + Taxi Rank at Alphaville Hotel de Ville @@ -409,7 +411,7 @@ - + Alphaville Hotel de Ville diff --git a/examples/functions/newModes/NewModes-CycleSharingExample.xml b/examples/functions/newModes/NewModes-CycleSharingExample.xml index 82c705986..ceea3b54c 100644 --- a/examples/functions/newModes/NewModes-CycleSharingExample.xml +++ b/examples/functions/newModes/NewModes-CycleSharingExample.xml @@ -241,7 +241,7 @@ New Model Bike v2 - + @@ -251,14 +251,14 @@ 2 - + plug type2 1-PhaseAC 240 PT1M PT1M - + diff --git a/examples/functions/simpleNetwork/Netex_SimpleNetwork_1.xml b/examples/functions/simpleNetwork/Netex_SimpleNetwork_1.xml index 10c9d4304..220f11d41 100644 --- a/examples/functions/simpleNetwork/Netex_SimpleNetwork_1.xml +++ b/examples/functions/simpleNetwork/Netex_SimpleNetwork_1.xml @@ -465,7 +465,7 @@ v1.1 revised ids Big red bus - + 50 20 2 diff --git a/examples/functions/site/Netex_01_Sites_SimpleStadium_1.xml b/examples/functions/site/Netex_01_Sites_SimpleStadium_1.xml index 14441f3ed..8223650d2 100644 --- a/examples/functions/site/Netex_01_Sites_SimpleStadium_1.xml +++ b/examples/functions/site/Netex_01_Sites_SimpleStadium_1.xml @@ -763,14 +763,14 @@ The example comprises - + Branch in Entrance Hall A - - + + Branch in Entrance Hall B - + @@ -906,7 +906,7 @@ The example comprises - + Entrance A true forward @@ -1062,7 +1062,7 @@ The example comprises - + Entrance A true forward diff --git a/examples/functions/site/Netex_10_Sites_OlympicPark_2_basic.xml b/examples/functions/site/Netex_10_Sites_OlympicPark_2_basic.xml index 877933c79..410ffb2f2 100644 --- a/examples/functions/site/Netex_10_Sites_OlympicPark_2_basic.xml +++ b/examples/functions/site/Netex_10_Sites_OlympicPark_2_basic.xml @@ -2163,63 +2163,63 @@ that defines a number of - + Entrance to aquatics vicinity false forward level - + quatics vicinity to bridge 4 false forward level - + from bridge 4 to Stadium vicinity false right level - + Stadium vicinity to Stadium vicinity false forward level - + Stadium vicinity to handball area vicinity ea false forward level - + Handball vicinity to haHockey arvicinity ea true forward level - + hockey vicinity to bridge 2 false right level - + bridge2 to velo vicinity false forward level - + to BMX true forward @@ -2414,63 +2414,63 @@ that defines a number of - + to BMX false forward level - + bridge2 to velo vicinity true forward level - + hockey vicinity to bridge 2 true forward level - + Handball vicinity to haHockey arvicinity ea true left level - + Stadium vicinity to handball arvicinity ea false forward level - + Stadium vicinity to Stadium vicinity false forward level - + from bridge 4 to Stadium vicinity false left level - + quatics vicinity to bridge 4 false forward level - + Entrance to aquatics vicinity false forward diff --git a/examples/functions/site/Netex_11_Sites_OlympicPark_1.xml b/examples/functions/site/Netex_11_Sites_OlympicPark_1.xml index af2d7d05a..c95d5239c 100644 --- a/examples/functions/site/Netex_11_Sites_OlympicPark_1.xml +++ b/examples/functions/site/Netex_11_Sites_OlympicPark_1.xml @@ -149,7 +149,10 @@ It is based on the 2012 London Olympic Park. See accompanying paper for diagram A COMPOSITE FRAME is used to group the other frames as a single version -(C) CEN Copyright 2010 +(C) CEN Copyright 2010, 2023 + +Updated to give exampel of group of SItes + --> 2001-12-17T09:30:47.0Z @@ -491,6 +494,28 @@ It is based on the 2012 London Olympic Park. See accompanying paper for diagram ENG + + + Sites in Olympic Park + + + + + + + + + + + + + + + + + + + @@ -4224,6 +4249,52 @@ It is based on the 2012 London Olympic Park. See accompanying paper for diagram wellLit 80000 + + + Level 1 + true + + + Level 2 + true + + + Level 3 + true + + + + + East Access Block + + + 1 + + + + 2 + + + + 3 + + + + + + West Access Block + + + 1 + + + + 2 + + + + + Hockey Centre @@ -4734,6 +4805,22 @@ It is based on the 2012 London Olympic Park. See accompanying paper for diagram + + + Zone3 + + + Zone4 + + + + + + + + + + diff --git a/examples/functions/stopPlace/FX-PI-01_UK_TBD_STOP-OFFER_910GWIMBLDN-accessibility_20140601.xml b/examples/functions/stopPlace/FX-PI-01_UK_TBD_STOP-OFFER_910GWIMBLDN-accessibility_20140601.xml index 8fcb0807a..74c479c23 100644 --- a/examples/functions/stopPlace/FX-PI-01_UK_TBD_STOP-OFFER_910GWIMBLDN-accessibility_20140601.xml +++ b/examples/functions/stopPlace/FX-PI-01_UK_TBD_STOP-OFFER_910GWIMBLDN-accessibility_20140601.xml @@ -2872,7 +2872,7 @@ Changes - + Branch from main entrance to DL stairs 1-4 -180 @@ -2880,8 +2880,8 @@ Changes indoors - - + + Branch from main entrance to Rail stairs to 5 and 6 -180 @@ -2889,8 +2889,8 @@ Changes indoors - - + + Branch from path junction 2 to Rail stairs to 7 and 8 -180 @@ -2898,8 +2898,8 @@ Changes indoors - - + + Branch from path junction 3 to Rail stairs to 9 and 10 -180 @@ -2907,8 +2907,8 @@ Changes indoors - - + + Branch from lift area internal entrance 5 to Lift 1 and Lift 2 -180 @@ -2916,8 +2916,8 @@ Changes indoors - - + + Branch from lift area internal entrance 6 to Lift 3 and Lift 4 -180 @@ -2925,8 +2925,8 @@ Changes indoors - - + + Branch in front foreCourt Near entrance -180 @@ -2934,8 +2934,8 @@ Changes outdoors - - + + Branch in front foreCourt near street -180 @@ -2943,7 +2943,7 @@ Changes outdoors - + @@ -5280,7 +5280,7 @@ Changes - + Landing on Stairs 1 on way to DL -180 @@ -5288,7 +5288,7 @@ Changes indoors - + @@ -6082,7 +6082,7 @@ Changes - + Branch in way to Stop D and Stop P -180 @@ -6090,8 +6090,8 @@ Changes outdoors - - + + Branch on way from main entrance to Stop P -180 @@ -6099,8 +6099,8 @@ Changes outdoors - - + + Branch on way from Stop P to Stop L -180 @@ -6108,8 +6108,8 @@ Changes outdoors - - + + Branch on way from Stop D and Stop L to centre Court -180 @@ -6117,8 +6117,8 @@ Changes outdoors - - + + Branch on way to Stop L from Centre Court -180 @@ -6126,7 +6126,7 @@ Changes outdoors - + @@ -6573,7 +6573,7 @@ Changes - + first Branch on way from main entrance to Alexandra Road 1 -180 @@ -6581,8 +6581,8 @@ Changes outdoors - - + + second Branch on way to Alexandra Road 1 -180 @@ -6590,7 +6590,7 @@ Changes outdoors - + diff --git a/examples/functions/stopPlace/Netex_10_StopPlace_withParking_1.xml b/examples/functions/stopPlace/Netex_10_StopPlace_withParking_1.xml index 554d20d74..765724eba 100644 --- a/examples/functions/stopPlace/Netex_10_StopPlace_withParking_1.xml +++ b/examples/functions/stopPlace/Netex_10_StopPlace_withParking_1.xml @@ -2984,7 +2984,7 @@ Changes - + Branch from main entrance to DL stairs 1-4 -180 @@ -2992,8 +2992,8 @@ Changes indoors - - + + Branch from main entrance to Rail stairs to 5 and 6 -180 @@ -3001,8 +3001,8 @@ Changes indoors - - + + Branch from path junction 2 to Rail stairs to 7 and 8 -180 @@ -3010,8 +3010,8 @@ Changes indoors - - + + Branch from path junction 3 to Rail stairs to 9 and 10 -180 @@ -3019,8 +3019,8 @@ Changes indoors - - + + Branch from lift area internal entrance 5 to Lift 1 and Lift 2 -180 @@ -3028,8 +3028,8 @@ Changes indoors - - + + Branch from lift area internal entrance 6 to Lift 3 and Lift 4 -180 @@ -3037,8 +3037,8 @@ Changes indoors - - + + Branch in front foreCourt Near entrance -180 @@ -3046,8 +3046,8 @@ Changes outdoors - - + + Branch in front foreCourt near street -180 @@ -3055,7 +3055,7 @@ Changes outdoors - + @@ -5377,7 +5377,7 @@ Changes - + Landing on Stairs 1 on way to DL -180 @@ -5385,7 +5385,7 @@ Changes indoors - + @@ -6189,7 +6189,7 @@ Changes - + Branch in way to Stop D and Stop P -180 @@ -6197,8 +6197,8 @@ Changes outdoors - - + + Branch on way from main entrance to Stop P -180 @@ -6206,8 +6206,8 @@ Changes outdoors - - + + Branch on way from Stop P to Stop L -180 @@ -6215,8 +6215,8 @@ Changes outdoors - - + + Branch on way from Stop D and Stop L to centre Court -180 @@ -6224,8 +6224,8 @@ Changes outdoors - - + + Branch on way to Stop L from Centre Court -180 @@ -6233,7 +6233,7 @@ Changes outdoors - + @@ -6710,7 +6710,7 @@ Changes - + first Branch on way from main entrance to Alexandra Road 1 -180 @@ -6718,8 +6718,8 @@ Changes outdoors - - + + second Branch on way to Alexandra Road 1 -180 @@ -6727,7 +6727,7 @@ Changes outdoors - + diff --git a/examples/functions/timetable/Netex_21_Rail_NetworkTimetable_eurostar.xml b/examples/functions/timetable/Netex_21_Rail_NetworkTimetable_eurostar.xml index da86a43d7..fc53452a4 100644 --- a/examples/functions/timetable/Netex_21_Rail_NetworkTimetable_eurostar.xml +++ b/examples/functions/timetable/Netex_21_Rail_NetworkTimetable_eurostar.xml @@ -11432,7 +11432,7 @@ Q.4. Public holiday - Services do not run on a christams day - Standard classs carriage carriage standardClass - + standardClass 58 @@ -11465,7 +11465,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage standardClass - + standardClass 58 @@ -11498,7 +11498,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage standardClass - + standardClass 58 @@ -11531,7 +11531,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage standardClass - + standardClass 58 @@ -11567,7 +11567,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage standardClass - + standardClass 58 @@ -11603,7 +11603,7 @@ Q.4. Public holiday - Services do not run on a christams day - buffetCar standardClass - + standardClass 0 20 @@ -11622,7 +11622,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage firstClass - + firstClass 39 @@ -11655,7 +11655,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage firstClass - + firstClass 39 @@ -11692,7 +11692,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage firstClass - + firstClass 25 2 @@ -11744,7 +11744,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage firstClass - + firstClass 25 @@ -11792,7 +11792,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage firstClass - + firstClass 39 @@ -11828,7 +11828,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage firstClass - + firstClass 39 @@ -11861,7 +11861,7 @@ Q.4. Public holiday - Services do not run on a christams day - buffetCar standardClass - + standardClass 0 10 @@ -11880,7 +11880,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage standardClass - + standardClass 58 @@ -11916,7 +11916,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage standardClass - + standardClass 58 @@ -11952,7 +11952,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage standardClass - + standardClass 58 @@ -11985,7 +11985,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage standardClass - + standardClass 58 @@ -12018,7 +12018,7 @@ Q.4. Public holiday - Services do not run on a christams day - carriage standardClass - + standardClass 48 diff --git a/examples/functions/vehicleSchedule/Netex_simpleVehicleSchedule_01.xml b/examples/functions/vehicleSchedule/Netex_simpleVehicleSchedule_01.xml index 7dccfaa45..a83adce7d 100644 --- a/examples/functions/vehicleSchedule/Netex_simpleVehicleSchedule_01.xml +++ b/examples/functions/vehicleSchedule/Netex_simpleVehicleSchedule_01.xml @@ -899,11 +899,11 @@ There is one DUTY ops:Duty:dty_01 with TWO DUTY PARTS - + 11:00:00.0Z - + 11:10:00.0Z PT5M @@ -1074,11 +1074,11 @@ There is one DUTY ops:Duty:dty_01 with TWO DUTY PARTS - + 12:50:00.0Z - + 12:55:00.0Z @@ -1103,11 +1103,11 @@ There is one DUTY ops:Duty:dty_01 with TWO DUTY PARTS - + 13:00:00.0Z - + 13:05:00.0Z @@ -1324,11 +1324,11 @@ There is one DUTY ops:Duty:dty_01 with TWO DUTY PARTS - + 16:25:00.0Z - + 16:30:00.0Z @@ -1353,11 +1353,11 @@ There is one DUTY ops:Duty:dty_01 with TWO DUTY PARTS - + 16:50:00.0Z - + 16:55:00.0Z @@ -1528,11 +1528,11 @@ There is one DUTY ops:Duty:dty_01 with TWO DUTY PARTS - + 16:35:00.0Z - + 16:45:00.0Z @@ -1557,11 +1557,11 @@ There is one DUTY ops:Duty:dty_01 with TWO DUTY PARTS - + 16:25:00.0Z - + 16:30:00.0Z @@ -1683,11 +1683,11 @@ There is one DUTY ops:Duty:dty_01 with TWO DUTY PARTS - + 21:15:00.0Z - + 21:25:00.0Z @@ -1894,7 +1894,7 @@ There is one DUTY ops:Duty:dty_01 with TWO DUTY PARTS Big red bus - + 50 20 2 @@ -1903,7 +1903,7 @@ There is one DUTY ops:Duty:dty_01 with TWO DUTY PARTS Small blue red bus - + 20 120 0 diff --git a/examples/standards/epiap/EPIAP_Accessibility_Chur_V08_vehicletypes.xml b/examples/standards/epiap/EPIAP_Accessibility_Chur_V08_vehicletypes.xml index 385bdab34..7bf75bdfc 100644 --- a/examples/standards/epiap/EPIAP_Accessibility_Chur_V08_vehicletypes.xml +++ b/examples/standards/epiap/EPIAP_Accessibility_Chur_V08_vehicletypes.xml @@ -145,7 +145,7 @@ Wagen 1 engine secondClass - + 46 10 2 @@ -162,7 +162,7 @@ Wagen 2 carriage secondClass - + 45 20 0 @@ -179,7 +179,7 @@ Wagen 3 carriage firstClass secondClass - + 38 20 0 @@ -196,7 +196,7 @@ Wagen 4 engine secondClass - + 46 10 0 diff --git a/examples/standards/era_uic/Netex_era_uic_simplepark(Disneyland).xml b/examples/standards/era_uic/Netex_era_uic_simplepark(Disneyland).xml index d8ad04b55..29cc0263c 100644 --- a/examples/standards/era_uic/Netex_era_uic_simplepark(Disneyland).xml +++ b/examples/standards/era_uic/Netex_era_uic_simplepark(Disneyland).xml @@ -133,7 +133,7 @@ A COMPOSITE FRAME IS used for grouping the other frames. - + EURODISNEY to MARNE LA VALLEE CHESSY SNCF 500 @@ -142,8 +142,8 @@ A COMPOSITE FRAME IS used for grouping the other frames. - - + + EURODISNEY to MARNE LA VALLEE CHESSY 500 @@ -152,7 +152,7 @@ A COMPOSITE FRAME IS used for grouping the other frames. - + diff --git a/examples/standards/fxc/FX-PI-01_UK_FBRI_LINE-FARE_WOE-Bristol-Line-48-trip-(stage)_2017-01-01.xml b/examples/standards/fxc/FX-PI-01_UK_FBRI_LINE-FARE_WOE-Bristol-Line-48-trip-(stage)_2017-01-01.xml index f01d182ac..6cf4ea772 100644 --- a/examples/standards/fxc/FX-PI-01_UK_FBRI_LINE-FARE_WOE-Bristol-Line-48-trip-(stage)_2017-01-01.xml +++ b/examples/standards/fxc/FX-PI-01_UK_FBRI_LINE-FARE_WOE-Bristol-Line-48-trip-(stage)_2017-01-01.xml @@ -2327,7 +2327,7 @@ BS5 0DZ or email your details to ticketssww@firstgroup https://www.firstgroup.com/bristol-bath-and-west/tickets/where-buy First Somerset & Avon Ltd nocn:136361 - + diff --git a/examples/standards/fxc/FX-PI-01_UK_FBRI_NETWORK-FARE_WOE-Bristol-pass-(Z2Z)_2017-01-01.xml b/examples/standards/fxc/FX-PI-01_UK_FBRI_NETWORK-FARE_WOE-Bristol-pass-(Z2Z)_2017-01-01.xml index 998facfb3..7bce8f4b7 100644 --- a/examples/standards/fxc/FX-PI-01_UK_FBRI_NETWORK-FARE_WOE-Bristol-pass-(Z2Z)_2017-01-01.xml +++ b/examples/standards/fxc/FX-PI-01_UK_FBRI_NETWORK-FARE_WOE-Bristol-pass-(Z2Z)_2017-01-01.xml @@ -7380,7 +7380,7 @@ BS5 0DZ or email your details to ticketssww@firstgroup https://www.firstgroup.com/bristol-bath-and-west/tickets/where-buy First Somerset & Avon Ltd nocn:136361 - + diff --git a/examples/standards/gbfs/Netex_gbfs_exm1.xml b/examples/standards/gbfs/Netex_gbfs_exm1.xml index 04bdb50b5..23dca6e1d 100644 --- a/examples/standards/gbfs/Netex_gbfs_exm1.xml +++ b/examples/standards/gbfs/Netex_gbfs_exm1.xml @@ -171,6 +171,8 @@ GBFS file: vehicle_types.json: 12345 + 14 + scooter diff --git a/examples/standards/noptis/Netex_StopPlace_se_NOPTIS_Example_TEH_PA1.xml b/examples/standards/noptis/Netex_StopPlace_se_NOPTIS_Example_TEH_PA1.xml index d50de6342..762228caf 100644 --- a/examples/standards/noptis/Netex_StopPlace_se_NOPTIS_Example_TEH_PA1.xml +++ b/examples/standards/noptis/Netex_StopPlace_se_NOPTIS_Example_TEH_PA1.xml @@ -193,7 +193,7 @@ - + oneWay diff --git a/examples/standards/norway/network/FlexibleLine863-with-connection.xml b/examples/standards/norway/network/FlexibleLine863-with-connection.xml index 97fff6cff..a5ccacdcc 100644 --- a/examples/standards/norway/network/FlexibleLine863-with-connection.xml +++ b/examples/standards/norway/network/FlexibleLine863-with-connection.xml @@ -359,17 +359,17 @@ example/functions/timetable/Netex_07.2_Bus_FlexibleTimetable_WithPattern.xml - + - + - + @@ -444,16 +444,16 @@ example/functions/timetable/Netex_07.2_Bus_FlexibleTimetable_WithPattern.xml - + - + - + diff --git a/examples/standards/norway/other_resources/submodel-PathLinkWithProjection-DEPRECATED.xml b/examples/standards/norway/other_resources/submodel-PathLinkWithProjection-DEPRECATED.xml index 8894d879e..06646f56a 100644 --- a/examples/standards/norway/other_resources/submodel-PathLinkWithProjection-DEPRECATED.xml +++ b/examples/standards/norway/other_resources/submodel-PathLinkWithProjection-DEPRECATED.xml @@ -2,7 +2,7 @@ - + pGNVZIcJ4ldFD 2017586184.321 @@ -22,4 +22,4 @@ PathLink inherits from Link - + diff --git a/examples/standards/norway/stops/PointOfInterest.xml b/examples/standards/norway/stops/PointOfInterest.xml index 8727c998e..5a4b12963 100644 --- a/examples/standards/norway/stops/PointOfInterest.xml +++ b/examples/standards/norway/stops/PointOfInterest.xml @@ -894,7 +894,7 @@ The example comprises - + Entrance A true forward @@ -1050,7 +1050,7 @@ The example comprises - + Entrance A true forward diff --git a/examples/standards/norway/vehicles/submodel-Vehicle.xml b/examples/standards/norway/vehicles/submodel-Vehicle.xml index 9dd858a2f..5c3305651 100644 --- a/examples/standards/norway/vehicles/submodel-Vehicle.xml +++ b/examples/standards/norway/vehicles/submodel-Vehicle.xml @@ -1,12 +1,29 @@ - - SL78 - unknown - X4533 - Ruter - SL78 - - - - - + + 2020-12-17T09:30:47.0Z + SYS001 + + + 2020-12-17T09:30:46.0Z + SYS002 + + P1M + + + + + + SL78 + unknown + X4533 + Ruter + SL78 + + + + + + + + + diff --git a/examples/standards/norway/vehicles/submodel-VehicleType.xml b/examples/standards/norway/vehicles/submodel-VehicleType.xml index 4925fa834..8836c64d7 100644 --- a/examples/standards/norway/vehicles/submodel-VehicleType.xml +++ b/examples/standards/norway/vehicles/submodel-VehicleType.xml @@ -2,10 +2,11 @@ example V + Euro 6 true diesel - + firstClass 100 80 @@ -14,7 +15,7 @@ 2 2 - + standardClass 300 250 diff --git a/examples/standards/txc/uk_nap_extract1_minimal.xml b/examples/standards/txc/uk_nap_extract1_minimal.xml index eae283626..3fd3a9a02 100644 --- a/examples/standards/txc/uk_nap_extract1_minimal.xml +++ b/examples/standards/txc/uk_nap_extract1_minimal.xml @@ -158,7 +158,7 @@ The NaPTAN StopClassification and StopType can be used to determine how each typ - + Netherley Road timingPoint @@ -193,7 +193,7 @@ The NaPTAN StopClassification and StopType can be used to determine how each typ - + White Deer Park Nursing Home notTimingPoint @@ -235,7 +235,7 @@ The NaPTAN StopClassification and StopType can be used to determine how each typ - + Aberdare Rail Station @@ -324,7 +324,7 @@ The NaPTAN StopClassification and StopType can be used to determine how each typ - + Aberdour Rail Station diff --git a/examples/standards/txc/uk_nap_naptan_stops_extract1.xml b/examples/standards/txc/uk_nap_naptan_stops_extract1.xml index 28b795b69..f67fbc7a2 100644 --- a/examples/standards/txc/uk_nap_naptan_stops_extract1.xml +++ b/examples/standards/txc/uk_nap_naptan_stops_extract1.xml @@ -213,7 +213,7 @@ The NaPTAN StopClassification and StopType can be used to determine how each typ - + Netherley Road @@ -259,7 +259,7 @@ The NaPTAN StopClassification and StopType can be used to determine how each typ - + @@ -314,7 +314,7 @@ The NaPTAN StopClassification and StopType can be used to determine how each typ - + 2012-07-24T13:15:27.1275982Z SYS0001 GDM Export from baseversion number: 1 @@ -106,12 +107,27 @@ 2 + + + + StaticCharging point + 40 + 240 + + + 1000 + 950 + 240 + 220 + + + 11m_Schumacher 11-SU 40 - + 42 42 0 @@ -122,7 +138,7 @@ 11m_Dressmann 11-DR 45 - + 34 42 0 @@ -133,7 +149,11 @@ Strab GT 8 K Überf1 3 - + electric + + battery + + 91 112 0 @@ -144,7 +164,7 @@ Strab GT 8 Z Überf2 4 - + 84 121 0 @@ -155,7 +175,7 @@ GT8 N GT8 N 5 - + 84 115 0 @@ -166,7 +186,7 @@ GT8 K GT8 K 6 - + 91 112 0 @@ -177,7 +197,7 @@ GT 4/ Oldtimer Old 7 - + 31 31 0 @@ -188,7 +208,7 @@ Setra Überlandbus VAG uel-va 18 - + 49 27 0 @@ -199,7 +219,7 @@ Taxi_Taxizentrale TA-TZ 65 - + 4 0 0 @@ -210,7 +230,7 @@ 8Sitzer_Hercher 8S-HE 60 - + 8 0 0 @@ -221,7 +241,7 @@ 11m_GFR 11-GF 55 - + 34 42 0 @@ -232,7 +252,7 @@ 11 m_SBG 11-SBG 70 - + 42 42 0 @@ -243,7 +263,7 @@ GT8 Z Schülerkurse GT8Z 92 - + 84 121 0 @@ -254,7 +274,7 @@ GT8 N Schülerkurse GT8N 93 - + 84 115 0 @@ -265,7 +285,7 @@ Gelenk_Schülerkurse Gelenk 99 - + 46 49 0 @@ -276,7 +296,7 @@ 11m_Schülerkurse 11_M 98 - + 34 74 0 @@ -287,7 +307,7 @@ 11m_Rast 11-RA 35 - + 42 42 0 @@ -298,7 +318,7 @@ GT8 A GT8 A 8 - + 91 112 0 @@ -309,7 +329,7 @@ 11m_VAG_Citaro citaro 27 - + 34 64 0 @@ -320,7 +340,7 @@ 11m Winterhalter 11-WIN 80 - + 38 42 0 @@ -331,7 +351,7 @@ Schienenschleifer schlei 9 - + 1 1 0 @@ -342,7 +362,7 @@ Combino Combin 1 - + 79 166 0 @@ -353,7 +373,7 @@ GT8 Z GT8 Z 2 - + 84 121 0 @@ -364,7 +384,7 @@ Sprinter_VAG-Freiburg 10-VA 10 - + 14 7 0 @@ -375,7 +395,7 @@ Schienen-Reiniger reinig 12 - + 1 1 0 @@ -386,7 +406,7 @@ Partywagen Party 13 - + 20 20 0 @@ -397,7 +417,7 @@ 11m_Schwarz 11-SW 50 - + 45 54 0 @@ -408,7 +428,7 @@ Sputnik sputni 14 - + 20 20 0 @@ -419,7 +439,7 @@ Diesel-Lok dielok 19 - + 1 1 0 @@ -430,7 +450,7 @@ 11m_Binninger 11-BI 31 - + 49 42 0 @@ -441,7 +461,7 @@ Taxi Groß Taxis 17 - + 12 0 0 @@ -452,7 +472,7 @@ Breisgau-S-Bahn ZUG 20 - + 0 0 0 @@ -463,7 +483,7 @@ Breisgau-S-Bahn ZUG1 21 - + 0 0 0 @@ -474,7 +494,7 @@ Breisgau-S-Bahn ZUG2 22 - + 0 0 0 @@ -485,7 +505,7 @@ Breisgau-S-Bahn ZUG3 23 - + 0 0 0 @@ -496,7 +516,7 @@ Breisgau-S-Bahn ZUG4 24 - + 0 0 0 @@ -507,7 +527,7 @@ Breisgau-S-Bahn ZUG5 25 - + 0 0 0 @@ -518,7 +538,7 @@ Gelenk_Schwarz 18-SW 51 - + 61 93 0 @@ -529,7 +549,7 @@ 11m-Hohwihler 11-HO 30 - + 34 32 0 @@ -540,7 +560,7 @@ Gelenk_Schumacher 15schu 41 - + 46 53 0 @@ -551,7 +571,7 @@ Gelenk_Rast 18-RA 36 - + 55 85 0 @@ -562,7 +582,7 @@ Gelenk_Dresmann 18-DR 46 - + 46 53 0 @@ -573,7 +593,7 @@ Gelenk_GFR 18-GF 56 - + 46 53 0 @@ -584,7 +604,7 @@ Taxi_GFR TA-GF 57 - + 4 0 0 @@ -595,7 +615,7 @@ Taxi_Hercher TA-HE 61 - + 4 0 0 @@ -606,7 +626,7 @@ 8Sitzer_Taxizentrale 8S-TZ 66 - + 8 0 0 @@ -617,7 +637,7 @@ Gelenk_SBG 18-SBG 71 - + 55 85 0 @@ -628,7 +648,7 @@ Gelenk_Winterhalter 18-WIN 81 - + 46 53 0 @@ -639,7 +659,7 @@ GT8K_Schülerkurse GT8K 91 - + 91 112 0 @@ -650,7 +670,7 @@ Combino_Schülerkurse Comb 94 - + 79 171 0 @@ -661,7 +681,7 @@ Test-Einrichtung test 29 - + 1 1 0 @@ -672,7 +692,7 @@ Gelenk_VAG-Freiburg 15-VA 15 - + 46 53 0 @@ -683,7 +703,7 @@ 11m_VAG-Freiburg 11-VA 11 - + 34 32 0 @@ -694,7 +714,7 @@ Taxi Klein Klein 16 - + 4 0 0 @@ -705,7 +725,7 @@ Bus_Läufer 11-LÄ 26 - + 46 22 0 @@ -716,7 +736,7 @@ Pseudo-Zählfahrzeug Zähl_F 32 - + 34 32 0 @@ -727,7 +747,7 @@ Sprinter-Winterhalter Sp-WIN 82 - + 14 7 0 @@ -738,7 +758,7 @@ Sprinter_Sutter Sp-SUT 67 - + 26 10 1 @@ -749,7 +769,7 @@ Turmwagen Turm 48 - + 4 0 0 @@ -757,6 +777,35 @@ 0 + + + + Electric bus Type a + + 2000 + + + + + + + + + On board charging equipment + + + + 2 + + + plug + 3-PhaseAC + 240 + 40 + PT2M + PT1M + + @@ -766,6 +815,11 @@ 772 + + + + + @@ -2220,6 +2274,15 @@ + + + + Recharging PointA + + + Recharging Point B + + Einfahrtsbake ---> BH West @@ -44617,6 +44680,20 @@ + + + + Pattern with charging points + + + + + + + + + + Kaiserstuhlstraße Ost (B) @@ -49993,6 +50070,40 @@ 30428 + + + + Bus parking + This is a bus parking + + + + + + + + + + + + + + + + + + + + + + + Recharging equipment available for PPA_ at BAY_A + + + + + + @@ -110502,6 +110613,40 @@ 63 + + + + Recharging plan + powercable + 100 + PT20M + + + 90 + 150 + PT1M + PT8M + PT1M + + + + + + 100 + 200 + PT2M + PT10M + PT1M + + + + + + + + + + diff --git a/xsd/NeTEx_publication.xsd b/xsd/NeTEx_publication.xsd index adf6d57f2..0cd2ec0f5 100644 --- a/xsd/NeTEx_publication.xsd +++ b/xsd/NeTEx_publication.xsd @@ -22,7 +22,7 @@ 2021-01-08NewModes: drop MobilityServiceElement, MobilityServiceElementPrice, add constraint fro ModerRestriction assessment 2020-11-16NewModes: Drop AlternativeTransportOperator 2020-11-06NewMOdes (Norway) Add RelatedOrganisation and reusable Contacts constraints. - 2020-10-14NewModes Add Constraints (NM) + 2020-10-14NewModes Add Constraints Add MobilityServiceFrame, MobilityJourneyFrame. TypeOfProof, TaxiRank, TaxiStand. TypeOfParking ScheduledOperation, FlexibleOperation, VehicleRental, VehicleSharing, VehiclePooling. @@ -717,7 +717,7 @@ Correct COnstraints for PointOnRoute - + @@ -748,7 +748,7 @@ Correct COnstraints for PointOnRoute - + @@ -812,12 +812,12 @@ Correct COnstraints for PointOnRoute - + - + @@ -1136,7 +1136,7 @@ Correct COnstraints for PointOnRoute - + @@ -1501,7 +1501,7 @@ Correct COnstraints for PointOnRoute - + @@ -1522,7 +1522,7 @@ Correct COnstraints for PointOnRoute - + @@ -1543,7 +1543,7 @@ Correct COnstraints for PointOnRoute - + @@ -1564,7 +1564,7 @@ Correct COnstraints for PointOnRoute - + @@ -1585,7 +1585,7 @@ Correct COnstraints for PointOnRoute - + @@ -1606,7 +1606,7 @@ Correct COnstraints for PointOnRoute - + @@ -1627,7 +1627,7 @@ Correct COnstraints for PointOnRoute - + @@ -1648,7 +1648,7 @@ Correct COnstraints for PointOnRoute - + @@ -1712,7 +1712,7 @@ Correct COnstraints for PointOnRoute - + @@ -2480,6 +2480,48 @@ Correct COnstraints for PointOnRoute + + + + + Every [HelpPointEquipment Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [PassengerBeaconEquipment Id + Version] must be unique within document. + + + + + + + + + + + + + + + + @@ -2585,7 +2627,7 @@ Correct COnstraints for PointOnRoute - + @@ -2606,7 +2648,7 @@ Correct COnstraints for PointOnRoute - + @@ -2627,7 +2669,7 @@ Correct COnstraints for PointOnRoute - + @@ -2648,7 +2690,7 @@ Correct COnstraints for PointOnRoute - + @@ -2669,7 +2711,7 @@ Correct COnstraints for PointOnRoute - + @@ -2690,7 +2732,7 @@ Correct COnstraints for PointOnRoute - + @@ -2985,8 +3027,8 @@ Correct COnstraints for PointOnRoute - - + + @@ -3007,7 +3049,7 @@ Correct COnstraints for PointOnRoute - + @@ -3028,7 +3070,7 @@ Correct COnstraints for PointOnRoute - + @@ -3049,7 +3091,7 @@ Correct COnstraints for PointOnRoute - + @@ -3070,7 +3112,7 @@ Correct COnstraints for PointOnRoute - + @@ -3091,7 +3133,7 @@ Correct COnstraints for PointOnRoute - + @@ -3166,291 +3208,1172 @@ Correct COnstraints for PointOnRoute - - - - + + + + + + + + + + + + + + + + + Every [Timeband Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [GroupOfTimebands Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [ServiceCalendar Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + + + Each date is only allowed once per calendar. + + + + + + + + + + + + + + + + + + + + + Every [OperatingPeriod Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + Every [UicOperatingPeriod Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + + Every [DayTypeAssignment Id + Version +order] must be unique within document. + + + + + + + + + + + + + + + + + + + + + + + + Every [ValidityCondition Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Every [Vehicle Id + Version] must be unique within document. + + + + + + + + Every [RegistrationNumber Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [VehicleType Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [SimpleVehicleType Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [RollingStockInventory Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [TrailingRollingStockItem Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [TractiveRollingStockItem Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [TypeOfRollingStockItem Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [PassengerCarryingRequirement Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [FacilityRequirement Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [VehicleManoeuvringRequirement Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [PassengerCapacity Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [PassengerVehicleCapacity Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [TypeOfDriverPermit Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [SpotRow Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [SpotColumn Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [PassengerSpot Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [LuggageSpot Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [PassengerVehicleSpot Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [TypeOfLocatableSpot Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [DeckPlan Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [Deck Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [PassengerSpace Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [OtherDeckSpace Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Every [PassengerEntrance Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [OtherDeckEntrance Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [DeckVehicleEntrance Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [DeckEntranceUsage Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [DeckEntranceCouple Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [DeckLevel Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [DeckCapacity Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [TypeOfDeckSpace Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [TypeOfDeckEntrance Id + Version] must be unique within document. + + + + + + + + - - + + - - - + + + - Every [Timeband Id + Version] must be unique within document. + Every [DeckPlanAssignment Id + Version] must be unique within document. - + - - - + + + - - + + - - - + + + - Every [GroupOfTimebands Id + Version] must be unique within document. + Every [DeckEntranceAssignment Id + Version] must be unique within document. - + - - - + + + - - + + - - - + + + - Every [ServiceCalendar Id + Version] must be unique within document. + Every [SeatEquipment Id + Version] must be unique within document. - + - - - + + + - - + + - - - - - + + + - Each date is only allowed once per calendar. + Every [BedEquipment Id + Version] must be unique within document. - - + + - - - + + + - - + + - - - + + + - Every [OperatingPeriod Id + Version] must be unique within document. + Every [LuggageSpotEquipment Id + Version] must be unique within document. - + - - - + + + - - + + - - + + + - Every [UicOperatingPeriod Id + Version] must be unique within document. + Every [EntranceSensor Id + Version] must be unique within document. - + - - - + + + - - - + + - - - + + + - Every [DayTypeAssignment Id + Version +order] must be unique within document. + Every [SpotSensor Id + Version] must be unique within document. - + - - - - + + + - - - + + - - - - + + + - Every [ValidityCondition Id + Version] must be unique within document. + Every [SensorInEntrance Id + Version] must be unique within document. - + - - - + + + - - + + - - - + + + + + Every [SensorInSpot Id + Version] must be unique within document. + + + + + + + + - - + + - - - - - - + + + - Every [Vehicle Id + Version] must be unique within document. + Every [DeckPathLink Id + Version] must be unique within document. - + - + + + + + + + + + + + + + + - Every [RegistrationNumber Id + Version] must be unique within document. + Every [DeckPathJunction Id + Version] must be unique within document. - - + + - - - + + + - - + + - - - + + + - Every [VehicleType Id + Version] must be unique within document. + Every [DeckNavigationPath Id + Version] must be unique within document. - + - - - + + + - - + + - - - + + + - Every [SimpleVehicleType Id + Version] must be unique within document. + Every [AcceptedDriverPermit Id + Version] must be unique within document. - + - - - + + + - - + + @@ -3496,24 +4419,24 @@ Correct COnstraints for PointOnRoute - - - + + + - Every [ChargingEquipmentProfile Id + Version] must be unique within document. + Every [RechargingEquipmentProfile Id + Version] must be unique within document. - + - - - + + + - - + + @@ -3538,7 +4461,7 @@ Correct COnstraints for PointOnRoute - + @@ -3559,7 +4482,7 @@ Correct COnstraints for PointOnRoute - + @@ -3580,7 +4503,7 @@ Correct COnstraints for PointOnRoute - + @@ -3601,7 +4524,7 @@ Correct COnstraints for PointOnRoute - + @@ -3628,18 +4551,18 @@ Correct COnstraints for PointOnRoute Every [Train Id + Version] must be unique within document. - + - + - + @@ -3665,26 +4588,27 @@ Correct COnstraints for PointOnRoute - - + + - Every [TrainElement Id + Version] must be unique within document. + Every [TrainElementType Id + Version] must be unique within document. - + - - - + + + - - + + + @@ -3773,6 +4697,18 @@ Correct COnstraints for PointOnRoute + + + + + + + + + + + + @@ -3827,6 +4763,27 @@ Correct COnstraints for PointOnRoute + + + + + Every [GroupOfSites Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + Every [SiteStructure Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [LevelInStructure Id + Version _ order] must be unique within document. + + + + + + + + + + + + + + + + + + + @@ -3978,7 +4980,7 @@ Correct COnstraints for PointOnRoute - + @@ -4008,7 +5010,7 @@ Correct COnstraints for PointOnRoute - + @@ -4029,7 +5031,7 @@ Correct COnstraints for PointOnRoute - + @@ -4413,7 +5415,7 @@ Correct COnstraints for PointOnRoute - + @@ -4434,7 +5436,7 @@ Correct COnstraints for PointOnRoute - + @@ -4455,7 +5457,7 @@ Correct COnstraints for PointOnRoute - + @@ -4476,7 +5478,7 @@ Correct COnstraints for PointOnRoute - + @@ -4542,7 +5544,7 @@ Correct COnstraints for PointOnRoute - + @@ -4563,7 +5565,7 @@ Correct COnstraints for PointOnRoute - + @@ -4606,7 +5608,7 @@ Correct COnstraints for PointOnRoute - + @@ -4690,7 +5692,7 @@ Correct COnstraints for PointOnRoute - + @@ -4711,7 +5713,7 @@ Correct COnstraints for PointOnRoute - + @@ -4735,7 +5737,7 @@ Correct COnstraints for PointOnRoute - + @@ -4759,7 +5761,7 @@ Correct COnstraints for PointOnRoute - + @@ -4847,25 +5849,37 @@ Correct COnstraints for PointOnRoute - - - - + + + + - Every [PathLink Id + Version] must be unique within document. + Every [sitePathLink Id + Version] must be unique within document. - + - - + + - - + + + + + + + + + + + + + + @@ -4875,20 +5889,44 @@ Correct COnstraints for PointOnRoute Every [PathJunction Id + Version] must be unique within document. - + - + - + + + + + + + + + Every [PathInstruction Id + Version + order] must be unique within document. + + + + + + + + + + + + + + + + @@ -6000,7 +7038,7 @@ Correct COnstraints for PointOnRoute - + @@ -6021,7 +7059,7 @@ Correct COnstraints for PointOnRoute - + @@ -6349,28 +7387,28 @@ Correct COnstraints for PointOnRoute - - - + + + - Every [VehicleTypeStopAssignment Id + Version] must be unique within document. + Every [VehicleJourneyStopAssignment Id + Version] must be unique within document. - + - - - + + + - - + + - + @@ -6394,7 +7432,7 @@ Correct COnstraints for PointOnRoute - + @@ -6673,18 +7711,18 @@ Correct COnstraints for PointOnRoute Every [ServicePattern Id + Version] must be unique within document. - + - + - + @@ -6938,7 +7976,7 @@ Correct COnstraints for PointOnRoute - + @@ -6959,7 +7997,7 @@ Correct COnstraints for PointOnRoute - + @@ -6983,7 +8021,7 @@ Correct COnstraints for PointOnRoute - + @@ -7004,7 +8042,7 @@ Correct COnstraints for PointOnRoute - + @@ -7853,6 +8891,72 @@ Correct COnstraints for PointOnRoute + + + + + Every [RechargingPointAssignment Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [RechargingPlan Id + Version] must be unique within document. + + + + + + + + + + + + + + + + + + + + + Every [RechargingStep Id + Version + order] must be unique within document. + + + + + + + + + + + + + + + + + + + @@ -9584,7 +10688,7 @@ Correct COnstraints for PointOnRoute - + @@ -9978,7 +11082,7 @@ Correct COnstraints for PointOnRoute - + @@ -9999,7 +11103,7 @@ Correct COnstraints for PointOnRoute - + @@ -10020,7 +11124,7 @@ Correct COnstraints for PointOnRoute - + @@ -10041,7 +11145,7 @@ Correct COnstraints for PointOnRoute - + @@ -10065,7 +11169,7 @@ Correct COnstraints for PointOnRoute - + @@ -10086,7 +11190,7 @@ Correct COnstraints for PointOnRoute - + @@ -10476,7 +11580,7 @@ Correct COnstraints for PointOnRoute - + @@ -10823,7 +11927,7 @@ Correct COnstraints for PointOnRoute - + @@ -10844,7 +11948,7 @@ Correct COnstraints for PointOnRoute - + diff --git a/xsd/NeTEx_publication_timetable.xsd b/xsd/NeTEx_publication_timetable.xsd index ced85fc3d..1014febc1 100644 --- a/xsd/NeTEx_publication_timetable.xsd +++ b/xsd/NeTEx_publication_timetable.xsd @@ -727,12 +727,12 @@ Provides a general purose wrapper for NeTEx data content. - + - + @@ -1030,27 +1030,6 @@ Provides a general purose wrapper for NeTEx data content. - - - - - Every [FareZone Id + Version] must be unique within document. - - - - - - - - - - - - - - - - @@ -3739,67 +3718,67 @@ Provides a general purose wrapper for NeTEx data content. - - - - + + + + - Every [PathLink Id + Version] must be unique within document. + Every [SitePathLink Id + Version] must be unique within document. - + - + - + - - - + + + Every [PathJunction Id + Version] must be unique within document. - + - - + + - - + + - - - + + + - Every [NavigationPath Id + Version] must be unique within document. + Every [SiteNavigationPath Id + Version] must be unique within document. - + - - - + + + - - + + diff --git a/xsd/netex_framework/netex_all_objects_generic.xsd b/xsd/netex_framework/netex_all_objects_generic.xsd index 76367f73f..86043fb4b 100644 --- a/xsd/netex_framework/netex_all_objects_generic.xsd +++ b/xsd/netex_framework/netex_all_objects_generic.xsd @@ -39,6 +39,8 @@ + + diff --git a/xsd/netex_framework/netex_frames/netex_resourceFrame_version.xsd b/xsd/netex_framework/netex_frames/netex_resourceFrame_version.xsd index 133759228..b30ac2f3b 100644 --- a/xsd/netex_framework/netex_frames/netex_resourceFrame_version.xsd +++ b/xsd/netex_framework/netex_frames/netex_resourceFrame_version.xsd @@ -1,5 +1,5 @@ - + @@ -25,6 +25,8 @@ 2020-10-20New Modes Add Facility sets to RESOURCE FRAME. + 2023-02-02Add DECK PLAN CHANGES. +

NeTEx - Network Exchange. This subschema defines RESOURCE FRAME types.

@@ -112,7 +114,10 @@ Rail transport, Roads and Road transport + + + @@ -148,7 +153,7 @@ Rail transport, Roads and Road transport - General Elements of a RESOURCE FRAME. + General Elements of a RESOURCE FRAME. diff --git a/xsd/netex_framework/netex_genericFramework/netex_alternativeName_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_alternativeName_version.xsd index 0acaf4344..f3e9a734d 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_alternativeName_version.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_alternativeName_version.xsd @@ -135,7 +135,7 @@ Rail transport, Roads and Road transport Name of source of the data. - + Order of name. @@ -192,7 +192,7 @@ Rail transport, Roads and Road transport - + Order of name. diff --git a/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd index 4d5409a13..afca57d37 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd @@ -72,9 +72,9 @@ Rail transport, Roads and Road transport - + - Order in which to show an ASSIGNMENT. + Order in which to show an ASSIGNMENT. In some rare cases order makes no sense. The convention should be that order="1" is set then for all elements. diff --git a/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd new file mode 100644 index 000000000..090a45d15 --- /dev/null +++ b/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd @@ -0,0 +1,322 @@ + + + + + + + + + + main schema + e-service developers + Europe + First drafted for version 1.0 CEN TC278 WG3 SG6 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + 2024-01-05Factored out of Ifopt path + + + 2024-01-05 + + +

NeTEx - Network Exchange. This subschema defines PATH types.

+
+ + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_ifopt_path_support.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + Unclassified + CEN, Crown Copyright 2009-2019 + + +
    +
  • Derived from the TRANSMODEL standards.
  • +
+ + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx Network Exchange - PATH identifier types. + Standard +
+
+ NeTEx: Generic PATH identifiertypes. +
+ + + + Type for a list of references to a GENERIC PATH LINK. + + + + + + + + + + + + + Type for identifier of a GENERIC PATH LINK. + + + + + + Reference to a GENERIC PATH LINK. + + + + + Type for a reference to a GENERIC PATH LINK. + + + + + + Identifier of a PATH LINK. + + + + + + + + + Reference to a PATH LINK BY VALUE. + + + + + Type for a reference to a PATH LINK BY VALUE. + + + + + + Identifier of a POINT. at which LINK starts. + + + + + Identifier of a POINT. at which LINK ends. + + + + + Class of POINT referenced by LINK. + + + + + + + + + Type for identifier of a GENERIC PATH JUNCTION. + + + + + + Reference to a PATH JUNCTION. + + + + + Type for a reference to a PATH JUNCTION. + + + + + + Identifier of a PATH JUNCTION. + + + + + + + + + Type for identifier of a PATH INSTRUCTION. + + + + + + Reference to a PATH INSTRUCTION. + + + + + Type for a reference to a PATH INSTRUCTION. + + + + + + + + + + + Type for a list of references to a GENERIC NAVIGATION PATH. + + + + + + + + + + + + Type for identifier of a GENERIC NAVIGATION PATH. + + + + + + Reference to a NAVIGATION PATH. + + + + + Type for reference to a GENERIC NAVIGATION PATH. + + + + + + Identifier of a NAVIGATION PATH. + + + + + + + + + Type for identifier of an ACCESS SUMMARY. + + + + + + + Type for identifier of place step in a GENERIC NAVIGATION PATH. + + + + + + Reference to a PLACE IN SEQUENCE. If given by context does not need to be stated. + + + + + Type for reference to a PLACE IN SEQUENCE. + + + + + + Identifier of a PLACE IN SEQUENCE. + + + + + + + + + Type for a list of references to a PATH LINK. + + + + + + + + + + + + Type for identifier of link step in a PATH LINK IN SEQUENCE. + + + + + + Reference to a PATH LINK IN SEQUENCE. If given by context does not need to be stated. + + + + + Type for Reference to a PATH LINK IN SEQUENCE. + + + + + + Identifier of a PATH LINK IN SEQUENCE. + + + + + + + + + Type for identifier of a PATH LINK VIEW.; + + + + + + + Allowed values for flow direction. + + + + + + + + + Allowed values for path transition. + + + + + + + + + + + + Allowed values for path heading. + + + + + + + + +
diff --git a/xsd/netex_framework/netex_genericFramework/netex_path_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_path_version.xsd new file mode 100644 index 000000000..b653b31dd --- /dev/null +++ b/xsd/netex_framework/netex_genericFramework/netex_path_version.xsd @@ -0,0 +1,618 @@ + + + + + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Roger Slevin [Roger.Slevin@dft.gsi.gov.uk] + Europe + Created as W3C .xsd schema by Nicholas Knowles. as 1.0 XML schema + 2024-02-05Factored out from ifopt_path_link + + 2024-02-18Rename NAVIGATION PATH to NAVIGATION + + + NeTEx Network Exchange - Generic PATH types. + + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_Ifopt_path_version.xsd + [ISO 639-2/B] ENG + CEN TC278 SG6 and Department for Transport, Great Minster House, 76 Marsham Street, London SW1P 4DR + + http://www.netex.org.uk/schemas/1.0/ifopt/netex_ifopt_xxxxx.xsd + + Unclassified + CEN, Crown Copyright 2009-2024 + + +
    +
  • Evolved from NaPTAN, SIRI and other schemas.
  • +
+ + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx Network Exchange (IFOPT subset) - STOP PLACE Schema Place . + Standard +
+
+ NeTEx: GENERIC PATH LINK Model. +
+ + + + A link between any two places that represents a step in a possible route for pedestrians, cyclists or other out of vehicle passengers . Note: a place may be fixed PLACE, that is STOP PLACEs, ACCESS SPACE or QUAY, BOARDING POSITION, POINTs OF INTEREST etc or PATH JUNCTIONs, or a place within a DECK, e.g. DECK, SPACE, DECK ENTRANCE, DECK PATH JUNCTION etc. + + + + + + + + + + + + + + + + + + + + + + + + + + Type for a GENERIC PATH LINK. + + + + + + + + + + + + Elements of a GENERIC PATH LINK. + + + + + Instructions for following PATH LINK. +v2.0 + + + + + + + Duration properties of a GENERIC PATH LINK. NB Cant be move up to on PATH LINK without breakage. revise in V3.0 + + + + + Timings for the transfer. + + + + + + + Type for a PATH LINK END. + + + + + Reference to a PLACE, including QUAY, ACCESS SPACE, BOARDING POSITION or other node of a SITE. + + + + + + + + Elements of a PATH SITE ELEMENT. + + + + + + + + + + Type for a list of PATH JUNCTIONs. + + + + + + + + PATH JUNCTION for a SITE. + + + + + + + + + A designated point, inside or outside of a STOP PLACE or POINT OF INTEREST, at which two or more PATH LINKs may connect or branch. + + + + + + + + + + + + + + + + + + + + + + + + + + Type for a GENERIC PATH JUNCTION. + + + + + + + + + + + + Elements of a GENERIC PATH JUNCTION. + + + + + Instructions for following PATH LINK. +v2.0 + + + + + + + + A VIEW of a PATH LINK used to select items for presentation. + + + + + + + + + + + + Whether link should be hidden in the PATH LINK VIEW. + + + + + Whether destination of PATH LINK should be hidden. + + + + + Whether ENTRANCE on beginning of PATH LINK should be shown as separate step in view. + + + + + Whether exit at end of PATH LINK should be shown as separate step in view. + + + + + Whether heading element should be shown as separate step in view e.g. turn left right. + + + + + + + Identifier of Object of which this is a view. + + + + + + + + + Type for a PATH LINK VIEW. + + + + + + + Whether link should be hidden in the PATH LINK VIEW. + + + + + Whether destination of PATH LINK should be hidden. + + + + + Whether ENTRANCE on beginning of PATH LINK should be shown as separate step in view. + + + + + Whether exit at end of PATH LINK should be shown as separate step in view. + + + + + Whether Heading element should be shown as separate step in view e.g. turn left right. + + + + + + + + + + Type for a list of PATH INSTRUCTIONs. + + + + + + + PATH INSTRUCTION for a PATH LINK. + + + + + + + + + An instruction to a passenger for an individual step when following a PATH LINK. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + + Type for a PATH INSTRUCTION. + + + + + + + + + order of instructions + + + + + + + + Elements of a PATH INSTRUCTION. + + + + + + Heding used in Instruction. + + + + + Distance to use in instruction + + + + + Transition used in instruction. + + + + + Instruction for using path as text. + + + + + + + + A collection of one or more PATH LINKs in SEQUENCE. + + + + + + + + + + + + A step of a NAVIGATION PATH indicating traversal of a particular PATH LINK as part of a recommended route. +The same PATH LINK may occur in different sequences in different NAVIGATION PATHs. + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a PATH LINK IN SEQUENCE. + + + + + + + + + + + + Elements of a PATH LINK IN SEQUENCE. + + + + + + Description of reference. + + + + + Whether link is navigated in to / from, i.e. reverse direction . Default is false, i.e. from to. + + + + + Whether step is left right or forward. + + + + + Whether step is up down or level in direction of use. + + + + + Instruction for following path + + + + + Label on step. + + + + + Instructions on how step view should be presented. + + + + + + + + + + + + + A collection of one or more PLACEs in SEQUENCE. + + + + + + + + + + + + Point traversed by a NAVIGATION PATH in sequence. May be a PLACE PATH JUNCTION or POINT. + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a PLACE in SEQUENCE. + + + + + + + + + + + + Elements of PLACE in SEQUENCE. + + + + + Reference to a Place or Site Component , that is QUAY, ACCESS SPACE or BOARDING POSITION or PATH JUNCTION. + + + + + Branching level of place. + + + + + Onward links from this point. + + + + + + + + + + + + + A designated path between two places. May include an ordered sequence of PATH LINKs. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + Type for NAVIGATION. + + + + + + + + + + + + Elements of a GENERIC NAVIGATION PATH. +v2.0 + + + + +
diff --git a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd index 7cfddd0c3..a14f84e87 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd @@ -189,7 +189,7 @@ Rail transport, Roads and Road transport - + Order of point on link. diff --git a/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd index 327247dcd..51a42a83a 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd @@ -1,6 +1,7 @@ - + + @@ -14,8 +15,7 @@ 2011-02-05 - - 2010-11-05 + 2023-13-11Add GROUPP OF TARIFF ZONES

NeTEx - Network Exchange. This subschema defines ZONE types.

@@ -29,8 +29,7 @@ [ISO 639-2/B] ENG Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX Unclassified - CEN, Crown Copyright 2009-2014 - + CEN, Crown Copyright 2009-2014
  • Derived from the Transmodel, VDV, TransXChange, NaPTAN, NOPTIS, BISON and Trident standards.
  • @@ -54,7 +53,7 @@ Rail transport, Roads and Road transport ZONE identifier types for NeTEx. - + Type for identifier of a ZONE. @@ -75,8 +74,6 @@ Rail transport, Roads and Road transport - - @@ -85,7 +82,7 @@ Rail transport, Roads and Road transport - + Dummy type Reference to a TARIFF ZONE. @@ -102,9 +99,9 @@ Rail transport, Roads and Road transport Reference to a TARIFF ZONE. - + - + @@ -165,5 +162,24 @@ Rail transport, Roads and Road transport + + + + Type for identifier of a GROUP OF TARIFF ZONEs. + + + + + + Type for a list of GROUP OF TARIFF ZONEs. + + + + + + + + + diff --git a/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd index 51c94f315..7d8af01a2 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd @@ -1,5 +1,5 @@ - + @@ -92,7 +92,7 @@ Rail transport, Roads and Road transport - + A two-dimensional PLACE within the service area of a public transport operator (administrative zone, TARIFF ZONE, ACCESS ZONE, etc.). @@ -144,7 +144,7 @@ Rail transport, Roads and Road transport - + A GENERAL ZONE used to define a zonal fare structure in a zone-counting or zone-matrix system. @@ -328,12 +328,6 @@ Rail transport, Roads and Road transport - - - Type for identifier of a GROUP OF TARIFF ZONEs. - - - diff --git a/xsd/netex_framework/netex_responsibility/netex_alternativeText_version.xsd b/xsd/netex_framework/netex_responsibility/netex_alternativeText_version.xsd index 6dda91759..1c7e42997 100644 --- a/xsd/netex_framework/netex_responsibility/netex_alternativeText_version.xsd +++ b/xsd/netex_framework/netex_responsibility/netex_alternativeText_version.xsd @@ -137,7 +137,7 @@ Rail transport, Roads and Road transport Name of language for which this is to be used. - + Order of name. diff --git a/xsd/netex_framework/netex_responsibility/netex_relationship_support.xsd b/xsd/netex_framework/netex_responsibility/netex_relationship_support.xsd index 1a7238b34..65972a6d8 100644 --- a/xsd/netex_framework/netex_responsibility/netex_relationship_support.xsd +++ b/xsd/netex_framework/netex_responsibility/netex_relationship_support.xsd @@ -131,7 +131,7 @@ Rail transport, Roads and Road transport - + Order of element. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_all_objects_reusableComponents.xsd b/xsd/netex_framework/netex_reusableComponents/netex_all_objects_reusableComponents.xsd index 6fed2db4c..9aa003d21 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_all_objects_reusableComponents.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_all_objects_reusableComponents.xsd @@ -1,5 +1,5 @@ - + @@ -21,6 +21,10 @@ + + + + @@ -42,6 +46,7 @@ + @@ -55,4 +60,17 @@ + + + + + + + + + + + + + diff --git a/xsd/netex_framework/netex_reusableComponents/netex_deckPath_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_deckPath_support.xsd new file mode 100644 index 000000000..5c86af512 --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_deckPath_support.xsd @@ -0,0 +1,184 @@ + + + + + + + + main schema + e-service developers + Europe + First drafted for version 1.0 CEN TC278 WG3 SG6 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2024-01-18 + + 2024-01-18Move from Part1 Ifoft and bas on generic + + +

    NeTEx - Network Exchange. This subschema defines DECK NAVIGATH PATH types.

    +
    + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_ifopt_path_support.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + Unclassified + CEN, Crown Copyright 2009-2024 + + +
      +
    • Derived from the TRANSMODEL standards.
    • +
    + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx Network Exchange - DECK PATH identifier types. + Standard +
    +
    + NeTEx: DECK PATH LINK identifier types for NeTEx. +
    + + + + Type for identifier of a DECK PATH LINK. + + + + + + Reference to a DECK PATH LINK. + + + + + Type for a reference to a DECK PATH LINK. + + + + + + Identifier of a DECK PATH LINK. + + + + + + + + + Type for identifier of a DECK PATH JUNCTION. + + + + + + Reference to a DECK PATH JUNCTION. + + + + + Type for a reference to a DECK PATH JUNCTION. + + + + + + Identifier of a PATH JUNCTION. + + + + + + + + + Type for identifier of place step in a NAVIGATION PATH. + + + + + + Reference to a DECK PLACE IN SEQUENCE. If given by context does not need to be stated. + + + + + Type for reference to a DECK PLACE IN SEQUENCE. + + + + + + Identifier of a DECK PLACE IN SEQUENCE. + + + + + + + + + Type for a list of references to a DECK NAVIGATION PATH. + + + + + + + + + + + + Type for identifier of a DECK NAVIGATION PATH. + + + + + + Reference to a DECK NAVIGATION PATH. + + + + + Type for reference to a DECK NAVIGATION PATH. + + + + + + Identifier of a DECK NAVIGATION PATH. + + + + + + + + Allowed values for DECK NAVIGATION PATH type. + + + + + + + + + + + +
    diff --git a/xsd/netex_framework/netex_reusableComponents/netex_deckPath_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_deckPath_version.xsd new file mode 100644 index 000000000..956d4ec45 --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_deckPath_version.xsd @@ -0,0 +1,514 @@ + + + + + + + + + + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Roger Slevin [Roger.Slevin@dft.gsi.gov.uk] + Europe + Created as W3C .xsd schema by Nicholas Knowles. as 1.0 XML schema + + 2024-01-17 + + 2024-02-18Norway review comment - Add Window types. + + + NeTEx Network Exchange - DECK PATH LINK types. +

    +

    +
    + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_deckPathLink_version.xsd + [ISO 639-2/B] ENG + CEN TC278 SG6 and Department for Transport, Great Minster House, 76 Marsham Street, London SW1P 4DR + + http://www.netex.org.uk/schemas/1.0/ifopt/netex_ifopt_xxxxx.xsd + + Unclassified + CEN, Crown Copyright 2009-2024 + + +
      +
    • Evolved from Transmodel standard.
    • +
    + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx Network Exchange DECK PATH LINK Types . + Standard +
    +
    + NeTEx: DECK PATH LINK and NAVIGATION PATH Model. +
    + + + + Deck Path elemenst fro DECK + + + + + PATH JUNCTIONs for DECK + + + + + PATH LINKs for DECK + + + + + NAVIGATION PATHs for DECK + + + + + + + + Type for a list of DECK PATH LINKs. + + + + + + + + PATH LINK for a DECK + + + + + + + + + A link within a DECK PLAN that represents a step in a possible route for pedestrians, wheelchair users or other out-of-vehicle passengers. +V2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a DECK PATH LINK. + + + + + + + + + + + + + + Elements of a DECK PATH LINK. + + + + + Additional public label for the DECK PATH LINK + + + + + Start point of DECK PATH LINK. + + + + + Start point of DECK PATH LINK. + + + + + + + DECK COMPONENT elements of a DECK PATH LINK. + + + + + + + + + Impediments to navigation from processes or barriers. For example security, check in etc. + + + + + + + + + Beginning or end of a DECK PATH LINK, referencing a DECK COMPONENT or LOCATABLE SPOT. May be linked to a specific DECK LEVEL. +V2.0 + + + + + + + + + + + Valid endpoint on a DECK, either a DECK ENTRANCE, LOCATABLE SPOT + + + + + + + + + + + + + + + + Type for a list of DECK PATH JUNCTIONs. + + + + + + + DECK PATH JUNCTION for a DECK. + + + + + + + + + A designated point, inside a DECK SPACE , at which two or more DECK PATH LINKs may connect or branch. +V2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + Type for a DECK PATH JUNCTION + + + + + + + + + + + + Elements of a DECK PATH JUNCTION. + + + + + Elements of a SITE ELEMENTs. + + + + + Additional Label of DECK PATH JUNCTION. + + + + + + + + Elements of a DECK PATH LINK. + + + + + + + + + + + A collection of one or more PLACEs in SEQUENCE. + + + + + + + Deck place traversed by a DECK NAVIGATION PATH in sequence. May be a DECK PLACE, PATH JUNCTION or POINT. + + + + + + + + + Point traversed by a NAVIGATION PATH in sequence. May be a PLACE PATH JUNCTION or EQUIPABLE SPACE. + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a DECK PLACE IN SEQUENCE. + + + + + + + + + + + + Elements of DECK PLACE IN SEQUENCE. + + + + + + + Branching level of place. + + + + + Onward links from this point. + + + + + + + + Type for a list of DECK NAVIGATION PATHs. + + + + + + + DECK NAVIGATION PATH for a DECK. + + + + + + + + + A designated path between two places within a DECK PLAN. May include an ordered sequence of DECK PATH LINKs. +v2.0 + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for DECK NAVIGATION PATH. + + + + + + + + + + + + Elements of a DECK NAVIGATION PATH. + + + + + + + Classification of Overall Accessibility of NAVIGATION PATH. + + + + + Classification of DECK NAVIGATION.. + + + + + Ordered collection of References to STOP PLACE spaces Use for a branch path. + + + + + Ordered collection of References to PATH LINKs. + + + + + + + Elements of a DECK NAVIGATION PATH that summarise properties o the set of PATH LINKs. Will state the strictest constraint found . e.g. if any link forbids wheelchair, the DECK NAVIGATION PATH forbids wheelchair. + + + + + Origin end of DECK NAVIGATION path. Only needed if detailed PATH LINKs are not given. + + + + + Destination end of DECK NAVIGATION PATH. Only needed if detailed PATH LINKs not given. + + + + + + + + + Detailed properties of a DECK ELEMENT, these are simialr to properties of a SITE ELEMENT. + + + + + + Presentation defaults for DECK ELEMENT. +V2.0 + + + + + Facilities available at SITe. + + + + + +
    diff --git a/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_support.xsd new file mode 100644 index 000000000..b55a3e12a --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_support.xsd @@ -0,0 +1,670 @@ + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-01-30 + + 2023-12-08Move SENSOR IN ENTRANCE to here + + 2024-01-11Revise enum values + + 2024-02-18Norway review comment - Add Window types. + + +

    NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

    +

    This sub-schema describes the DECK PLAN types.

    +
    + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_deckPlan_support.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + + Unclassified + CEN, Crown Copyright 2023-2023 + + +
      +
    • Derived from the Transmodel standards.
    • +
    + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx DECK PLAN types. + Standard +
    +
    + DECK PLAN identifier types +
    + + + + Type for a list of DECK PLANs. + + + + + + + + + + + + Type for identifier of a DECK PLAN. + + + + + + Reference to a DECK PLAN. +v2.0 + + + + + Type for a reference to a DECK PLAN. + + + + + + Identifier of a DECK PLAN. + + + + + + + + + Type for a list of DECKs. + + + + + + + + + + + + Type for identifier of a DECK. + + + + + + Reference to a DECK. +v2.0 + + + + + Type for a reference to a DECK. + + + + + + Identifier of a DECK. + + + + + + + + + Type for identifier of a DECK COMPONENT. + + + + + + Reference to a DECK COMPONENT. +v2.0 + + + + + Type for a reference to a DECK COMPONENT. + + + + + + Identifier of referenced entity. + + + + + + + + + Type for identifier of a DECK SPACE. + + + + + + Reference to a DECK SPACE. +v2.0 + + + + + Type for a reference to a DECK SPACE. + + + + + + Identifier of a DECK SPACE. + + + + + + + + + Type for identifier of a PASSENGER SPACE. + + + + + + Reference to a PASSENGER SPACE. +v2.0 + + + + + Type for a reference to a PASSENGER SPACE. + + + + + + Identifier of a PASSENGER SPACE. + + + + + + + + Allowed values for TYPE OF PASSENGER SPACE. + + + + + + + + + + + + + + + + Allowed values for TYPE OF OTHER OTHER SPACE. + + + + + + + + + + + + + Type for identifier of a OTHER DECK SPACE. + + + + + + Reference to a OTHER DECK SPACE. +v2.0 + + + + + Type for a reference to a OTHER DECK SPACE. + + + + + + Identifier of a OTHER DECK SPACE. + + + + + + + + + Type for identifier of a DECK ENTRANCE. + + + + + + Reference to a DECK ENTRANCE. +v2.0 + + + + + Type for a reference to a DECK ENTRANCE. + + + + + + Identifier of a DECK ENTRANCE. + + + + + + + + Allowed values for type of DECK ENTRANCE. + + + + + Door gives external access to VEHICLE. + + + + + + + + + Allowed values for Relation to vehicle of Entrance. + + + + + Entrance is on left side of VEHICLE. + + + + + Entrance is on right side of VEHICLE. + + + + + Entrance is on front end of VEHICLE. + + + + + Entrance is on back end of VEHICLE. + + + + + Entrance is interior to VEHICLE. + + + + + Entrance is above VEHICLE. + + + + + Entrance is below VEHICLE. + + + + + + + + Type for identifier of a PASSENGER ENTRANCE. + + + + + + Reference to a PASSENGER ENTRANCE. +v2.0 + + + + + Type for a reference to a PASSENGER ENTRANCE. + + + + + + Identifier of a PASSENGER ENTRANCE. + + + + + + + + + Type for identifier of a DECK VEHICLE ENTRANCE. + + + + + + Reference to a DECK VEHICLE ENTRANCE. +v2.0 + + + + + Type for a reference to a DECK VEHICLE ENTRANCE. + + + + + + Identifier of a DECK VEHICLE ENTRANCE. + + + + + + + + + Type for identifier of a OTHER DECK ENTRANCE. + + + + + + Reference to an OTHER DECK ENTRANCE. +v2.0 + + + + + Type for a reference to a OTHER DECK ENTRANCE. + + + + + + Identifier of a OTHER DECK ENTRANCE. + + + + + + + + + Type for identifier of a DECK ENTRANCE USAGE. + + + + + + Reference to a DECK ENTRANCE USAGE. +v2.0 + + + + + Type for a reference to a DECK ENTRANCE USAGE. + + + + + + Identifier of a DECK ENTRANCE USAGE. + + + + + + + + Allowed values for type of DECK ENTRANCE Usage.. + + + + + + + + + + + Allowed values for type of DECK ENTRANCE setting.. + + + + + + + + + + + Type for identifier of a DECK ENTRANCE COUPLE. + + + + + + Reference to a DECK ENTRANCE COUPLE. +v2.0 + + + + + Type for a reference to a DECK ENTRANCE COUPLE. + + + + + + Identifier of a DECK ENTRANCE COUPLE. + + + + + + + + + Type for identifier of a DECK WINDOW. + + + + + + Reference to a DECK WINDOW. +v2.0 + + + + + Type for a reference to a DECK WINDOW. + + + + + + Identifier of a DECK WINDOW. + + + + + + + + Allowed values for TYPE OF DECK WINDOW. + + + + + Window is interspaced by solid separators. + + + + + Window is interspaced by solid separators. + + + + + Window is a large panorama window. + + + + + Window is a porthole shaped window. + + + + + WOther type of Window. + + + + + + + + Type for identifier of a DECK LEVEL. + + + + + + Reference to a DECK LEVEL. +v2.0 + + + + + Type for a reference to a DECK LEVEL. + + + + + + Identifier of a DECK LEVEL. + + + + + + + + + Type for identifier of a DECK SPACE CAPACITY. + + + + + + Reference to a DECK SPACE CAPACITY. +v2.0 + + + + + Type for a reference to a DECK SPACE CAPACITY. + + + + + + Identifier of a DECK SPACE CAPACITY. + + + + + + + + + Type for identifier of a TYPE OF DECK SPACE PROFILE. + + + + + + Reference to a TYPE OF DECK SPACE PROFILE. +v2.0 + + + + + Type for a reference to a TYPE OF DECK SPACE PROFILE. + + + + + + Reference to a TYPE OF DECK SPACE PROFILE. + + + + + + + + + Type for identifier of a TYPE OF DECK ENTRANCE. + + + + + + Reference to a TYPE OF DECK ENTRANCE. +v2.0 + + + + + Type for a reference to a TYPE OF DECK ENTRANCE. + + + + + + Reference to a TYPE OF DECK ENTRANCE. + + + + + + +
    diff --git a/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_version.xsd new file mode 100644 index 000000000..59846e129 --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_version.xsd @@ -0,0 +1,1452 @@ + + + + + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-01-30 + + 2023-01-30 + Name Space changes + + 2023-12-08Move SENSOR IN ENTRANCE to here + + 2024-02-09Add locatbale spot range for usage. + + 2024-02-18Norway review comment - Add Window types. + + +

    NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

    +

    This sub-schema describes the DECK PLAN types.

    +
    + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_deckPlan_version.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + + Unclassified + CEN, Crown Copyright 2022-2023 + + +
      +
    • Derived from the Transmodel, standards.
    • +
    + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx DECK PLAN types. + Standard +
    +
    + DECK PLAN data types +
    + + + + Elements for a DECK PLAN in Frame. + + + + + A List OF DECK PLANs + + + + + + + + Type for containment in frame of DECK PLANs. + + + + + + + + + + + + A plan for the layout of seating and other areas of use of an entire VEHICLE (train, coach, vessel etc.) or individual TRAIN ELEMENT for all or part of a journey. +v2.0 + + + + + + + + + + + + + + + + + + Identifier of DECK PLAN. + + + + + + + + + Type for a DECK PLAN. + + + + + + + + + + + + Elements for a DECK PLAN. + + + + + Name of DECK PLAN. + + + + + Description of DECK PLAN. + + + + + Description of DECK PLAN. + + + + + VALIDITY CONDITIONs used to configure DECK PLAN + + + + + DECK LEVELs in DECK PLAN. + + + + + DECKs in DECK PLAN. + + + + + + + + Type for a list of DECKs. + + + + + + + + + + + + An area within a VEHICLE (i.e. bus, boat, coach, car, plan, etc.) or TRAIN ELEMENT made up of one or more DECK SPACEs. A subdivision of a DECK PLAN. +V2.0 + + + + + + + + + + + + + + + + Identifier of VEHICLE EQUIPMENT PROFILE. + + + + + + + + + Type for a DECK. + + + + + + Elements for an DECK. + + + + + + + + Elements for a DECK. + + + + + Name of DECK. + + + + + Name of DECK. + + + + + + DECK SPACEs in DECK PLAN. + + + + + Rows on DECK. + + + + + COLUMNs on DECK. + + + + + + + + + An abstract element providing common features for spatially located elements within the DECK PLAN. +v2.0 + + + + + Type for a DECK COMPONENT. + + + + + + + Elements for a DECK COMPONENT. + + + + + + + + + Elements for a DECK COMPONENT. + + + + + Whether DECK COMPONENT is for public use. Default is true. + + + + + + + Edit care class for which capacity is specifyed. Default is any, i.e. capacity is for all classes. + + + + + + + + + Type for a list of DECK SPACEs. + + + + + + + + + + + + + Dummy type to work around SG limitations + + + + + An area within a VEHICLE (i.e. bus, boat, coach, car) or TRAIN ELEMENT delimiting a particular use such as seating, WC, bar, gangway, etc. May be specialised, e.g. as PASSENGER SPACE; may contain other spaces. Different types of space may overlap. +v2.0. + + + + + + + + + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + Elements for a PASSENGER CARRYING REQUIREMENT TYPE. + + + + + + + + + + Identifier of DECK SPACE. + + + + + + + + + Type for a DECK SPACE. + + + + + + + + + + + + Elements for a DECK SPACE. + + + + + Whether DECK SPACE is covered. Default is true. + + + + + Whether DECK SPACE is airconditioned. + + + + + Whether smoking is allowed in DECK SPACE. Defaukts is false. + + + + + + Deck space containing this deck space + + + + + + The total capacity of people for the DECK SPACE. + + + + + Capacities of DECK SPACE. + + + + + + + Elements for a DECK SPACE. + + + + + DECK ENTRANCEs to DECK SPACE. + + + + + DECK ENTRANCE COUPLEs for DECK SPACE. + + + + + DECK ENTRANCE USAGEs for DECK SPACE. + + + + + DECK WINDOWs on DECK SPACE. + + + + + + + + Type for a list of PASSENGER SPACEs. + + + + + + + + + + + + + A specialisation of DECK SPACE defining an area within a VEHICLE (i.e. bus, boat, coach, car) or TRAIN ELEMENT for use by passengers. +v2.0 + + + + + + + + + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + Elements for a PASSENGER CARRYING REQUIREMENT TYPE. + + + + + + + + + + + + + Identifier of PASSENGER SPACE. + + + + + + + + + Type for a PASSENGER SPACE. + + + + + + + + + + + + Elements for a PASSENGER SPACE. + + + + + Whether standing is allowed in DECK SPACE. + + + + + PASSENGER SPOTs, i.e. seats in PASSENGER SPACE. + + + + + LUGGAGE SPOTS in PASSENGER SPACE. + + + + + PASSENGER VEHICLE SPOTs in PASSENGER SPACE. + + + + + SPOT AFFINITies in PASSENGER SPACE. + + + + + + + + Type for a list of OTHER DECK SPACEs. + + + + + + + + + + + + + A specialisation of DECK SPACE defining an area within a VEHICLE (i.e. bus, boat, coach, car) or TRAIN ELEMENT for restricted use, such as a crew area. +v2.0 + + + + + + + + + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + Elements for a PASSENGER CARRYING REQUIREMENT TYPE. + + + + + + + + + + + + + Identifier of OTHER DECK SPACE. + + + + + + + + + Type for a OTHER DECK SPACE. + + + + + + + + + + + + Elements for a OTHER DECK SPACE. + + + + + + + Dummy type to work around SG limitations + + + + + Type for a list of DECK ENTRANCEs. + + + + + + + + + + + + + An entrance to or within a DECK. +v2.0 + + + + + + + + + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + Elements for a DECK COMPONENT. + + + + + + + + + + Identifier of DECK ENTRANCE. + + + + + + + + + Type for a DECK ENTRANCE. + + + + + + + + + + + + Elements for a DECK ENTRANCE. + + + + + + Classification elements for a DECK ENTRANCE. + + + + + ENTRANCE SENSORS in the DECK ENTRANCE. + + + + + + + Positional ements for a DECK ENTRANCE. + + + + + Side of ENTRANCE relative to forward orientation of VEHICLE. + + + + + Distance of forward edge of door from front of Vehicle.. + + + + + Positional sequence of door from front (orr left side end) of VEHICLE. 1 - forward, + + + + + Height of ENTRANCE from ground. + + + + + + + EClassification lements for a DECK ENTRANCE. + + + + + Type of DECK ENTRANCE. + + + + + + Whether the door is an emergency Exit. + + + + + Whether the door is automatic. + + + + + Whether the door is automatic. + + + + + + + + A normal entrance for passengers to or within a DECK. +v2.0 + + + + + + + + + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + Elements for a PASSENGER CARRYING REQUIREMENT TYPE. + + + + + + + + + + + + + Identifier of PASSENGER ENTRANCE. + + + + + + + + + Type for a PASSENGER ENTRANCE. + + + + + + + + + + + + Elements for a PASSENGER ENTRANCE. + + + + + + + A normal entrance for passengers to or within a DECK. +v2.0 + + + + + + + + + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + Elements for a PASSENGER CARRYING REQUIREMENT TYPE. + + + + + + + + + + + + + Identifier of DECK VEHICLE ENTRANCE. + + + + + + + + + Type for a DECK VEHICLE ENTRANCE. + + + + + + + + + + + + Elements for a DECK VEHICLE ENTRANCE. + + + + + TYPES OF VEHICLE that may use VEHICLE ENTRANCE. + + + + + Vehicle categories that may use VEHICLE ENTRANCE. + + + + + + + + An entrance to or within a DECK for use for other purposes than normal passenger access. E.g. crew, emergency exit, etc. +v2.0 + + + + + + + + + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + Elements for a PASSENGER CARRYING REQUIREMENT TYPE. + + + + + + + + + + + + + Identifier of OTHER DECK ENTRANCE. + + + + + + + + + Type for a OTHER DECK ENTRANCE. + + + + + + + + + + + + Elements for a OTHER DECK ENTRANCE. + + + + + + + Type for a list of DECK ENTRANCE USAGEs. + + + + + + + + + + + + Permitted usage of a specific PASSENGER ENTRANCE to access a particular DECK SPACE. +v2.0 + + + + + + + + + + + + + + + + Identifier of VEHICLE EQUIPMENT PROILE. + + + + + + + + + Type for a DECK ENTRANCE USAGE. + + + + + + + + + + Elements for a DECK ENTRANCE USAGE. + + + + + Name of DECK ENTRANCE USAGE. + + + + + Description of DECK ENTRANCE USAGE. + + + + + Nature of usage: entry, exit etc. See allowed values. Default is entryAndExit. + + + + + Whether door is kept open, shut or locked. See allowed values. Default is shut. + + + + + Whether door is normally locked for safety when in motiion. Default is true. + + + + + + + + + + Type for a list of DECK ENTRANCE COUPLEs. + + + + + + + + + + + + Explicit linking of a pair of DECK ENTRANCEs, e.g. between train carriages. +v2.0 + + + + + + + + + + + + + + + + Identifier of DECK ENTRANCE COUPLE. + + + + + + + + + Type for a DECK ENTRANCE COUPLE. + + + + + + + + + + Elements for a DECK ENTRANCE COUPLE.. + + + + + Name of DECK ENTRANCE COUPLE. + + + + + DECK ENTRANCE from which couple links.. + + + + + DECK ENTRANCE to which couple links.. + + + + + + + + Type for a list of DECK WINDOWs. + + + + + + + + + + + + + A window onto a DECK SPACE. +v2.0 + + + + + + + + + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + Elements for a PASSENGER CARRYING REQUIREMENT TYPE. + + + + + + + + + + Identifier of DECK WINDOW. + + + + + + + + + Type for a DECK WINDOW. + + + + + + + + + + + + Elements for a DECK WINDOW. + + + + + Sequence of window from the front of the DECK. + + + + + Distance of Window from front of DECK + + + + + Height of Window from floor of of DECK + + + + + Side of WINDOW relative to forward orientation of VEHICLE. + + + + + Classification of DECK WINDOW. + + + + + Whether window has blind. + + + + + Whether window can be opened. + + + + + + + + Type for a list of DECK LEVELs. + + + + + + + + + + + + An identified level (1, 2 , 3, etc.) within the DECK PLAN of a VEHICLE (boat, train, airplane, etc.) +v2.0 + + + + + + + + + + + + + + + + + + Identifier of DECK LEVEL. + + + + + + + + + Type for a DECK LEVEL. + + + + + + + + + + + + Elements for a DECK LEVEL. + + + + + Label of DECK LEVEL. + + + + + Name of DECK. + + + + + Description of DECK. + + + + + Whether DECK is for public use. + + + + + + + + Type for a list of DECK SPACE CAPACITies. + + + + + + + + + + + + The capacity of a DECK SPACE for passengers and other payload in terms of TYPES OF LOCATABLE SPOTs. +v2.0 + + + + + + + + + + + + + + + + + + Identifier of DECK SPACE CAPACITY. + + + + + + + + + Type for a DECK SPACE CAPACITY. + + + + + + + + + + + + Elements for a DECK SPACE CAPACITY. + + + + + Name of capacitty + + + + + Type of Locatable Spot for which this is the capacity. + + + + + + The total capacity for passengers or vehciles of the type. + + + + + + + + Classification for DECK SPACE, e.g. as WC, Restaurant, luggage area, etc. +v2.0 + + + + + + + + + + + + + + + + + + Identifier of TYPE OF DECK SPACE. + + + + + + + + + Type for a TYPE OF DECK SPACE. + + + + + + + + + Classification for DECK ENTRANCE. +v2.0 + + + + + + + + + + + + + + + + + + Identifier of PURPOSE OF EQUIMENT PROFILE. + + + + + + + + + Type for a TYPE OF DECK ENTRANCE. + + + + + + +
    diff --git a/xsd/netex_framework/netex_reusableComponents/netex_environment_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_environment_support.xsd new file mode 100644 index 000000000..f95608cd4 --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_environment_support.xsd @@ -0,0 +1,501 @@ + + + + + + + + + main schema + e-service developers + Europe + First drafted for version 1.0 CEN TC278 WG3 SG6 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + 2024-02-05PATH Factored generic enums out of Ifopt paths and other files ast to share with DECK PATH LINK etc + + + 2024-02-05 + + +

    NeTEx - Network Exchange. This subschema defines common access enumeration types.

    +
    + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_environent_support.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + Unclassified + CEN, Crown Copyright 2009-2019 + + +
      +
    • Derived from the TRANSMODEL standards.
    • +
    + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx Network Exchange - PATH identifier types. + Standard +
    +
    + Environment enumerations for Generic PATH and PLACE and SITE models +
    + + + + + + Common elements of a PATH. + + + + + + + Maximum number of passengers who can traverse PATH LINK per minute. + + + + + + + Common Navigation elements of a PATH. + + + + + Direction heading to show for PATH LINK when travelling in its FROM / TO sense. + + + + + Direction heading to show for PATH LINK when travelling in its TO / FROM sense. + + + + + Number of steps to take PATH LINK. + + + + + Minimum Height of PATH LINK. +v1.1 + + + + + Minimum Width of PATH LINK. +v1.1 + + + + + Allowed direction of use: one way or two way. Default is two way. + + + + + Whether PATH LINK is up down or level in from to direction. + + + + + Maximum gradient in degrees (in the direction of the PATH LINK way). +v1.1 + + + + + Coded value of the maximum gradient.+v1.1 + + + + + Maximum Tilt angle in degrees between -20 and 20 (in the direction of the PATH LINK way). +v1.1 + + + + + Coded value of the maximum tilt. See allowed va;ues. +v1.1 + + + + + + + Common Description elements of a PATH. + + + + + Type of physical feature of PATH LINK. + + + + + Type of passage feature of PATH LINK. + + + + + Type of flooring of the walking surface. +v1.1 + + + + + Status of the flooring. + + + + + Type of border on the right side (in the direction of the PATH LINK). + + + + + Type of border on the left side (in the direction of the PATH LINK). +v1.1 + + + + + Nature of the tactile warning strips (in the direction of the PATH LINK). +v1.1 + + + + + Indicates whether the color of the possible warning strip is sufficiently contrasted with the color of the floor. + + + + + Indicates whether there are guiding strips. +v1.1 + + + + + Provides additional details on possible guiding strip. + + + + + + + + Environmental properties of a SITE ELEMENT o DECK ELEMENTr + + + + + Whether the component is available for public use or is restricted. + + + + + Whether the component is Indoors or outdoors. Default is Indoors. + + + + + Whether the component is within a gated area or freely accessible without a pass or ticket. + + + + + Whether the component is lit or not. Default is well Lit. + + + + + Whether all areas of the component are wheelchair accessible. + + + + + Total number of people that component can contain. + + + + + + + + Allowed values for Navigation type. + + + + + + + + + + + + + + + + + + + + Allowed values for Gradient steepness. + + + + + + + + + + + + + Allowed values for tilt. +v1.1 + + + + + + + + + + + + + Allowed values for flooring. + + + + + + + + + + + + + + + + + + + + + + + + + + Allowed values for border types + + + + + + + + + + + + + + + + + + + + + + + + + + Allowed values for the status of the flooring. + + + + + + + + + + + + Allowed values for TactileWarningStrip. + + + + + + + + + + + + Allowed values for the status of the Tactile Guiding Strip. + + + + + When the guiding strip has the expected quality level. + + + + + When there is no guiding strip as such but a decorative element or ledge can be used for this purpose. + + + + + When there is a guiding strip but it does not correspond to a path that can actually be used (passes through the middle of an obstacle without going around it for example). + + + + + When the guiding strip is degraded and difficult to interpret. + + + + + + + + Allowed values for an access feature. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Allowed values for a list of access features. + + + + + + + Allowed value for Lighting. + + + + + + + + + + + + Allowed values for public use. + + + + + + + + + + + + Allowed values for covered. + + + + + + + + + + + + Allowed values for gated. + + + + + + + + + + Allowed values for ACCESS SPACE TYPEs. + + + + + + + + + + + + + + + + + + + + + + + Allowed values for Passage Types. + + + + + + + + + + + +
    diff --git a/xsd/netex_framework/netex_reusableComponents/netex_environment_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_environment_version.xsd new file mode 100644 index 000000000..136a07360 --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_environment_version.xsd @@ -0,0 +1,157 @@ + + + + + + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Roger Slevin [Roger.Slevin@dft.gsi.gov.uk] + Europe + Created as W3C .xsd schema by Nicholas Knowles. as 1.0 XML schema + 2024-01-06Factored ot soas to shaer common PTAH LINK featres with DECK PATH LINK + + + 2024-01-06 + + + NeTEx Network Exchange - Shared PATH types. + + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_environment_version.xsd + [ISO 639-2/B] ENG + CEN TC278 SG6 and Department for Transport, Great Minster House, 76 Marsham Street, London SW1P 4DR + + http://www.netex.org.uk/schemas/1.0/ifopt/netex_ifopt_xxxxx.xsd + + Unclassified + CEN, Crown Copyright 2009-2024 + + +
      +
    • Evolved from NaPTAN, SIRI and other schemas.
    • +
    + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx Network Exchange (IFOPT subset) - NAVIGATION PATH types. + Standard +
    +
    + Shared PATH features Model. +
    + + + + A collection of one or more ACCESS SUMMARies. + + + + + + + + + + + + Summary of a feature used in NAVIGATION PATH. + + + + + + + + + + + + + + + + + + + + Type for ACCESS SUMMARY. + + + + + + + + + + + + Elements of a NAVIGATION PATH. + + + + + Type of access feature, e.g. lift, stairs, + + + + + Count of feature, e.g. number of lifts, stairs. + + + + + Nature of access feature transition e.g. up or down. + + + + + + + + Elements of a NAVIGATION PATH that summarise properties o the set of PATH LINKs. Will state the strictest constraint found . e.g. if any link forbids wheelchair, the NAVIGATION PATH forbids wheelchair. + + + + + + MODEs of access which may used at associated place, e.g. foot access, bicycle access. + + + + + Summaries of access features encountered in path. + + + + + Total time needed to navigate path (May be derived from links). + + + + + +
    diff --git a/xsd/netex_framework/netex_reusableComponents/netex_equipmentVehiclePassenger_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_equipmentVehiclePassenger_support.xsd index 6fd864d3e..d08210ed4 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_equipmentVehiclePassenger_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_equipmentVehiclePassenger_support.xsd @@ -14,8 +14,10 @@ 2007-06-12 + 2023-02-12 Correct reference to WheelchairEquipmenRef to WheelchairVehicleEquipmentRef. Deprecate WheelchairEquipmenRef + -

    NeTEx - Network Exchange. This subschema defines VEHICLE EQUIPMENT types for Place access.

    +

    NeTEx - Network Exchange. This subschema defines VEHICLE EQUIPMENT types for Place access.

    text/xml @@ -113,10 +115,29 @@ Rail transport, Roads and Road transport
    - Reference to a WHEELCHAIR VEHICLE EQUIPMENT. + Reference to a WHEELCHAIR VEHICLE EQUIPMENT. DEPRECATED -v2.0 + + DEPRECATED -v2.0 + + + + + + Identifier of a POINT. + + + + + + + + Reference to a WHEELCHAIR VEHICLE EQUIPMENT. + + + Type for a reference to a WHEELCHAIR VEHICLE EQUIPMENT. @@ -133,7 +154,7 @@ Rail transport, Roads and Road transport - Allowed values for assisted boarding locations. + Allowed values for assisted boarding locations. @@ -143,7 +164,7 @@ Rail transport, Roads and Road transport - Allowed values for assistance needed. + Allowed values for assistance needed. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_equipmentVehiclePassenger_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_equipmentVehiclePassenger_version.xsd index e9efcf081..6f594cd12 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_equipmentVehiclePassenger_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_equipmentVehiclePassenger_version.xsd @@ -1,5 +1,5 @@ - + @@ -18,13 +18,16 @@ 2021-01-29BUG Issue #143: Correct data type on GapToPlatform + 2023-02-07Add actual Vehicle Equipment list. Make Actual + + 2019-03-25Fix #41 by Skinkie from 2019.01.07. Fix typo on MobilityList. +

    NeTEx - Network Exchange. This subschema defines passenger vehicle EQUIPMENT

    text/xml - http://www.w3.org/2 2019-03-25Fix #41 by Skinkie from 2019.01.07. Fix typo on MobilityList. - 001/XMLSchema + http://www.w3.org/2001/XMLSchema XML schema, W3C Recommendation 2001 {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_equipmentVehiclePassenger_version.xsd @@ -85,12 +88,25 @@ Rail transport, Roads and Road transport
    - + + + List of ACTUAL VEHICLE EQUIPMENT. + + + + + + + + + + An item of EQUIPMENT of a particular type actually available in an individual VEHICLE. - + + Abstract Type for an ACTUAL VEHICLE EQUIPMENT. @@ -178,7 +194,7 @@ Rail transport, Roads and Road transport - Borading Elements for an ACCESS VEHICLE EQUIPMENT type. + Boarding Elements for an ACCESS VEHICLE EQUIPMENT type. @@ -193,12 +209,17 @@ Rail transport, Roads and Road transport - VEHICLE Hoist can be used at VEHICLE has a hoist or lift for wheelchairs. + VEHICLE has a hoist or lift for wheelchairs. + + + + + Distance from VEHICLE needed to operate hoist. - Whether a ramp may be used to access VEHICLE. + Whether a ramp may be used to access VEHICLE. @@ -272,7 +293,7 @@ Rail transport, Roads and Road transport - Whether special position on platform is needed for boarding. + Whether special position on platform is needed for boarding. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_facility_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_facility_support.xsd index 7a5441d97..95b19b198 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_facility_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_facility_support.xsd @@ -1,5 +1,5 @@ - + @@ -309,9 +309,11 @@ Rail transport, Roads and Road transport Allowed values for Berth Facility: - + + + @@ -413,7 +415,7 @@ Rail transport, Roads and Road transport - Allowed values for lighing control Facility. + Allowed values for Lighting Control Facility. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_facility_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_facility_version.xsd index e7b7246ab..96fcdee48 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_facility_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_facility_version.xsd @@ -1,5 +1,5 @@ - + @@ -916,12 +916,12 @@ Rail transport, Roads and Road transport - List of climate control FACILITies. + List of CLIMATE CONTROL FACILITies. - List of values for climate control SERVICE. + List of values for CLIMATE CONTROL FACILITY diff --git a/xsd/netex_framework/netex_reusableComponents/netex_nm_chargingEquipmentProfile_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_nm_chargingEquipmentProfile_support.xsd index dae09e314..19d1721a0 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_nm_chargingEquipmentProfile_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_nm_chargingEquipmentProfile_support.xsd @@ -45,33 +45,33 @@ Rail transport, Roads and Road transport CEN TC278 WG3 SG9. - NeTEx Network Exchange - CHARGING EQUIPMENT PROFILE identifier types. + NeTEx Network Exchange - RECHARGING EQUIPMENT PROFILE identifier types. Standard - CHARGING EQUIPMENT PROFILE identifier types for NeTEx. + RECHARGING EQUIPMENT PROFILE identifier types for NeTEx. - - + + - Type for identifier of CHARGING EQUIPMENT PROFILE. + Type for identifier of RECHARGING EQUIPMENT PROFILE. - + - Identifier of an CHARGING EQUIPMENT PROFILE. +v1.2.2 + Identifier of an RECHARGING EQUIPMENT PROFILE. +v1.2.2 - + - Type for a reference to an CHARGING EQUIPMENT PROFILE. + Type for a reference to an RECHARGING EQUIPMENT PROFILE. - + - Identifier of a CHARGING EQUIPMENT PROFILE. + Identifier of a RECHARGING EQUIPMENT PROFILE. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_nm_chargingEquipmentProfile_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_nm_chargingEquipmentProfile_version.xsd index 9ff17117d..6da9a7af0 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_nm_chargingEquipmentProfile_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_nm_chargingEquipmentProfile_version.xsd @@ -18,7 +18,7 @@ 2021-09-02 -

    NeTEx - Network Exchange. This subschema defines CHARGING EQUIPMENT PROFILE base types.

    +

    NeTEx - Network Exchange. This subschema defines RECHARGING EQUIPMENT PROFILE base types.

    text/xml @@ -48,21 +48,21 @@ Rail transport, Roads and Road transport CEN TC278 WG3 SG9. - NeTEx Network Exchange - CHARGING EQUIPMENT PROFILE Types of Equipment. + NeTEx Network Exchange - RECHARGING EQUIPMENT PROFILE Types of Equipment. Standard - CHARGING EQUIPMENT PROFILE types for NeTEx. + RECHARGING EQUIPMENT PROFILE types for NeTEx. - + - Type for containment in frame of CHARGING EQUIPMENT PROFILEs. + Type for containment in frame of RECHARGING EQUIPMENT PROFILEs. - + Charging equipment profile for VEHICLE. @@ -71,13 +71,13 @@ Rail transport, Roads and Road transport - + Specialisation of VEHICLE EQUIPMENT PROFILE describing vehicle charging features. - + @@ -87,33 +87,33 @@ Rail transport, Roads and Road transport - + - + - Identifier of ENTITY. + Identifier of RECHARGING EQUIPMENT PROFILE. - + - Type for a CHARGING EQUIPMENT PROFILE. + Type for a RECHARGING EQUIPMENT PROFILE. - + - + - Elements for CHARGING EQUIPMENT PROFILE. + Elements for RECHARGING EQUIPMENT PROFILE. @@ -134,21 +134,17 @@ Rail transport, Roads and Road transport - CHarging voltage in Volts. - + Charging voltage in volts. - Maximum charging power in Watts, available, determining how long charging willtake - - + Maximum charging power in watts, determining how long charging will take. - Normal period need to set up charging. - + Typical time period needed to set up the charging process. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_nm_equipmentEnergy_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_nm_equipmentEnergy_support.xsd index c25b33ea7..0dd00b8ae 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_nm_equipmentEnergy_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_nm_equipmentEnergy_support.xsd @@ -12,9 +12,9 @@ 2007-06-12 - 2020-10-07Split out from PArking Equipoment + 2020-10-07Split out from Parking Equipment - 2021-09-02NewMO)DEs: Add Battery and TypeOfBatteryChemistry, PlugType etc + 2021-09-02New Modes: Add Battery and TypeOfBatteryChemistry, PlugType, etc.

    NeTEx - Network Exchange. This subschema defines ENERGY EQUIPMENT types for Place access.

    @@ -219,8 +219,7 @@ Rail transport, Roads and Road transport DEPRECATED. Will be panthograph. - - + diff --git a/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_version.xsd index a5096a522..22825a5b4 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_version.xsd @@ -1,8 +1,8 @@ - + - + @@ -18,6 +18,8 @@
    2020-10-07Revise to use TransportType + 2024-02-14Revise dependecies because of ewseparate Vehice_version package +

    NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

    This sub-schema describes the FLEET types.

    @@ -34,7 +36,7 @@ http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd Unclassified - CEN, Crown Copyright 2009-2020 + CEN, Crown Copyright 2009-2024
      diff --git a/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd index 56f12a329..8ae039956 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd @@ -277,7 +277,7 @@ Rail transport, Roads and Road transport - + Order of Assignment. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_notice_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_notice_version.xsd index 5fd6b2598..9d160ae5e 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_notice_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_notice_version.xsd @@ -225,7 +225,7 @@ Rail transport, Roads and Road transport - + Presentation Order of variant. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_seatingPlan_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_seatingPlan_support.xsd new file mode 100644 index 000000000..c7cb3afb7 --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_seatingPlan_support.xsd @@ -0,0 +1,434 @@ + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-02-02 + + 2023-02-05 + Name Space changes + + 2023-12-08Move SENSOR IN SPOT declarations to here + + 2024-01-17Add bed to locatable spot type enumerations + + 2024-02-18Norway review comment - Revise Aisle /Window to use enumeration. + + +

      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

      +

      This sub-schema describes the SEATING PLAN types.

      +
      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_seatingPlan_support.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + + Unclassified + CEN, Crown Copyright 2022-2023 + + +
        +
      • Derived from the Transmodel standards.
      • +
      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx SEATING PLAN types. + Standard +
      +
      + SEATING PLAN identifier types +
      + + + + Type for a list of SPOT ROWs. + + + + + + + + + + + + Type for identifier of a SPOT ROW. + + + + + + Reference to a SPOT ROW. +v2.0 + + + + + Type for a reference to a SPOT ROW. + + + + + + Identifier of a SPOT ROW. + + + + + + + + + Type for a list of SPOT COLUMNs. + + + + + + + + + + + + Type for identifier of a SPOT COLUMN. + + + + + + Reference to a SPOT COLUMN. +v2.0 + + + + + Type for a reference to a SPOT COLUMN. + + + + + + Identifier of a SPOT COLUMN. + + + + + + + + + Type for identifier of an EQUIPABLE SPACE. + + + + + + Reference to an EQUIPABLE SPACE. +v2.0 + + + + + Type for a reference to an EQUIPABLE SPACE. + + + + + + Identifier of referenced entity. + + + + + + + + + Type for a list of references to LOCATABLE SPOTs + + + + + + + + + + + + Type for identifier of a LOCATABLE SPOT. + + + + + + Reference to a LOCATABLE SPOT. +v2.0 + + + + + Type for a reference to a LOCATABLE SPOT. + + + + + + Identifier of referenced entity. + + + + + + + + A Range of LOCATABLE SPOTs. + + + + + Start of range of LOCATABLE SPOTs. + + + + + End of range of LOCATABLE SPOTs. + + + + + + + + Type for identifier of a PASSENGER SPOT. + + + + + + Reference to a PASSENGER SPOT. +v2.0 + + + + + Type for a reference to a PASSENGER SPOT. + + + + + + Identifier of a PASSENGER SPOT. + + + + + + + + + Type for identifier of a PASSENGER VEHICLE SPOT. + + + + + + Reference to a PASSENGER VEHICLE SPOT. +v2.0 + + + + + Type for a reference to a PASSENGER VEHICLE SPOT. + + + + + + Identifier of a PASSENGER VEHICLE SPOT. + + + + + + + + + Type for identifier of a LUGGAGE SPOT. + + + + + + Reference to a LUGGAGE SPOT. +v2.0 + + + + + Type for a reference to a LUGGAGE SPOT. + + + + + + Identifier of a LUGGAGE SPOT. + + + + + + + + + Type for identifier of a TYPE OF LOCATABLE SPOT. + + + + + + Reference to a TYPE OF LOCATABLE SPOT. +v2.0 + + + + + Type for a reference to a TYPE OF LOCATABLE SPOT. + + + + + + Reference to a TYPE OF LOCATABLE SPOT. + + + + + + + + Allowed values for type of passenger space. + + + + + + + + + + + + + + + + Allowed values for Spot Orientation. + + + + + + + + + + + + + + + + + Allowed values for Seat Context. + + + + + Spot is next to an aisle (but not a window). + + + + + Spot is next to a window (but not an aisle). + + + + + Spot is next to an aisle and a window. + + + + + Spot is in middle, i.e. not next to aisle or a window. + + + + + + + + Allowed values for Type of Table. + + + + + No table. + + + + + Table is fixed horizontal in front of seat. + + + + + Table folds fown to be horizontal in front of seat. + + + + + Table folds down from seat back in front. + + + + + Table folds out from arm rest. + + + + + Table clips on to seat arm rests. + + + + + Other type of table. + + + + + +
      diff --git a/xsd/netex_framework/netex_reusableComponents/netex_seatingPlan_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_seatingPlan_version.xsd new file mode 100644 index 000000000..e040873be --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_seatingPlan_version.xsd @@ -0,0 +1,658 @@ + + + + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-01-30 + + 2023-01-30 + Name Space changes + + 2023-12-08Move SENSOR IN SPOT declarations to here + + 2024-02-18Norway review comment - Revise AIsle /Window to use enumeration. Add TableType enum. + + +

      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

      +

      This sub-schema describes the SEATING PLAN types.

      +
      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_seatingPlan_version.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + + Unclassified + CEN, Crown Copyright 2022-2023 + + +
        +
      • Derived from the Transmodel, standards.
      • +
      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + SEATING PLAN types. + Standard +
      +
      + SEATING PLAN data types +
      + + + + Type for a list of SPOT ROWs. + + + + + + + + + + + + A designated row of LOCATABLE SPOTs, e.g. seats, within a PASSENGER SPACE. v2.0 + + + + + + + + + + + + + + + + + + Identifier of SPOT ROW. + + + + + + + + + Type for a SPOT ROW. + + + + + + + + + + + + Elements for a SPOT ROW. + + + + + Name of SPOT ROW. + + + + + Whether number of ROW starts at front. Default is true. + + + + + + + + Type for a list of SPOT COLUMNs. + + + + + + + + + + + + A designated File of LOCATABLE SPOTs within a PASSENGER SPACE, For example Column A, B, C, D. +v2.0 + + + + + + + + + + + + + + + + + + + Identifier of SPOT COLUMN. + + + + + + + + + Type for a SPOT COLUMN. + + + + + + + + + + + + Elements for a SPOT COLUMN. + + + + + Name of SPOT COLUMN. + + + + + Whether number of Columns starts from left of vehicle, facing forward, or right. Default is true. + + + + + + + + A place aboard a vehicle where ACTUAL VEHICLE EQUIPMENT may be located. +v2.0 + + + + + Type for a EQUIPABLE SPACE. + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + + + Elements for an EQUIPABLE SPACE. + + + + + Lavel of EQUIPABLE SPACE. e.g. seat number. + + + + + Name of DECK COMPONENT. + + + + + Description of EQUIPABLE SPACE. + + + + + Orientation of EQUIPABLE SPACE . Default is forwards. + + + + + + + ACTUAL VEHICLE EQUIPMENT for element. + + + + + + + Elements for an EQUIPABLE SPACE dimensions. + + + + + Width of EQUIPABLE SPACE. + + + + + Length of EQUIPABLE SPACE. + + + + + Height of EQUIPABLE SPACE. + + + + + + + + An identifiable individual area within a given PASSENGER SPACE, which may potentially be allocated to a single passenger. +v2.0 + + + + + Type for a LOCATABLE SPOT. + + + + + + + Elements for a LOCATABLE SPOT. + + + + + + + + + Elements for a LOCATABLE SPOT. + + + + + + + SPOT SENSORs in the LOCATABLE SPOT. + + + + + + + Elements for a LOCATABLE SPOT dimensions. + + + + + Width of LOCATABLE SPOT. + + + + + Length of LOCATABLE SPOT. + + + + + Height of LOCATABLE SPOT. + + + + + + + Elements for a LOCATABLE SPOT Row and Columns. + + + + + + + + + + Type for a list of PASSENGER SPOTs. + + + + + + + + + + + + + Type for a PASSENGER SPOT. + + + + + + + + + + + + Elements for a PASSENGER SPOT. + + + + + Whether PASSENGER SPOT is by an Aisle, window, etc. + + + + + Whether PASSENGER SPOT faces table. + + + + + Whether PASSENGER SPOT has an armrest + + + + + Leg space available. + + + + + Whether PASSENGER SPOT has a tray. + + + + + Whether PASSENGER SPOT has a power socket. + + + + + + + + A designated seat or other space for a passenger within a given DECK SPACE. +v2.0. + + + + + + + + + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + Elements for a LOCATABLE SPOT. + + + + + + + + + + Identifier of PASSENGER SPOT. + + + + + + + + + Type for a list of PASSENGER VEHICLE SPOTs. + + + + + + + + + + + + + A designated space to stow a passenger's luggage onboard.+v2.0. + + + + + + + + + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + Elements for a LOCATABLE SPOT. + + + + + + + + + + Identifier of PASSENGER VEHICLE SPOT. + + + + + + + + + Type for a PASSENGER VEHICLE SPOT. + + + + + + + + + + + + Elements for a PASSENGER VEHICLE SPOT. + + + + + Vehicle categories that may use PASSENGER VEHICLE SPOT. + + + + + Types of Transport that may use PASSENGER VEHICLE SPOT. + + + + + + + + Type for a list of LUGGAGE SPOTs. + + + + + + + + + + + + + A specified space to stow a passenger's luggage onboard.+v2.0. + + + + + + + + + + + + + + + Elements for a EQUIPABLE SPACE. + + + + + + + Elements for a LOCATABLE SPOT. + + + + + + + + + + Identifier of LUGGAGE SPOT. + + + + + + + + + Type for a LUGGAGE SPOT. + + + + + + + + + + + + Elements for a LUGGAGE SPOT. + + + + + Height of LUGGAGE SPOT from floor. + + + + + + + + Classification for LOCATABLE SPOT. +v2.0. + + + + + + + + + + + + + + + + + + Identifier of TYPE OF LOCATABLE SPOT. + + + + + + + + + Type for a TYPE OF LOCATABLE SPOT. + + + + + + +
      diff --git a/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd index 6fe17ebe1..720d3a02a 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd @@ -231,7 +231,7 @@ Rail transport, Roads and Road transport - + order within list diff --git a/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_support.xsd new file mode 100644 index 000000000..40513d45d --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_support.xsd @@ -0,0 +1,203 @@ + + + + + + + + main schema + e-service developers + Europe + First drafted for version 1.0 CEN TC278 WG3 SG6 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-02-08 + + 2023-02-08 + Split out from Charging Equipoment + + 2023-02-08Split out from Charging Equipoment + + 2023-12-08Move SENSOR IN SPOT declarations to DECK PLAN, adn SEATING PLAN + + +

      NeTEx - Network Exchange. This subschema defines SENSOR EQUIPMENT types.

      +
      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_sensorEquipment_support.xsd + [ISO 639-2/B] ENG + CEN TC278 WG3 SG9 + + Unclassified + CEN, Crown Copyright 2009-2023 + + +
        +
      • Added fro NExTex new modes.
      • +
      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx Network Exchange - SENSOR EQUIPMENT identifier types. + Standard +
      +
      + SENSOR EQUIPMENT identifier types for NeTEx. +
      + + + + Type for identifier of SENSOR EQUIPMENT. + + + + + + Identifier of a SENSOR EQUIPMENT. +V2.0 + + + + + Type for a reference to a SENSOR EQUIPMENT. + + + + + + Identifier of a SENSOR EQUIPMENT. + + + + + + + + Allowed values for Sensor Communications. + + + + + + + + + + + Type for identifier of SPOT SENSOR. + + + + + + Identifier of a SPOT SENSOR. +v2.0 + + + + + Type for a reference to a SPOT SENSOR. + + + + + + Identifier of a SPOT SENSOR. + + + + + + + + + Type for identifier of ENTRANCE SENSOR. + + + + + + Identifier of an ENTRANCE SENSOR. +v2.0 + + + + + Type for a reference to an ENTRANCE SENSOR. + + + + + + Identifier of a ENTRANCE SENSOR. + + + + + + + + + Type for identifier of SENSOR IN SPOT. + + + + + + Identifier of a SENSOR IN SPOT. +V2.0 + + + + + Type for a reference to a SENSOR IN SPOT. + + + + + + Identifier of a SENSOR IN SPOT. + + + + + + + + + Type for identifier of SENSOR IN ENTRANCE. + + + + + + Identifier of a SENSOR IN ENTRANCE. +V2.0 + + + + + Type for a reference to a SENSOR IN ENTRANCE. + + + + + + Identifier of a SENSOR IN ENTRANCE. + + + + + + +
      diff --git a/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_version.xsd new file mode 100644 index 000000000..cc3f80588 --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_version.xsd @@ -0,0 +1,370 @@ + + + + + + + + + + main schema + e-service developers + Europe + First drafted for version 1.0 CEN TC278 WG3 SG6 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-02-06 + + 2023-02-06 + Definition of CycleStorage number of spaces corrected. Doc change only. + + 2023-12-08Move SENSOR IN SPOT declarations to DECK PLAN, adn SEATING PLAN + + +

      NeTEx - Network Exchange. This subschema defines SENSOR EQUIPMENT base types.

      +
      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_sensorEquipment_version.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + Unclassified + CEN, Crown Copyright 2009-2023 + + +
        +
      • Derived from the TransModel standards.
      • +
      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx Network Exchange - SENSOR Types of Equipment. + Standard +
      +
      + SENSOR EQUIPMENT types for NeTEx. +
      + + + + Dummy type for +V2.0 + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + An EQUIPMENT used to monitor use of a space or entrance. +V2.0 + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a SENSOR EQUIPMENT. + + + + + + + + + + + + Elements for SENSOR EQUIPMENT. + + + + + How sensor communicates with onboard hub. + + + + + + + + An EQUIPMENT used to monitor use of a LOCATABLE SPOT such as a passenger seat. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a SPOT SENSOR. + + + + + + + + + + + + Elements for SPOT SENSOR. + + + + + + + AN EQUIPMENT used to monitor or count passengers using a PASSENGER ENTRANCE. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a ENTRANCE SENSOR. + + + + + + + + + + + + Elements for ENTRANCE SENSOR. + + + + + + + Type for a list of SENSORs in SPOT. + + + + + + + + + + + + Use of a specific SPOT SENSOR to monitor a specific LOCATABLE SPOT. +v2.0 + + + + + + + + + + + + + + + + + + Identifier of SENSOR IN SPOT. + + + + + + + + + Type for a SENSOR IN SPOT + + + + + + + + + + + + Elements for a SENSOR IN SPOT. + + + + + + + + + + Type for a list of SENSORs in ENTRANCE. + + + + + + + + + + + + Use of a specific ENTRANCE SENSOR to monitor a specific DECK ENTRANCE. +v2.0 + + + + + + + + + + + + + + + + + + Identifier of SENSOR IN ENTRANCE. + + + + + + + + + Type for a SENSOR IN ENTRANCE + + + + + + + + + + + + Elements for a SENSOR IN ENTRANCE. + + + + + + +
      diff --git a/xsd/netex_framework/netex_reusableComponents/netex_serviceRestrictions_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_serviceRestrictions_support.xsd index 04ebae032..ee2a03a35 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_serviceRestrictions_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_serviceRestrictions_support.xsd @@ -37,6 +37,8 @@ 2023-12-18FIX: Correct the #525 implementation of BOOKING ARRANGEMENT and SERVICE BOOKING ARRANGEMENT, SERVICE BOOKING ARRANGEMENT should inherit from BOOKING ARRANGEMENT and should have its own structure. + 2024-01-17DECKPLANS dd washbasin to sanitary facilities +

      NeTEx - Network Exchange. This subschema defines NetEX:TRAVEL RIGHTS identifier types.

      @@ -684,6 +686,7 @@ Rail transport, Roads and Road transport + diff --git a/xsd/netex_framework/netex_reusableComponents/netex_spotAffinity_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_spotAffinity_support.xsd new file mode 100644 index 000000000..f7894a3d0 --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_spotAffinity_support.xsd @@ -0,0 +1,141 @@ + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + 2024-03-01Create from TM Spec + + + 2024-03-01 + + +

      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

      +

      This sub-schema describes the SPOT AFFINITY identifier types.

      +
      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_spotAffinity_support.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + Unclassified + CEN, Crown Copyright 2022-2024 + + +
        +
      • Derived from the Transmodel standards.
      • +
      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx SPOT AFFINITY types. + Standard +
      +
      + NeTEx: SPOT AFFINITY identifier types +
      + + + + Type for identifier of a SPOT AFFINITY. + + + + + + Reference to a SPOT AFFINITY. +v2.0 + + + + + Type for a reference to a SPOT AFFINITY. + + + + + + Identifier of referenced entity. + + + + + + + + + Allowed values for SpotAffinityType + + + + + Spot is facing another spot in the affinity. + + + + + Spot is next to another spot in the affinity. + + + + + Spot is in a contigous row making up the spots in the affinity. + + + + + Spot is around a table. + + + + + Spot is around a table. + + + + + Spot is in alower berth adjacent to another lower berth.. + + + + + Spot is in teh ame compartment as another spota . + + + + + Spot is a companion seat beside a wheelchair space . + + + + + OtherAFfinity. + + + + + +
      diff --git a/xsd/netex_framework/netex_reusableComponents/netex_spotAffinity_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_spotAffinity_version.xsd new file mode 100644 index 000000000..0591bb29b --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_spotAffinity_version.xsd @@ -0,0 +1,131 @@ + + + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-03-01 + + 2024-02-18Norway review comment - Revise AIsle /Window to use enumeration. Add TableType enum. + + +

      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

      +

      This sub-schema describes the SPOT AFFINITY types.

      +
      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_spotffinity_version.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + Unclassified + CEN, Crown Copyright 2022-2024 + + +
        +
      • Derived from the Transmodel, standards.
      • +
      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx SPOT AFFINITY types. + Standard +
      +
      + NeTEx: SPOT AFFINITY types. +
      + + + + Type for a list of SPOT AFFINITies + + + + + + + + + + + + A group of proximate seats suitable for selection for use by a group of travellers, for example, as being side by side, face to face, around a table, near a wheelchair spot, etc. + +v2.0 + + + + + Type for a SPOT AFFINITY. + + + + + + + Elements for a SPOT AFFINITY. + + + + + + + + + Elements for an SPOT AFFINITY. + + + + + Name of SPOT AFFINITY.. + + + + + Description of SPOT AFFINITY. + + + + + Type of SPotAFfinity + + + + + Maximum number of spots in affinity + + + + + :ocatable SPOTs for element. + + + + + +
      diff --git a/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_support.xsd new file mode 100644 index 000000000..308a206c0 --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_support.xsd @@ -0,0 +1,194 @@ + + + + + + + + main schema + e-service developers + Europe + First drafted for version 1.0 CEN TC278 WG3 SG6 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-02-06 + + 2023-02-01Split out from Charging Equipoment + + 2024-01-24Add btype of bed + + +

      NeTEx - Network Exchange. This subschema defines SPOT EQUIPMENT types

      +
      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_spotEquipment_support.xsd + [ISO 639-2/B] ENG + CEN TC278 WG3 SG9 + + Unclassified + CEN, Crown Copyright 2009-2024 + + +
        +
      • Added fro NExTex new modes.
      • +
      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx Network Exchange - SPOT EQUIPMENT identifier types. + Standard +
      +
      + SPOT EQUIPMENT identifier types for NeTEx. +
      + + + + Type for identifier of SPOT EQUIPMENT. + + + + + + Identifier of a SPOT EQUIPMENT. +V2.0 + + + + + Type for a reference to a SPOT EQUIPMENT. + + + + + + Identifier of a SPOT EQUIPMENT. + + + + + + + + + Type for identifier of SEAT EQUIPMENT. + + + + + + Identifier of a SEAT EQUIPMENT. +v2.0 + + + + + Type for a reference to a SEAT EQUIPMENT. + + + + + + Identifier of a SEAT EQUIPMENT. + + + + + + + + + Type for identifier of BED EQUIPMENT. + + + + + + Identifier of a BED EQUIPMENT. +v2.0 + + + + + Type for a reference to a BED EQUIPMENT. + + + + + + Identifier of a BED EQUIPMENT. + + + + + + + + Allowed values for TYPE OF BED. +v2.0 + + + + + + + + + + + + + + + + + Type for identifier of LUGGAGE SPOT EQUIPMENT. + + + + + + Identifier of a LUGGAGE SPOT EQUIPMENT. +v2.0 + + + + + Type for a reference to a LUGGAGE SPOT EQUIPMENT. + + + + + + Identifier of a LUGGAGE SPOT EQUIPMENT. + + + + + + + + Allowed values for TYPE OF LUGGAGE SPOT +v2.0 + + + + + + + + + + + + +
      diff --git a/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_version.xsd new file mode 100644 index 000000000..096bb2644 --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_version.xsd @@ -0,0 +1,384 @@ + + + + + + + + + + main schema + e-service developers + Europe + First drafted for version 1.0 CEN TC278 WG3 SG6 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-02-06 + + 2023-02-06Definition of CycleStorage number of spaces corrected. Doc change only. + + +

      NeTEx - Network Exchange. This subschema defines SPOT EQUIPMENT base types.

      +
      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_spotEquipment_version.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + Unclassified + CEN, Crown Copyright 2009-2024 + + +
        +
      • Derived from the TransModel standards.
      • +
      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx Network Exchange - SPOT Types of Equipment. + Standard +
      +
      + SPOT EQUIPMENT types for NeTEx. +
      + + + + An abstract EQUIPMENT in a LOCATABLE SPOT providing a onboard seat, bed or other amenity. +V2.0 + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + An abstract EQUIPMENT in a LOCATABLE SPOT providing a onboard seat, bed or other amenity. +V2.0 + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a SPOT EQUIPMENT. + + + + + + + + + + + + Elements for SPOT EQUIPMENT. + + + + + Width of SPOT EQUIPMENT + + + + + Length deont to back of SPOT EQUIPMENT. + + + + + Height of SPOT EQUIPMENT. + + + + + Height from floor. + + + + + Whether spot has power supply socket. + + + + + Whether Spot has UsbPowerSockets. + + + + + + + + A specialisation of SPOT EQUIPMENT describing the detailed properties of a seat. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a SEAT EQUIPMENT. + + + + + + + + + + + + Elements for SEAT EQUIPMENT. + + + + + Height of Seat back from seat bottom. + + + + + Depgth of Seat from front to back. + + + + + Whether seat folds up. Default is false. + + + + + Whether seat reclines. Default sis false. + + + + + + + + A specialisation of SPOT EQUIPMENT describing the detailed properties of a bed. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a BED EQUIPMENT. + + + + + + + + + + + + Elements for BED EQUIPMENT. + + + + + Length of bed back from seat bottom. + + + + + Whether bed can be stowed away when not in use. + + + + + Length of bed back from seat bottom. + + + + + UsableLength of bed back from seat bottom. + + + + + + + + A specialisation of SPOT EQUIPMENT describing the detailed properties of a LUGGAGE SPOT. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a LUGGAGE SPOT EQUIPMENT. + + + + + + + + + + + + Elements for LUGGAGE SPOT EQUIPMENT. + + + + + TYPE OF LUGGAGE SPOTn + + + + + Height avilable for LUGGAGE + + + + + Whether LUGGAGE SPOT is lockable. + + + + + Whether LUGGAGE SPOT is has a door. + + + + +
      diff --git a/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_support.xsd new file mode 100644 index 000000000..80718bbfa --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_support.xsd @@ -0,0 +1,165 @@ + + + + + + + + main schema + e-service developers + V1.0 Christophe Duquesne + Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + 2024-02-11Transmodel revision of TRAINN ELEMENT TYPES - add specifc subtype PoweredTrain, UnpoweredTrain, Tractiveelement TrailingElement + + + 2024-02-11 + + +

      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

      +

      This sub-schema describes the VEHICLE TYPE identifier Types.

      +
      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_trainElement_support.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + Unclassified + CEN, Crown Copyright 2009-2024 + + +
        +
      • Derived from the Transmodel, standards.
      • +
      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx TRAIN ELEMENT TYPE types. + Standard +
      +
      + TYPES for TRAIN ELEMENT TYPES +
      + + + + Type for identifier of a POWERED TRAIN. + + + + + + Reference to a POWERED TRAIN. v2.0 + + + + + Type for a reference to a POWERED TRAIN. + + + + + + Identifier of a POWERED TRAIN. + + + + + + + + + Type for identifier of a UNPOWERED TRAIN. + + + + + + Reference to a UNPOWERED TRAIN. v2.0 + + + + + Type for a reference to a UNPOWERED TRAIN. + + + + + + Identifier of a UNPOWERED TRAIN. + + + + + + + + + Type for identifier of a TRACTIVE ELEMENT TYPE. + + + + + + Reference to a TRACTIVE ELEMENT TYPE. v2.0 + + + + + Type for a reference to a TRACTIVE ELEMENT TYPE. + + + + + + Identifier of a TRACTIVE ELEMENT TYPE. + + + + + + + + + Type for identifier of a TRAILING ELEMENT TYPE. + + + + + + Reference to a TRAILING ELEMENT TYPE. v2.0 + + + + + Type for a reference to a TRAILING ELEMENT TYPE. + + + + + + Identifier of a TRAILING ELEMENT TYPE. + + + + + + +
      diff --git a/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_version.xsd new file mode 100644 index 000000000..485cce17a --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_version.xsd @@ -0,0 +1,271 @@ + + + + + + + + main schema + e-service developers + V1.0 Christophe Duquesne + Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + 2024-01-11Transmodel - exten TRAIN and TRAIN ELEMENT tYPES + + 2024-01-11Name Space changes + + +

      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

      +

      This sub-schema describes the TRAIN ELEMENT TYPE types

      +
      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_trainElement_version.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + Unclassified + CEN, Crown Copyright 2009-2024 + + +
        +
      • Derived from the Transmodel, VDV, TransXChange, NEPTUNE, BISON and Trident standards.
      • +
      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx TRAIN ELEMENT Types. + Standard +
      +
      + NeTEx TRAIN ELEMENT TYPEs Type specification +
      + + + + Elements for TRAIN TYPEs in frame. + + + + + TRAIN ELEMENT TYPEs in frame _V2.0 in frame. + + + + + + + Type for containment in frame of TRAIN ELEMENT TYPEs. + + + + + + + + + + + + + + + A TRAIN that is able to move under its own power. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + Type for a POWERED TRAIN. + + + + + + + + + + + + Elements for a POWERED TRAIN. + + + + + + + A TRAIN that is able to move under its own power. +v2.0 + + + + + + + + + + + + + + + + + + Elements for a UNPOWERED TRAIN. + + + + + + + + + + + + Type for a UNPOWERED TRAIN. + + + + + + + + + + + + Elements for a UNPOWERED TRAIN. + + + + + + + A TRAIN ELEMENT TYPE that is self-propelled, e.g., a locomotive or powered railcar. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + Type for a TRAIN ELEMENT. + + + + + + + + + + + + Elements for a TRACTIVE ELEMENT TYPE. + + + + + + + A TRAIN ELEMENT TYPE that cannot propel itself, e.g. a railway carriage, luggage van, passenger vehicle wagon, etc. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + Type for a TRAILING ELEMENT TYPE. + + + + + + + + + + + + Elements for a Trailing ELEMENT TYPE. + + + + +
      diff --git a/xsd/netex_framework/netex_reusableComponents/netex_trainElement_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_trainElement_support.xsd index 203132a9d..1fd779e47 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_trainElement_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_trainElement_support.xsd @@ -1,5 +1,5 @@ - + @@ -14,9 +14,9 @@ 2010-09-04 - - 2011-02-05 - + 2011-02-05Name Space changes + + 2024-03-09Add TrainComponentCoupling and ThroughACcessEnumeration

      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

      @@ -34,7 +34,7 @@ http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd Unclassified - CEN, Crown Copyright 2009-2014 + CEN, Crown Copyright 2009-2024
        @@ -57,8 +57,9 @@ Rail transport, Roads and Road transport Standard + TRAIN Types - + Type for identifier of a TRAIN. @@ -84,7 +85,7 @@ Rail transport, Roads and Road transport - + Type for identifier of a COMPOUND TRAIN. @@ -115,7 +116,7 @@ Rail transport, Roads and Road transport - + Type for identifier of a TRAIN IN COMPOUND TRAIN. @@ -141,35 +142,40 @@ Rail transport, Roads and Road transport - - + + - Type for identifier of a TRAIN ELEMENT. + Type for identifier of a TRAIN ELEMENT TYPE. - + + + Reference to a TRAIN ELEMENT TYPE. v2.0 + + + - Reference to a TRAIN ELEMENT. + DEPRECATED: renamed to TRAIN ELEMENT TYPE. -v2.0 - + - Type for a reference to a TRAIN ELEMENT. + Type for a reference to a TRAIN ELEMENT TYPE. - + - Identifier of a TRAIN ELEMENT. + Identifier of a TRAIN ELEMENT TYPE. - + - Allowed values for TYPE OF TRAIN ELEMENT. + Allowed values for TYPE OF TRAIN ELEMENT TYPE. @@ -183,7 +189,7 @@ Rail transport, Roads and Road transport - + Type for identifier of a TRAIN COMPONENT. @@ -210,6 +216,30 @@ Rail transport, Roads and Road transport + + + The size of a train in relative terms. + + + + + No through access to next carriage + + + + + Access to next carriage through open entrance + + + + + Access to next carriage through door that can be opened. + + + + + + The size of a train in relative terms. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_trainElement_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_trainElement_version.xsd index f40bb3cf2..865551c32 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_trainElement_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_trainElement_version.xsd @@ -1,30 +1,10 @@ - + + - - - SERVICE REQUIEMENTS for SERVICE JOURNEY. These are the normal planned values, not necessarily the ACTUAL VEHICLE EQUIPMENT. - - - - - Required Minimum capacity for service. Note actual Capacity is given by vehicle type. - - - - - - - - VEHICLE EQUIPMENT available on service. - - - - - @@ -45,12 +25,19 @@ 2019-03-27Fix add missing TrainSize attribute to TrainElement - 2019-04-18Fix add missing orientation to TrainComponent - 2021-09-018NewModes: revise to allow chargingEquipmentProfile + 2019-04-18Fix add missing orientation to TrainComponent + + 2021-09-01NewModes: revise to allow chargingEquipmentProfile + + 2024-01-17DECK PLANS add a defualt DECK PLAN + + 2024-02-05DECK PLANS add a default DECK PLAN and TRAIN COMPONENT COUPLING + + 2024-02-09Rename TRAIN ELEMENT to TRAIN ELEMNT TYPE. DEerecate old element

        NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

        -

        This sub-schema describes the TRAIN ELEMENT types

        +

        This sub-schema describes the TRAIN ELEMENT types

        text/xml @@ -64,7 +51,7 @@ http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd Unclassified - CEN, Crown Copyright 2009-2021 + CEN, Crown Copyright 2009-2024
          @@ -87,8 +74,29 @@ Rail transport, Roads and Road transport Standard - NeTEx Train specifcation + NeTEx Train specification + + + SERVICE REQUIREMENTS for SERVICE JOURNEY. These are the normal planned values, not necessarily the ACTUAL VEHICLE EQUIPMENT. + + + + + Required minimum capacity for service. Note actual capacity is given by vehicle type. + + + + + + + + VEHICLE EQUIPMENT available on service. + + + + + @@ -102,9 +110,21 @@ Rail transport, Roads and Road transport - + - Elements for a VEHICLEs in frame. + Type for containment in frame of VEHICLE TYPEs. + + + + + + + + + + + + Elements for VEHICLE TYPEs, VEHICLE MODELS, etc. in frame. @@ -127,56 +147,40 @@ Rail transport, Roads and Road transport VEHICLE MODEL PROFILEs in frame. +v1.2.2 - - - VEHICLEs in frame. - - - + - Type for containment in frame of VEHICLE EQUIPMENT PROFILEs. + Type for containment in frame of VEHICLE MODELs. - - - - + + + - + - Type for containment in frame of VEHICLE TYPEs. + Type for containment in frame of VEHICLE EQUIPMENT PROFILEs. - - + + - + + - Type for containment in frame of VEHICLE TYPEs. + Dummy type to work around SG limitations - - - - - - - - - - - - - + + A vehicle composed of TRAIN ELEMENTs in a certain order, i.e. of wagons assembled together and propelled by a locomotive or one of the wagons. @@ -226,7 +230,7 @@ Rail transport, Roads and Road transport - + Requirements for TRAIN SIZe. @@ -249,8 +253,8 @@ Rail transport, Roads and Road transport - - + + A vehicle composed of COMPOUND TRAIN ELEMENTs in a certain order, i.e. of wagons assembled together and propelled by a locomotive or one of the wagons. @@ -299,14 +303,38 @@ Rail transport, Roads and Road transport - + + + + Dummy Tpe for Train Element substitution + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + - An elementary component of a TRAIN (e.g. wagon, locomotive). + According to Transmodel 6.2 This shoud really be called TRAIN ELEMENT TYPE and be abstract . Use as concrete element DEPRECATED - use more specific TRAILING ELEMENT TYPE or TRACTIVE ELEMENT TYPE subtypes, Shoul dbe renmaed and removed in V3.0 - + @@ -315,77 +343,118 @@ Rail transport, Roads and Road transport - - - Elements for a VEHICLE TYPE. - - + - + - + - Type for a TRAIN ELEMENT. + Type for a TRAIN ELEMENT TYPE. - + - + - Elements for a TRAIN ELEMENT. + Elements for a TRAIN ELEMENT TYPE. - Name of TRAIN ELEMENT. + Name of TRAIN ELEMENT TYPE. - Description of TRAIN ELEMENT. + Description of TRAIN ELEMENT TYPE. - + - Type of TRAIN ELEMENT. + Type of TRAIN ELEMENT TYPE. NB There is a name class with the supertype. Fix in v2.0 - Total Number of passengers that TRAIN ELEMENT. can carry. + Total Number of passengers that TRAIN ELEMENT TYPE. can carry. + + + + + + Facilities in TRAIN ELEMENT TYPE. + + + + + Actual EQUIPMENT on element. - + + + + + + Dimension Elements for a TRAIN ELEMENT TYPE. + + - The length of a TRAIN ELEMENT. + The length of an ELEMENT. - The width of a TRAIN ELEMENT. + The width of an ELEMENT. - - - + - Actual EQUIPMENT on element. + The width of an ELEMENT. +V2.0 + + + Elements for a TRAIN ELEMENT TYPE VIEW. + + + + + + + Reference to a TRAIN ELEMENT. + + + + + + + + Type of TRAIN ELEMENT TYPE. V2.0. + + + + + Type of TRAIN ELEMENT. DEPRECATED 2.0 Renamed to TYPE OF TRAIN ELEMENG TYPE + + + + + + Type for a list of TRAIN COMPONENTs. @@ -460,11 +529,8 @@ Rail transport, Roads and Road transport - - - Reference to a TRAIN ELEMENT. - - + + @@ -472,9 +538,31 @@ Rail transport, Roads and Road transport Orientation of the TRAIN ELEMENT within the TRAIN. +v1.1. + + + The nature of the coupling between the TRAIN COMPONENT and the TRAIN COMPONENT ahead of it within the TRAIN. +v2.0 + + - + + + Type for a TRAIN COMPONENT COUPLING. + + + + + Whether the component can be split in normal usage. + + + + + Whether passenger can walk through coupling to next carriage. + + + + + Type for a list of TRAIN IN COMPOUND TRAIN. @@ -504,9 +592,7 @@ Rail transport, Roads and Road transport - - Order of TRAIN IN COMPOUND TRAIN within TRAIN. - + Order of TRAIN IN COMPOUND TRAIN within TRAIN. @@ -553,7 +639,6 @@ Rail transport, Roads and Road transport - Simplified view of TRAIN COMPONENT. @@ -597,7 +682,7 @@ Rail transport, Roads and Road transport Description of TRAIN COMPONENT. - + Elements for a TRAIN ELEMENT derived. @@ -605,23 +690,4 @@ Rail transport, Roads and Road transport - - - Elements for a TRAIN ELEMENT VIEW. - - - - - Reference to a TRAIN ELEMENT. - - - - - - Type of TRAIN ELEMENT. - - - - - diff --git a/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_support.xsd index b39972ef9..5ad066f10 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_support.xsd @@ -1,7 +1,7 @@ - + - + @@ -14,13 +14,13 @@ 2010-09-04 - 2011-02-05Name Space changes + 2011-02-05Name Space changes - 2012-04-15Revise Passenger Capacity + 2012-04-15Revise Passenger Capacity 2019-04-09Add list of vehicle type refs for PARKING and general use - 2020-08-11Issue #110 Add missing fuel types + 2020-08-11Issue #110 Add missing fuel types electricContact, battery, dieselBatteryHybrid, petrolBatteryHybrid, biodiesel, hydrogen, liquidGas, methane, ethanol 2020-10-04NewModes: Add list of VEHICLEs. @@ -37,6 +37,8 @@ 2023-01-30TM CR: Enhancement Add Accepted Driver Permit + 2024-01-17TM CR: Enhancement Add PASSENGER VEHICLE CAPACITY +

          NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

          This sub-schema describes the VEHICLE TYPE identifier Types.

          @@ -269,6 +271,32 @@ Rail transport, Roads and Road transport
          + + + + Type for identifier of a PASSENGER VEHICLE CAPACITY. + + + + + + Reference to a PASSENGER VEHICLE CAPACITY. + + + + + Type for a reference to a PASSENGER VEHICLE CAPACITY. + + + + + + Identifier of a VEHICLE. + + + + + @@ -321,44 +349,6 @@ Rail transport, Roads and Road transport - - - - Type for a list of VEHICLEs. - - - - - - - - - - - - Type for identifier of a VEHICLE. - - - - - - Reference to a VEHICLE. - - - - - Type for a reference to a VEHICLE. - - - - - - Identifier of a VEHICLE. - - - - - @@ -463,7 +453,7 @@ Rail transport, Roads and Road transport - Allowed values for type of power +v1/2/2 + Allowed values for type of power. +v1.2.2 @@ -495,30 +485,121 @@ Rail transport, Roads and Road transport - + + + - Allowed values for Personal Vehicle Categories _v1.2.2 + Allowed values for list of Portable Wheeled VEHICLE types.+V2.0 - + + + + + Allowed values for Portable VEHICLE types. +V2.0 + + + - - + + + + + + + + Allowed values for list of Personal Wheeled VEhICLE types.+V2.0 + + + + + + Allowed values for Personal VEHICLE types.+V2.0 + + - + + + + + + + + + + + + - - + + + + + + + + Allowed values for list of Wheeled commercial VEHICLE types.+V2.0 + + + + + + Allowed values for Wheeled commercial VEHICLE types. + + + + + + + + + + + + + + + + + + + + + + + Allowed values for list of All road Wheeled VEHICLE types.+V2.0 + + + + + + All road vehicle types. + + + + + + + Allowed values for list of All road Wheeled VEHICLE types.+V2.0 + + + + + + All road vehicle types. + + + @@ -545,7 +626,7 @@ Rail transport, Roads and Road transport - + Type for identifier of a PURPOSE OF EQUIPMENT PROFILE. @@ -571,6 +652,32 @@ Rail transport, Roads and Road transport + + + + Type for identifier of a VEHICLE EQUIPMENT PROFILE MEMBER. + + + + + + Reference to a VEHICLE EQUIPMENT PROFILE MEMBER. + + + + + Type for a reference to a VEHICLE EQUIPMENT PROFILE MEMBER. + + + + + + Identifier of referenced VEHICLE EQUIPMENT PROFILE MEMBER. + + + + + @@ -597,7 +704,7 @@ Rail transport, Roads and Road transport - + Type for identifier of a TYPE OF DRIVER PERMIT. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_version.xsd index 8e53a5c7f..17dcc3407 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_version.xsd @@ -1,10 +1,11 @@ - + + @@ -24,12 +25,12 @@ 2017-03-27CR0001 - Vehicle Dimensions added. - 2019-03-25NL31 CD #60 Add new attributes BoardingHeight and GapToPlatform attributes to VehicleType. + 2019-03-25NL31 CD #60 Add new attributes BoardingHeight and GapToPlatform attributes to VehicleType. NJSK Review correct data types of new attributes to be of LengthType 2021-07-07NewModes-Power Description attribute to NVehicleEquipmentProfile - 2020-10-05 New Modes: Add Vehicle mode to VehicleType + 2020-10-05 New Modes: Add Vehicle mode to VehicleType Refactor VehicleType into TarnsportType, VehicleType and PesonalVehicleType Replace Vehicle OperatorRef with TransportOrganisationRef. Add VehicleModelRef to Vehicle. @@ -41,6 +42,8 @@ 2023-01-30TM CR: Enhancement Add Accepted Driver Permit + 2024-02-07Fix - allow default DEck Plan or TRANSPORT TYPE, move VehiclesInFramegroup her +

          NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

          This sub-schema describes the VEHICLE TYPE types.

          @@ -83,25 +86,13 @@ Rail transport, Roads and Road transport VEHICLE TYPE data types
          - - - Type for containment in frame of VEHICLE MODELs. - - - - - - - - - - + Dummy type to work around SG limitations - + A classification of any type of VEHICLE according to its properties. @@ -162,7 +153,7 @@ Rail transport, Roads and Road transport - DEPRECATED - use privateCodes + DEPRECATED - use privateCodes. -v2.0 @@ -172,6 +163,7 @@ Rail transport, Roads and Road transport
          + @@ -216,10 +208,15 @@ Rail transport, Roads and Road transport Maximum range between refuelling. +v1.2.2
          + + + Maximum velocity in m/s. +v2.0.0 + + - + A classification of public transport vehicles according to the vehicle scheduling requirements in mode and capacity (e.g. standard bus, double-deck, ...). @@ -398,7 +395,7 @@ Rail transport, Roads and Road transport - + A classification of personal use vehicles according to their properties, +v1.2.2 @@ -536,6 +533,11 @@ Rail transport, Roads and Road transport
          + + + Types of Driver Licence that are accepted for Simple Vehicle Type. +v2.0 + + @@ -637,22 +639,24 @@ Rail transport, Roads and Road transport + - Type for a list of PASSENGER CAPACITY REQUIREMENTs. + Type for a list of PASSENGER and PASSENGER VEHICLE CAPACITies. + - Capacity for a VEHICLE TYPE and Class. + Total number of passengers that can be carried by a VEHICLE of this type. @@ -679,7 +683,7 @@ Rail transport, Roads and Road transport - Capacity for a VEHICLE TYPE and Class. + Type for a PASSENGER CAPACITY. @@ -691,12 +695,12 @@ Rail transport, Roads and Road transport - Elements for a PASSENGER CAPACITY REQUIREMENT. relevant for passenger systems. + Elements for a PASSENGER CAPACITY. - Edit care class for which capacity is specifyed. Default is any, i.e. capacity is for all classes. + Fare class for which capacity is specifyed. Default is any, i.e. capacity is for all FARE CLASSes. @@ -704,7 +708,7 @@ Rail transport, Roads and Road transport - Elements for a PASSENGER CAPACITY REQUIREMENT. relevant for passenger systems. + Capacity type Elements for a PASSENGER CAPACITY REQUIREMENT. Relevant for passenger systems. @@ -749,6 +753,63 @@ Rail transport, Roads and Road transport + + + + Total number of passenger vehicles s that can be carried by a VEHICLE of this type. + + + + + + + + + + + + + + + + + + Identifier of PASSENGER VEHICLE CAPACITY. + + + + + + + + + Type for a PASSENGER VEHICLE CAPACITY. + + + + + + + + + + + + Elements for a PASSENGER VEHICLE CAPACITY. + + + + + VEHicle categories for which capacity is specifyed. Default is allPAssengerVehicles i.e. capacity is for all VEHICLE CATEGORIES + + + + + The total capacity of passenger VEHICLES of the type. F + + + + @@ -974,31 +1035,14 @@ Rail transport, Roads and Road transport - - - - Type for a list of VEHICLEs. - - - - - - - - An area within a Site. May be connected to Quays by PATH LINKs. - - - - - - - + + - A public transport vehicle used for carrying passengers. + A classification of public transport vehicles according to the vehicle scheduling requirements in MODE and capacity (e.g. standard bus, double-deck, ...). - + @@ -1006,98 +1050,76 @@ Rail transport, Roads and Road transport - - - + - + - Identifier of VEHICLE. + Identifier of VEHICLE MODEL. - + - Type for a VEHICLE. + Type for a VEHICLE MODEL. - - - + - + - Elements for VEHICLE. + Elements for a VEHICLE MODEL. - Name of VEHICLE. - - - - - Short Name of VEHICLE. + Name of VEHICLE MODEL. - Description +V1.2.2 - - - - - Licence plate of VEHICLE. + Description of VEHICLE MODEL. - + - Date of registration or commissioning - may be used to determine the age of a vehice. + Manufacturer of VEHICLE MODEL. - - - - - + - ACTUAL EQUIPMENT found in VEHICLE. + Range when fully fuelled or charged. +v2.0 - - - - - Alternative Code Elements for VEHICLE. - - - + - Operational Number of VEHICLE. - - - - - DEPRECATED - use privateCodes + Energy required for a full charge. +v2.0 + + + + Equipment profiles assoicated with model +v1.2.2 + + + + - - + + - A classification of public transport vehicles according to the vehicle scheduling requirements in MODE and capacity (e.g. standard bus, double-deck, ...). + Each instantiation of this ENTITY gives the number of items of one TYPE OF EQUIPMENT a VEHICLE MODEL should contain for a given PURPOSE OF EQUIPMENT PROFILE. The set of instantiations for one VEHICLE MODEL and one purpose gives one complete 'profile'. - + @@ -1105,122 +1127,132 @@ Rail transport, Roads and Road transport - + - + - Identifier of VEHICLE MODEL. + Identifier of VEHICLE EQUIPMENT PROILE. - + - Type for a VEHICLE MODEL. + Type for a VEHICLE EQUIPMENT PROFILE. - + - + - Elements for a VEHICLE MODEL. + Elements for a VEHICLE EQUIPMENT PROFILE. - Name of VEHICLE MODEL. + Name of VEHICLE EQUIPMENT PROFILE. - Description of VEHICLE MODEL. + Description of VEHICLE EQUIPMENT PROFILE. + + + + + + Number of units of EQUIPMENT. - Manufacturer of VEHICLE MODEL. + Manufacturer VEHICLE MODEL. + + + + + + + Members of Vehicle Profile. +v2.0 - - - - - Equipment profiles assoicated with model +v1.2.2 - - - - - - + + - Each instantiation of this ENTITY gives the number of items of one TYPE OF EQUIPMENT a VEHICLE MODEL should contain for a given PURPOSE OF EQUIPMENT PROFILE. The set of instantiations for one VEHICLE MODEL and one purpose gives one complete 'profile'. + Type for a list of VEHICLE EQUIPMENT PROFILE MEMBERs. + + + + + + + + + + + + An element within a VEHICLE EQUIPMENT PROFILE specifying the number of units of a given TYPE OF EQUIPMENT. - + - + - + - + - Identifier of VEHICLE EQUIPMENT PROILE. + Identifier of VEHICLE EQUIPMENT PROFILE MEMBER. - + - Type for a VEHICLE EQUIPMENT PROFILE. + Type for a VEHICLE EQUIPMENT PROFILE MEMBER. - - + + - + - Elements for a VEHICLE EQUIPMENT PROFILE. + Elements for a VEHICLE EQUIPMENT PROFILE MEMBER. - Name of VEHICLE EQUIPMENT PROFILE. + Name of VEHICLE EQUIPMENT PROFILE MEMBER. - Description of VEHICLE EQUIPMENT PROFILE. + Description of VEHICLE EQUIPMENT PROFILE MEMBER. - + Number of units of EQUIPMENT. - - - Manufacturer VEHICLE MODEL. - - - @@ -1244,7 +1276,7 @@ Rail transport, Roads and Road transport - Identifier of PURPOSE OF EQUIMENT PROFILE. + Identifier of PURPOSE OF EQUIPMENT PROFILE. @@ -1253,7 +1285,7 @@ Rail transport, Roads and Road transport - Type for a PURPOSE OF EQUIPMENT. + Type for a PURPOSE OF EQUIPMENT PROFILE. @@ -1262,7 +1294,7 @@ Rail transport, Roads and Road transport - A type of driving license (e.g. https://en.wikipedia.org/wiki/European_driving_licence ). +V2.0 + A type of driving license e.g. https://en.wikipedia.org/wiki/European_driving_licence +V2.0 @@ -1278,9 +1310,9 @@ Rail transport, Roads and Road transport - + - Identifier of the TYPE OF DRIVER PERMIT. + Identifier of TYPE OF DRIVER PERMIT. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_vehicle_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_vehicle_support.xsd new file mode 100644 index 000000000..9f16ca221 --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_vehicle_support.xsd @@ -0,0 +1,252 @@ + + + + + + + + main schema + e-service developers + V1.0 Christophe Duquesne + Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + 2024-02-11Factor out from vehicleType_support package + + 2024-02-11Add RollinhgSTockInvenotry, RollingSTock item etc + + +

          NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

          +

          This sub-schema describes the VEHICLE identifier Types.

          +
          + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_vehicle_support.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + Unclassified + CEN, Crown Copyright 2009-2024 + + +
            +
          • Derived from the Transmodel, standards.
          • +
          + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx VEHICLE TYPE types. + Standard +
          +
          + NeTEx VEHICLE types +
          + + + + Type for a list of VEHICLEs. + + + + + + + + + + + + Type for identifier of a VEHICLE. + + + + + + Reference to a VEHICLE. + + + + + Type for a reference to a VEHICLE. + + + + + + Identifier of a VEHICLE. + + + + + + + + + Type for a list of ROLLING STOCK ITEMs. + + + + + + + + + + + + Type for identifier of a ROLLING STOCK ITEM. + + + + + + Reference to a ROLLING STOCK ITEM. +v2.0 + + + + + Type for a reference to a ROLLING STOCK ITEM. + + + + + + Identifier of a ROLLING STOCK ITEM. + + + + + + + + + Type for identifier of a TRACTIVE ROLLING STOCKITEM. + + + + + + Reference to a TRACTIVE ROLLING STOCK ITEM. +v2.0 + + + + + Type for a reference to a TRACTIVE ROLLING STOCK ITEM. + + + + + + Identifier of a TRACTIVE ROLLING STOCK ITEM. + + + + + + + + + Type for identifier of a TRAILING ROLLING STOCKITEM. + + + + + + Reference to a TRAILING ROLLING STOCK ITEM. +v2.0 + + + + + Type for a reference to a TRAILING ROLLING STOCK ITEM. + + + + + + Identifier of a TRAILING ROLLING STOCK ITEM. + + + + + + + + + Type for a list of ROLLING STOCK INVENTORYs. + + + + + + + + + + + + Type for identifier of a ROLLING STOCK INVENTORY. + + + + + + Reference to a ROLLING STOCK INVENTORY. +v2.0 + + + + + Type for a reference to a ROLLING STOCK INVENTORY. + + + + + + Identifier of a ROLLING STOCK INVENTORY. + + + + + + + + + Type for identifier of a TYPE OF ROLLING STOCK. + + + + + + Reference to a TYPE OF ROLLING STOCK. +V2.0 + + + + + Type for a TYPE OF ROLLING STOCK. + + + + + + Reference to a TYPE OF ROLLING STOCK. + + + + + + +
          diff --git a/xsd/netex_framework/netex_reusableComponents/netex_vehicle_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_vehicle_version.xsd new file mode 100644 index 000000000..f7852d59a --- /dev/null +++ b/xsd/netex_framework/netex_reusableComponents/netex_vehicle_version.xsd @@ -0,0 +1,530 @@ + + + + + + + + + + + + main schema + e-service developers + V1.0 Christophe Duquesne + Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2010-09-04 + + 2011-02-05Name Space changes + + 2017-03-27CR0001 - Vehicle Dimensions added. + + 2019-03-25NL31 CD #60 Add new attributes BoardingHeight and GapToPlatform attributes to VehicleType. + NJSK Review correct data types of new attributes to be of LengthType + + 2021-07-07NewModes-Power Description attribute to NVehicleEquipmentProfile + + 2020-10-05 New Modes: Add Vehicle mode to VehicleType + Refactor VehicleType into TarnsportType, VehicleType and PesonalVehicleType + Replace Vehicle OperatorRef with TransportOrganisationRef. + Add VehicleModelRef to Vehicle. + Add ModelProfileRef to VehicleModel + Add Description to Vehicle. + Add PropulsionType . and MaximumRange to TransportType + + 2021-07-08NewModes: Correction Add missing VehicleEquipmentProfile relationship to VehicleModel + + 2023-01-30TM CR: Enhancement Add Accepted Driver Permit + + 2024-02-07Fix - allow default DEck Plan or TRANSPORT TYPE, move VehiclesInFramegroup her + + +

          NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

          +

          This sub-schema describes the VEHICLE TYPE types.

          +
          + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_vehicleType_version.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + Unclassified + CEN, Crown Copyright 2009-2024 + + +
            +
          • Derived from the Transmodel, VDV, TransXChange, NEPTUNE, BISON and Trident standards.
          • +
          + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx VEHICLE TYPE types. + Standard +
          +
          + VEHICLE data types +
          + + + Elements for a VEHICLE in frame. + + + + + VEHICLEs in frame. + + + + + ROLLING STOCK INVENTORies in frame. +v2.0 + + + + + + + Type for containment in frame of VEHICLEs. NB SLight breaaka v2.0 v2 Vehicle ELement moved to + + + + + + + + + + + + + Type for a list of VEHICLEs. + + + + + + + + An area within a Site. May be connected to Quays by PATH LINKs. + + + + + + + + + A public transport vehicle used for carrying passengers. + + + + + + + + + + + + + + + + + + Identifier of VEHICLE. + + + + + + + + + Type for a VEHICLE. + + + + + + + + + + + + Elements for VEHICLE. + + + + + + + + + + + + ACTUAL EQUIPMENT found in VEHICLE. + + + + + + + Elements for VEHICLE. + + + + + Name of VEHICLE. + + + + + Short Name of VEHICLE or item + + + + + Description +V1.2.2 + + + + + Build date _V2.0 + + + + + Chassis number +V2.0 + + + + + Licence plate of VEHICLE. + + + + + Date of registration or commissioning - may be used to determine the age of a vehice. + + + + + + + Alternative Code Elements for VEHICLE. + + + + + Operational Number of VEHICLE. + + + + + DEPRECATED - use privateCodes + + + + + + + + A specific instance of an elementary unit of rolling stock (e.g., railcar, wagon, locomotive). Its properties are given by a TRAIN ELEMENT TYPE. + + + + + Type for a list of ROLLING STOCK ITEMs. + + + + + + + + An area within a Site. May be connected to Quays by PATH LINKs. + + + + + + + + + A specific instance of an elementary unit of rolling stock (e.g., railcar, wagon, locomotive). Its properties are given by a TRAIN ELEMENT TYPE. + + + + + + + + + + + + + + + + + + Identifier of ROLLING STOCK ITEM. + + + + + + + + + Type for a ROLLING STOCK ITEM. + + + + + + + + + + + + Elements for ROLLING STOCK ITEM. + + + + + + + + Fixed classication of ROLLING STOCK ITEM. + + + + + + Faciliies found in ROLLING STOCK ITEM. + + + + + ACTUAL EQUIPMENT found in ROLLING STOCK ITEM. + + + + + + + + An unpowered item of rolling stock such as a specific passenger carriage, luggage van, passenger vehicle carrier wagon or freight wagon. +v2.0 + + + + + + + + + + + + + + + + + + + + + Identifier of TRAILING ROLLING STOCK ITEM + + + + + + + + + Type for a TRAILING ROLLING STOCK ITEM. + + + + + + + + + + + + Elements for TRAILING ROLLING STOCK ITEM. + + + + + + + + + A powered item of rolling stock, such as a specific locomotive or powered railcar. +v2.0 + + + + + + + + + + + + + + + + + + + + + Identifier of ENTITY. + + + + + + + + + Type for a TRACTIVE ROLLING STOCK ITEM. + + + + + + + + + + + + Elements for TRACTIVE ROLLING STOCK ITEM. + + + + + + + + + Type for a list of ROLLING STOCK INVENTORies.. + + + + + + + A collection of ROLLING STOCK ITEMs of any type used to assemble trains. +v.2.0 + + + + + + + + + + A collection of rolling stock of any type used to assemble trains. +v.2.0 + + + + + + + + + + + + + + + + + + + Identifier of ROLLING STOCK ITEM. + + + + + + + + + Type for a ROLLING STOCK INVENTORY. + + + + + + + + + + + + Elements for ROLLING STOCK INVENTORY + + + + + Name of ROLLING STOCK INVENTORY + + + + + + Faciliies found in ROLLING STOCK ITEM. + + + + + + + + A classification of a ROLLING STOCK ITEM according to its functional purpose. +v1.1. + + + + + Type for a TYPE OF ROLLING STOCK. +v2.0 + + + + + + +
          diff --git a/xsd/netex_part_1/part1_frames/netex_infrastructureFrame_version.xsd b/xsd/netex_part_1/part1_frames/netex_infrastructureFrame_version.xsd index 8bc9a71aa..ed514fe9f 100644 --- a/xsd/netex_part_1/part1_frames/netex_infrastructureFrame_version.xsd +++ b/xsd/netex_part_1/part1_frames/netex_infrastructureFrame_version.xsd @@ -132,7 +132,7 @@ Rail transport, Roads and Road transport - + diff --git a/xsd/netex_part_1/part1_frames/netex_siteFrame_version.xsd b/xsd/netex_part_1/part1_frames/netex_siteFrame_version.xsd index 19915fb12..bc0a7592a 100644 --- a/xsd/netex_part_1/part1_frames/netex_siteFrame_version.xsd +++ b/xsd/netex_part_1/part1_frames/netex_siteFrame_version.xsd @@ -1,9 +1,11 @@ - + + + @@ -26,6 +28,9 @@ 2017-05-27 CR0031 Add Countries to Places in Frame + + 2023-12-10 ENhancement: Add GROUP OF SITEs and GROUP OF TARIFF ZONEs to frame +

          NeTEx Network Exchange Site Frame.

          @@ -144,6 +149,7 @@ Rail transport, Roads and Road transport
          + @@ -153,6 +159,11 @@ Rail transport, Roads and Road transport SITE related elements in frame.
          + + + GROUPS of SITESs in frame. +v2.0 + + GROUPS of STOP PLACEs in frame. @@ -168,6 +179,11 @@ Rail transport, Roads and Road transport STOP PLACEs in frame. + + + TAXI RANKs in frame. + + POINTS OF INTEREST in frame. @@ -209,7 +225,7 @@ Rail transport, Roads and Road transport - Service related elements in frame. + TARIFF ZONE related elements in frame. diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_all_objects.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_all_objects.xsd index 32401e280..269e2f18d 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_all_objects.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_all_objects.xsd @@ -9,7 +9,7 @@ The Purpose of this file is to overcome a technical limitation in Xerces (and po This file provides a single declaration of all the ifopt data elements for use in such an import. --> - + @@ -33,6 +33,8 @@ The Purpose of this file is to overcome a technical limitation in Xerces (and po + + diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_support.xsd index d79d0af66..d460e9c50 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_support.xsd @@ -1,5 +1,5 @@ - + @@ -16,6 +16,10 @@ 2017-10-25 Add TYPE OF CONGESTION. + 2024-01-17DECK PLANS: add ladder to AccesFeatureType enumeration. + + 2024-02-17DECK PLANS: REmodularise Move AccsesFeatureType enumeration to acceeess_Support +

          NeTEx - Network Exchange. This subschema defines common Check types.

          @@ -28,7 +32,7 @@ [ISO 639-2/B] ENG Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX Unclassified - CEN, Crown Copyright 2009-2014 + CEN, Crown Copyright 2009-2024
            @@ -171,7 +175,13 @@ Rail transport, Roads and Road transport - + + + + + DEPRECATED + + @@ -210,42 +220,6 @@ Rail transport, Roads and Road transport - - - Allowed values for an access feature. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Allowed values for a list of access features. - - - Allowed values for a congestion. diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_version.xsd index b4a8f4198..a0707cf8d 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_version.xsd @@ -1,6 +1,7 @@ - + + @@ -26,6 +27,8 @@ 2019-04-09 FIX Make data type of throughut counts NumberOfPassengers. + 2024-02-01 Remodularise - add include to access_support +

            NeTEx - Network Exchange. This subschema defines common Check types.

            @@ -38,7 +41,7 @@ [ISO 639-2/B] ENG Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX Unclassified - CEN, Crown Copyright 2009-2019 + CEN, Crown Copyright 2009-2024
              diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentAccess_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentAccess_support.xsd index 7723faa00..430284650 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentAccess_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentAccess_support.xsd @@ -1,7 +1,6 @@ - - - + + @@ -25,7 +24,11 @@ CD add BorderTypeEnumeration with values _wall, grass, dirt, barrier, road, cyclingLane, step, rail, plants, trees, mud, solidEdge, water, gravel, noPhysicalBorder, otherPhysicalBorder, unknown, other,_ NJSK Review: Move TactileWarningStripEnumeration, here from netex_path_support , use lower camel case for values. - 2021-07-14Fix catch up - Make Access Equipment Abstarct + 2021-07-14Fix catch up - Make Access Equipment Abstarct + + 2024-01-17DECK PLAN and EPIA add DoorType + + 2024-02-05Path refactoring: Move TactileWarningStripEnumeration to path_support. Also cdrop unusued LightingMethod - shoudl be LightingOnMethod

              NeTEx - Network Exchange. This subschema defines ACCESS EQUIPMENT types for Place access.

              @@ -116,6 +119,60 @@ Rail transport, Roads and Road transport + + + Allowed values for DOOR TYPE +2.0 + + + + + Single door, hinged at one side. + + + + + Pair of doors, hinged at either side of ENTRANCE. + + + + + Single door, sliding to one side. + + + + + Pair of sliding doors, sliding apart to each side. + + + + + Single door, folding to one side. + + + + + Pair of folding doors, folding to each side. + + + + + Door hinged at bottom to drop down as boarding ramp. + + + + + Revolving door. Which might be an obstacle for wheelchairs. + + + + + Other type of door + + + + + + @@ -351,18 +408,6 @@ Rail transport, Roads and Road transport - - - Allowed values for TactileWarningStrip - - - - - - - - - @@ -398,18 +443,6 @@ Rail transport, Roads and Road transport - - - Allowed value for Lighting. - - - - - - - - - Allowed values for lighting method. @@ -461,18 +494,6 @@ Rail transport, Roads and Road transport - - - Allowed values for Gradient steepness. - - - - - - - - - Allowed values for entrance attention device. @@ -510,20 +531,6 @@ Rail transport, Roads and Road transport - - - Allowed values for lighting method - - - - - - - - - - - Allowed values for the status of the ground marking diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentAccess_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentAccess_version.xsd index 1f03f061e..90ceaeeee 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentAccess_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentAccess_version.xsd @@ -1,6 +1,7 @@ - + + @@ -25,7 +26,7 @@
              2019-03-25FR49 CD #65 Accessibility changes CD add new attribute NecessaryForceEnumeration with values noForce, lightForce, mediumForce, heavyForce, unknown - CD add new attributeLightingMethod to PlaceLighting with values movementDetector, stepDetector, switchOnTheWall, atDoorOpening, onlyAtNight, other + CD add new attributeLightingOOnMethod to PlaceLighting with values movementDetector, stepDetector, switchOnTheWall, atDoorOpening, onlyAtNight, other NJSK Review: correct typo on stepDetector CD Add new attribute to AccessEquipmene; SafeForGuideDog. CD Add new attribute to StairEquipment; WithoutRiser. @@ -46,11 +47,13 @@ Rename Slope to Gradient to be conistent Move WIthoutRaiser to be specifc to Staircase. - 2019-05-27Doc tidy up + 2019-05-27Doc tidy up Rename Accoustic(six) to AUdio Correct comments - 2021-07-14Fix catch up - Make Access Equipment Abstarct + 2021-07-14Fix catch up - Make Access Equipment Abstarct + + 2024-01-16EPIAP Add EntranceControlHeight to ENTRANCE

              NeTEx - Network Exchange. This subschema defines EQUIPMENT base types.

              @@ -64,7 +67,7 @@ [ISO 639-2/B] ENG Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX Unclassified - CEN, Crown Copyright 2009-2021 + CEN, Crown Copyright 2009-2024
                @@ -1290,6 +1293,11 @@ Rail transport, Roads and Road transport Whether door is revolving. Only applies if door is specified. + + + Type of door; hinged, sliding, etc. +v2.0 + + Whether there is a physical barrier across the doorway. diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_support.xsd index c56cdf9c7..4ec360b86 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_support.xsd @@ -1,5 +1,5 @@ - + @@ -17,6 +17,8 @@ CD add AnnouncementsTriggeringMethodEnumeration with values _presenceDetector, app, internetPage, specificDevice, pushButton_. NK Review rename Acoustic to Audio. rename app value to mobileApp, add cyclicReadingValue + 2024.01.15EPIA Merge in Beacon Point enhancement +

                NeTEx - Network Exchange. This subschema defines PASSENGER EQUIPMENT types for Place access.

                diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_version.xsd index b0d467841..8953355fc 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_version.xsd @@ -1,5 +1,5 @@ - + @@ -102,7 +102,7 @@ Rail transport, Roads and Road transport
                - + A SANITARY FACILITY , e.g. WC, Shower, baby change. @@ -123,7 +123,7 @@ Rail transport, Roads and Road transport - Whether the EQUIPMENT is fixed at a place or min a vehicle. + Whether the EQUIPMENT is fixed at a place or in a vehicle. @@ -251,7 +251,7 @@ Rail transport, Roads and Road transport - + Specialisation of PASSENGER EQUIPMENT for passenger safety features, e.g. panic button, SOS phone. @@ -272,7 +272,7 @@ Rail transport, Roads and Road transport - Whether the EQUIPMENT is fixed at a place or min a vehicle. + Whether the EQUIPMENT is fixed at a place or in a vehicle. @@ -354,7 +354,7 @@ Rail transport, Roads and Road transport - + Specialisation of PASSENGER EQUIPMENT for HELP POINT. @@ -533,7 +533,7 @@ Rail transport, Roads and Road transport - Whether the EQUIPMENT is fixed at a place or min a vehicle. + Whether the EQUIPMENT is fixed at a place or in a vehicle. diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_localService_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_localService_support.xsd index 58c2e599e..6976d3bdc 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_localService_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_localService_support.xsd @@ -53,7 +53,7 @@ Rail transport, Roads and Road transport LOCAL SERVICE identifier types for IFOPT Fixed Objects in Public Transport. - + Reference to a LOCAL SERVICE. diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_navigationPath_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_navigationPath_version.xsd index 6883f9530..23f87dc61 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_navigationPath_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_navigationPath_version.xsd @@ -1,14 +1,12 @@ - + - - - + @@ -28,18 +26,12 @@ 2007-03-22 - 2017-11-08 Move Dsecription prom Path in Seqyence to supertpe lin k in Sequence + 2017-11-08 Move Description from Path in Sequence to supertype link in Sequence + + 2024-02-06 Refactor to share common path elements with new DECK PATH LINKs etc NeTEx Network Exchange - NAVIGATION PATH types. -

                -

                  -
                • STOP PLACE Model
                • -
                • POINT OF INTEREST Model
                • -
                • Topographic Model
                • -
                • Administrative Model
                • -
                -

                text/xml @@ -53,7 +45,7 @@ http://www.netex.org.uk/schemas/1.0/ifopt/netex_ifopt_xxxxx.xsd Unclassified - CEN, Crown Copyright 2009-2014 + CEN, Crown Copyright 2009-2024
                  @@ -89,14 +81,14 @@ Rail transport, Roads and Road transport NAVIGATION PATHs in frame. - + - PATH LINKs in frame. + SITE PATH LINKs in frame. - + - PATH JUNCTIONs in frame. + SITE PATH JUNCTIONs in frame. @@ -107,51 +99,59 @@ Rail transport, Roads and Road transport - - + + + A designated path between two PLACEs. May include an Ordered sequence of references to PATH LINKS. - + - + - Type for containment in frame of PATH LINKs. + Type for containment in frame of SITE PATH LINKs. - - + + A designated path between two PLACEs. May include an Ordered sequence of references to PATH LINKS. - + + + - + - Type for containment in frame of PATH JUNCTIONs. + Type for containment in frame of SITE PATH JUNCTIONs. - - + + + + A designated path between two PLACEs within a SITE. May include an Ordered sequence of references to PATH LINKS. + + + A designated path between two PLACEs. May include an Ordered sequence of references to PATH LINKS. - + - Group of Access related elements. + Group of ACCESS and PATH related elements for a site. @@ -159,7 +159,7 @@ Rail transport, Roads and Road transport PATH LINKs for SITE. - + PATH JUNCTIONs within the SITE and or between the SITE elsewhere. @@ -176,7 +176,7 @@ Rail transport, Roads and Road transport - + Type for a list of NAVIGATION PATHs. @@ -196,11 +196,11 @@ Rail transport, Roads and Road transport - A designated path between two places. May include an ordered sequence of PATH LINKs. + DEPRECATED use SITE NAVIGATION instead - + @@ -212,343 +212,114 @@ Rail transport, Roads and Road transport - - - + + + + - + - - - Type for NAVIGATION PATH. - - - - - - - - - - - - + - Elements of a NAVIGATION PATH. - - - - - Classification of Overall Accessibility of NAVIGATION PATH. - - - - - Classification of Navigation. - - - - - Ordered collection of References to STOP PLACE spaces Use for a branch path. - - - - - Ordered collection of References to PATH LINKs. - - - - - Access Links that NAVIGATION PATH serves. - - - - - - - Elements of a NAVIGATION PATH that summarise properties o the set of PATH LINKs. Will state the strictest constraint found . e.g. if any link forbids wheelchair, the NAVIGATION PATH forbids wheelchair. - - - - - Origin end of NAVIGATION PATH. Only needed if detailed PATH LINKs are not given. - - - - - Destination end of NAVIGATION PATH. Only needed if detailed PATH LINKs not given. - - - - - - MODEs of access which may used at associated place, e.g. foot access, bicycle access. - - - - - Summaries of access features encountered in path. - - - - - Total time needed to navigate path (May be derived from links). - - - - - - - - A collection of one or more PATH LINKs in SEQUENCE. - - - - - - - - - - - - A step in a Navigation PATH. + A designated path between two places. May include an ordered sequence of PATH LINKs. - + - + + + + - + - + - - - Identifier of ENTITY. - - + - + - Type for a step in NAVIGATION PATH. + Type for NAVIGATION PATH. - + - + - + - Elements of a step in a NAVIGATION PATH. + Elements of a SITE NAVIGATION PATH. - - - - Description of reference. - - - - - Whether link is navigated in to / from, i.e. reverse direction . Default is false, i.e. from to. - - - - - Whether step is left right or forward. - - - - - Whether step is up down or level in direction of use. - - - - - Instruction for following path - - - - - Label On step. - - - - - Instructions on how step view should be presented. - - - - - - - + + + - - - - A collection of one or more PLACEs in SEQUENCE. - - - - - - - - - - - - Point traversed by a NAVIGATION PATH in sequence. May be a PLACE PATH JUNCTION or POINT. - - - - - - - - - - - - - - - - - - - - - Identifier of ENTITY. - - - - - - - - - Type for a PLACE in SEQUENCE. - - - - - - - - - - + - Elements of PLACE in SEQUENCE. + Elements of a SITE NAVIGATION PATH that summarise properties o the set of PATH LINKs. Will state the strictest constraint found . e.g. if any link forbids wheelchair, the NAVIGATION PATH forbids wheelchair. - - - Reference to a Place or Site Component , that is QUAY, ACCESS SPACE or BOARDING POSITION or PATH JUNCTION. - - - + - Branching level of place. + Origin end of NAVIGATION PATH. Only needed if detailed PATH LINKs are not given. - + - Onward links from this point. + Destination end of NAVIGATION PATH. Only needed if detailed PATH LINKs not given. - - - - - + - - - - A collection of one or more ACCESS SUMMARies. - - - - - - - - - - - - Summary of a feature used in NAVIGATION PATH. - - - - - - - - - - - - - - - - - - - - Type for ACCESS SUMMARY. - - - - - - - - - - + Elements of a NAVIGATION PATH. - + + + Classification of Overall Accessibility of NAVIGATION PATH. + + + - Type of access feature, e.g. lift, stairs, + Classification of Navigation. - + - Count of feature, e.g. number of lifts, stairs. + Ordered collection of References to STOP PLACE spaces Use for a branch path. - + - Nature of access feature transition e.g. up or down. + Ordered collection of References to PATH LINKs. + + + + + Access Links that NAVIGATION PATH serves. diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_path_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_path_support.xsd index 23263b8f8..0c4e59eee 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_path_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_path_support.xsd @@ -1,8 +1,7 @@ - - - - + + + @@ -18,9 +17,11 @@ 2011-12-16 2019-03-25FR49 CD #65 Accessibility changes - CD add CodedTiltEnumeration with values _strongLeftTilt, mediumLeftTilt, nearlyFlat, mediumRightTilt, strongRightTilt, unknown_. + CD add CodedTiltEnumeration with values _strongLeftTilt, mediumLeftTilt, nearlyFlat, mediumRightTilt, strongRightTilt, unknown_. Revise name of ___CodedTilt___ to ___TiltType___ to be consistent + 2024-02-05Factor out common PATH LINK to generic file shared with DECK PATH +

                  NeTEx - Network Exchange. This subschema defines PATH types.

                  @@ -56,365 +57,166 @@ Rail transport, Roads and Road transport Standard
                  - PATH identifier types for IFOPT Fixed Objects in Public Transport. + NeTEx: PATH identifier types for IFOPT Fixed Objects in Public Transport.
                  - - + + - Type for a list of references to a PATH LINK. + Type for a list of references to a SITE PATH LINK. - + - + - Type for identifier of a PATH LINK. + Type for identifier of a SITE PATH LINK. - + - + - Reference to a PATH LINK. + Reference to a SITE PATH LINK. - + - Type for a reference to a PATH LINK. + Type for a reference to a SITE PATH LINK. - - + + - Identifier of a PATH LINK. + Identifier of a SITE PATH LINK. - - + - Reference to a PATH LINK BY VALUE. + Reference to a SITE PATH LINK. DEPRECATED use SitePathLinkRef+v2.0 - + + - Type for a reference to a PATH LINK BY VALUE. + Type for identifier of a SITE PATH JUNCTION. - - - - - Identifier of a POINT. at which LINK starts. - - - - - Identifier of a POINT. at which LINK ends. - - - - - Class of POINT referenced by LINK. - - - - - - - - - Type for identifier of a PATH JUNCTION. - - + - + - Reference to a PATH JUNCTION. + Reference to a SITE PATH JUNCTION. - + - Type for a reference to a PATH JUNCTION. + Type for a reference to a SITE PATH JUNCTION. - - + + - Identifier of a PATH JUNCTION. + Identifier of a SITE PATH JUNCTION. - - - - + - Type for a list of references to a NAVIGATION PATH. + Depreceated - use SitePathJunctionRef +v2.0 + + + + + + Type for a list of references to a OFF SITE PATH LINK. - - - + + + + - + - Type for identifier of a NAVIGATION PATH. + Type for identifier of a OFF SITE PATH LINK. - + - + - Reference to a NAVIGATION PATH. + Reference to a OFF SITE PATH LINK. - + - Type for reference to a NAVIGATION PATH. + Type for a reference to a OFF SITE PATH LINK. - - + + - Identifier of a NAVIGATION PATH. + Identifier of a OFF SITE PATH LINK. - - - Type for identifier of a NAVIGATION PATH. - - - - - - Allowed values for flow direction. - - - - - - - - - - Allowed values for path transition. - - - - - - - - - - - - Allowed values for path heading. - - - - - - - - - - - Allowed values for Navigation type. - - - - - - - - - - - - - - - - - - - - - Allowed values for tilt. +v1.1 - - - - - - - - - - - - - Allowed values for flooring. - - - - - - - - - - - - - - - - - - - - - - - - + + - Allowed values for border types + Type for a list of references to a SITE NAVIGATION PATH. - - - - - - - - - - - - - - - - - - - - - - - - - Allowed values for the status of the flooring. - - - - - - - - - - - - Allowed values for the status of the Tactile Guiding Strip. - - - - - When the guiding strip has the expected quality level. - - - - - When there is no guiding strip as such but a decorative element or ledge can be used for this purpose. - - - - - When there is a guiding strip but it does not correspond to a path that can actually be used (passes through the middle of an obstacle without going around it for example). - - - - - When the guiding strip is degraded and difficult to interpret. - - - - + + + + + + + + - + - Type for identifier of place step in a NAVIGATION PATH. + Type for identifier of a SITE NAVIGATION PATH. - + - + - Reference to a PLACE IN SEQUENCE. If given by context does not need to be stated. + Reference to a SITE NAVIGATION PATH. - + - Type for reference to a PLACE IN SEQUENCE. + Type for reference to a SITE NAVIGATION PATH. - - + + - Identifier of a PLACE IN SEQUENCE. + Identifier of a SITE NAVIGATION PATH. - - + - Type for identifier of link step in a PATH LINK IN SEQUENCE. - - - - - - Reference to a PATH LINK IN SEQUENCE. If given by context does not need to be stated. + DEPRECATED use Reference to a SIteNavigationPath v.20 - - - Type for Reference to a PATH LINK IN SEQUENCE. - - - - - - Identifier of a PATH LINK IN SEQUENCE. - - - - - - - - Type for identifier of a PATH LINK VIEW> - - -
                  diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_path_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_path_version.xsd index 696091e3c..a657555a0 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_path_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_path_version.xsd @@ -1,6 +1,7 @@ - + + @@ -32,10 +33,10 @@ Revise name of ___PathLink___ new attribute ___CodedTilt___ to ___TiltType___ to be consistent Also add new attributes ___MaximumGradient___ and MaximumGradientType___ to ___PathLink___ + 2024-02-05Revise to share common features with DECK PATH LINK, add OffSItePathLink + NeTEx Network Exchange - PATH types. -

                  -

                  text/xml @@ -72,150 +73,75 @@ Rail transport, Roads and Road transport Standard - IFOPT STOP PLACE Model. + IFOPT PATH LINK Model. - + - Common elements of a PATH. + Elements of an OFF SITE PATH LINK. - - - + - Maximum number of passengers who can traverse PATH LINK per minute. + Description of PATH LINK. + + + + - + - Common Navigation elements of a PATH. + Type for an OFF SITE PATH LINK END. - - - Direction heading to show for PATH LINK when travelling in its FROM / TO sense. - - - - - Direction heading to show for PATH LINK when travelling in its TO / FROM sense. - - - - - Number of steps to take PATH LINK. - - - - - Minimum Height of PATH LINK. +v1.1 - - - - - Minimum Width of PATH LINK. +v1.1 - - - - - Allowed direction of use: one way or two way. Default is two way. - - - - - Whether PATH LINK is up down or level in from to direction. - - - - - Maximum gradient in degrees (in the direction of the PATH LINK way). +v1.1 - - - - - Coded value of the maximum gradient.+v1.1 - - - + + + + + DEPRECATED: Reference to a PLACE, including QUAY, ACCESS SPACE, BOARDING POSITION or other node of a SITE. Use more specifc SITE COMPONENT. -v2.0 + + + + - Maximum Tilt angle in degrees between -20 and 20 (in the direction of the PATH LINK way). +v1.1 + Reference to a LEVEL on which SITE COMPONENT is found. - + - Coded value of the maximum tilt. See allowed va;ues. +v1.1 + Reference to an ENTRANCE of a PLACE. - - +
                  + - Common Description elements of a PATH. + Elements of a PATH SITE ELEMENT. - - - Type of physical feature of PATH LINK. - - - - - Type of passage feature of PATH LINK. - - - - - Type of flooring of the walking surface. +v1.1 - - - - - Status of the flooring. - - - - - Type of border on the right side (in the direction of the PATH LINK). - - - - - Type of border on the left side (in the direction of the PATH LINK). +v1.1 - - - - - Nature of the tactile warning strips (in the direction of the PATH LINK). +v1.1 - - - - - Indicates whether the color of the possible warning strip is sufficiently contrasted with the color of the floor. - - - - - Indicates whether there are guiding strips. +v1.1 - - - + + + + + - Provides additional details on possible guiding strip. + Allowed MODEs to use in component. + - - + + - A link between any 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. + A link outside of a SITE between any two PLACEs ( PKACES PATH JUNCTIONs) that represents a step in a possible route for pedestrians, cyclists or other out of vehicle passengers within or between a PLACE. +v2.0 - + @@ -227,103 +153,52 @@ Rail transport, Roads and Road transport - + + + + - + + + Identifier of ENTITY. + + - + - Type for a PATH LINK. + Type for an OFF SITE PATH LINK. - + - + - + - Elements of a PATH LINK. + Elements of an OFF SITE PATH LINK. - + Origin end of PATH LINK. - + Destination end of PATH LINK. - - - Description of PATH LINK. - - - - - - - - - - Duration properties of a LINK. - - - - - Timings for the transfer. - - - - - - - Type for a PATH LINK ENd. - - - - - Reference to a PLACE, including QUAY, ACCESS SPACE, BOARDING POSITION or other node of a SITE. - - - - - Reference to a LEVEL on which SITE COMPONENT is found. - - - - - Reference to an ENTRANCE of a PLACE. - - - - - - - Elements of a PATH SITE ELEMENT. - - - - - - - - - Allowed MODEs to use in component. - - - + - + Type for a list of SITE PATH LINKs. @@ -331,7 +206,7 @@ Rail transport, Roads and Road transport - + PATH LINK for a SITE. @@ -359,14 +234,13 @@ Rail transport, Roads and Road transport - + - - + @@ -376,9 +250,8 @@ Rail transport, Roads and Road transport Type for a SITE PATH LINK. - + - @@ -389,39 +262,88 @@ Rail transport, Roads and Road transport Elements of a SITE PATH LINK. + + + Origin end of PATH LINK. + + + + + Destination end of PATH LINK. + + + + + Elements of a fixed PATH LINK. + + Additional public label for the SITE PATH LINK + - - - + + + DEPRECATED - use SITE PATH LINK + + + + + + + + + + + + + + + + + + + + + + + + + + + + - Type for a list of PATH JUNCTIONs. + Type for a list of SITE PATH JUNCTIONs. - - + + PATH JUNCTION for a SITE. + + + Preferably use SITE PATH JUNCTION in future. + + - + - A designated point, inside or outside of a STOP PLACE or POINT OF INTEREST, at which two or more PATH LINKs may connect or branch. + A designated point, inside a SITE ie STOP PLACE or POINT OF INTEREST, at which two or more PATH LINKs may connect or branch. - + @@ -433,29 +355,32 @@ Rail transport, Roads and Road transport - + + + + - + - + - Type for a PATH LINK VIEW. + Type for a SITE PATH JUNCTION. - + - + - + - Elements of a PATH JUNCTION. + Elements of a SITE PATH JUNCTION. @@ -478,89 +403,38 @@ Rail transport, Roads and Road transport PATH JUNCTION is within the referenced SITE COMPONENT. + + + Items of fixed EQUIPMENT that may be lused at the spot 0 in a particular SIGN EQUIPMENT and BEACON EQUIPMENT. +v2.0 + + - - + - A VIEW of a PATH LINK used to select items for presentation. + DEPRECATED: Use SITE PATH JUNCTION. Designated point, inside a SITE ie STOP PLACE or POINT OF INTEREST, at which two or more PATH LINKs may connect or branch. -v2.0 - + - - - Whether link should be hidden in the PATH LINK VIEW. - - - - - Whether destination of PATH LINK should be hidden. - - - - - Whether ENTRANCE on beginning of PATH LINK should be shown as separate step in view. - - - - - Whether exit at end of PATH LINK should be shown as separate step in view. - - - - - Whether Heading element should be shown as separate step in view e.g. turn left right. - - + + + + + + + + + + - - - Identifier of Object of which this is a view. - - + - - - Type for a PATH LINK VIEW. - - - - - - - Whether link should be hidden in the PATH LINK VIEW. - - - - - Whether destination of PATH LINK should be hidden. - - - - - Whether ENTRANCE on beginning of PATH LINK should be shown as separate step in view. - - - - - Whether exit at end of PATH LINK should be shown as separate step in view. - - - - - Whether Heading element should be shown as separate step in view e.g. turn left right. - - - - - - diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_support.xsd index f5a340c94..b1bee8829 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_support.xsd @@ -1,5 +1,5 @@ - + @@ -17,7 +17,11 @@ 2019-03-25Fix #39 by Skinkie from 2019.01.07 Fix typo on ServiceSiteRefStructure - 2020-20-05New Modes Fix: add sportsm transport, government and culturalAttraction to SiteType enumeration + 2020-20-05New Modes Fix: add sportsm transport, government and culturalAttraction to SiteType enumeration + + 2023-12-10TM v6.2: Add GROUP OF SITES, SITE STRUCUCTURE and LEVEL IN STRUCTURE + + 2024-01-15PATH DECPLAN REmodularise - move PublicUseEnumeration CoveredEnumeration GatedEnumeration AccessSpaceTypeEnumeration PassageTypeEnumeration to netex_environment_support

                  NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                  @@ -58,8 +62,35 @@ Rail transport, Roads and Road transport Standard - NeTEX: SITE idenifier types. + NeTEX: SITE identifier types.
                  + + + + Reference to a GROUP OF SITEs. + + + + + Type for a GROUP OF SITEs. + + + + + + Identifier of a GROUP OF SITEs. + + + + + + + + Type for identifier of a GROUP OF SITEs. + + + + Identifier for a SITE ELEMENT. @@ -85,7 +116,7 @@ Rail transport, Roads and Road transport
                  - + Identifier for a SITE. @@ -123,7 +154,7 @@ Rail transport, Roads and Road transport
                  - + Identifier for a SERVICE SITE. @@ -149,7 +180,7 @@ Rail transport, Roads and Road transport
                  - + Type for identifier of a SITE COMPONENT. @@ -175,7 +206,7 @@ Rail transport, Roads and Road transport
                  - + Type for identifier of a LEVEL. @@ -201,7 +232,71 @@ Rail transport, Roads and Road transport
                  - + + + + Identifier for a SITE STRUCTURE. + + + + + + Reference to a SITE STRUCTURE. + + + + + Type for identifier of a SITE STRUCTURE. + + + + + + Identifier of a SITE STRUCTURE. + + + + + + + + Type for a collection of one or more SITE STRUCTUREs. + + + + + + + + + + + + + Type for identifier of a LEVEL IN STRUCTURE. + + + + + + Reference to LEVEL of a LEVEL IN STRUCTURE. + + + + + Type for a reference to a LEVEL IN STRUCTURE. + + + + + + Identifier of a LEVEL IN STRUCTURE. + + + + + + Type for identifier of ENTRANCE. @@ -221,7 +316,7 @@ Rail transport, Roads and Road transport - Identifier of a PLACE. + Identifier of an ENTRANCE. @@ -239,7 +334,7 @@ Rail transport, Roads and Road transport - + Type for identifier of a VEHICLE ENTRANCE. @@ -259,13 +354,13 @@ Rail transport, Roads and Road transport - Identifier of a PLACE. + Identifier of a VEHICLE ENTRANCE. - + Identifier for an ACCESS ZONE. @@ -286,40 +381,6 @@ Rail transport, Roads and Road transport - - - Allowed values for public use. - - - - - - - - - - - - Allowed values for covered. - - - - - - - - - - - - Allowed values for gated. - - - - - - - Allowed values for ENTRANCE type. @@ -358,43 +419,6 @@ Rail transport, Roads and Road transport - - - Allowed values for ACCESS SPACE TYPEs. - - - - - - - - - - - - - - - - - - - - - - - Allowed values for Passage Types. - - - - - - - - - - - Types of SITE. diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_version.xsd index b99642a1d..f9b8f35d2 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_version.xsd @@ -1,5 +1,5 @@ - + @@ -8,6 +8,7 @@ + @@ -23,10 +24,12 @@ 2010-09-04 - 2011-02-05Name Space changes + 2011-02-05Name Space changes 2020-10-10New Modes : Add PRESENTATGION To Site ELement + 2023-12-10Enhancement TM v6.2: Add GROUP OF SITES, SITE STRUCTURE and LEVEL IN STRUCTURE +

                  NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                  This sub-schema describes the SITE types.

                  @@ -68,6 +71,7 @@ Rail transport, Roads and Road transport NeTEx: SITE types.
                  + A physical PLACE to which passengers may go. May have ACCESSIBILITY ASSESMENT and other properties to describe it. @@ -129,36 +133,7 @@ Rail transport, Roads and Road transport Detailed properties of a SITE ELEMENT. - - - Whether the component is available for public use or is restricted. - - - - - Whether the component is Indoors or outdoors. Default is Indoors. - - - - - Whether the component is within a gated area or freely accessible without a pass or ticket. - - - - - Whether the component is lit or not. Default is well Lit. - - - - - Whether all areas of the component are wheelchair accessible. - - - - - Total number of people that component can contain. - - + Presentation defaults for SITE ELEMENT. +V1.2.2 @@ -188,7 +163,7 @@ Rail transport, Roads and Road transport - + A type of PLACE, such as a STOP PLACE, POINT OF INTEREST or ADDRESS, to which passengers may wish to travel. @@ -254,7 +229,12 @@ Rail transport, Roads and Road transport - Entrances to and within SITE. + ENTRANCEs to and within SITE. + + + + + SITE STRUCTUREs within SITE. +v2.0 @@ -282,7 +262,7 @@ Rail transport, Roads and Road transport - + An element of a SITE describing part of its structure. SITE COMPONENTs share common properties for accessibility and other features. @@ -334,7 +314,7 @@ Rail transport, Roads and Road transport - + Type for a list of ENTRANCEs. @@ -439,7 +419,7 @@ Rail transport, Roads and Road transport - + Type for a list of VEHICLE ENTRANCEs. @@ -522,7 +502,7 @@ Rail transport, Roads and Road transport - + Type for a list of LEVELs. @@ -623,7 +603,205 @@ Rail transport, Roads and Road transport - + + + + Type for list of GROUP OF SITES. + + + + + + + + + + + + A grouping of SITEs which will be commonly referenced for a specific purpose. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + Type for GROUP OF SITES. + + + + + + + + + + + + Elements for GROUP OF SITES. + + + + + + Alternative names. + + + + + Public code for GROUP OF SITES. + + + + + SITEs in a GROUP OF SITEs + + + + + + + Elements for GROUP OF SITES. + + + + + Centre Coordinates of ZONE. + + + + + + Projections of SITE onto another layer. + + + + + + + + Type for list of SITE STRUCTURES. + + + + + + + + + + + + A building or a separate part thereof within a SITE. +v2.0 + + + + + Type for a SITE STRUCTURE. + + + + + + + + + + + + Elements of a SITE STRUCTURE. + + + + + Name of GROUP OF ENTITies. + + + + + Further Description of a GROUP OF ENTITies. + + + + + + LEVELs found within a SITE. + + + + + + + + Type for a list of ENTRANCEs. + + + + + + + + + + + + A LEVEL that is accessible in a SITE STRUCTURE with its relative lateral order in that SITE STRUCTURE counted from the bottom and upwards. +v2.0 + + + + + Type for LEVEL IN STRUCTURE. + + + + + + + + + Order of LEVEL IN STRUCTURE within SITE STRUCTURE. + + + + + + + + Elements of a LEVEL IN STRUCTURE. + + + + + Label associated with LEVEL within SITE STRUCTURE. + + + + + Name of Level in SITE STRUCTURE. + + + + + + Type for a list of ACCESS ZONEs. @@ -702,7 +880,7 @@ Rail transport, Roads and Road transport - + A sub-type of SITE which is of specific interest for the operator (e.g. where a joint service or a joint fee is proposed). diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_support.xsd index 217c0f14d..92bd9129e 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_support.xsd @@ -38,8 +38,7 @@ [ISO 639-2/B] ENG Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX Unclassified - CEN, Crown Copyright 2009-2019 - + CEN, Crown Copyright 2009-2019
                  • Derived from the SIRI standards.
                  • @@ -296,30 +295,6 @@ Rail transport, Roads and Road transport - - - - Type for Unique Reference to SITE PATH LINK. - - - - - - - - Type for reference to a SITE PATH LINK. - - - - - - Identifier of a PATH LINK. - - - - - - The plate identifier placed on the stop. diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_version.xsd index 21c5a8eab..6a92bb715 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_version.xsd @@ -105,14 +105,14 @@ Rail transport, Roads and Road transport - Type for containment in frame of STOP PLACE, VEHICLE MEETING POINT, TAXI RANK. + Type for containment in frame of STOP PLACE - + - Can be a STOP PLACE, VEHICLE MEETING POINT, TAXI RANK. + A STOP PLACE. @@ -1286,7 +1286,7 @@ contained within its parent QUAY. - + Order of element. @@ -1356,7 +1356,7 @@ contained within its parent QUAY. - + Order of attribute diff --git a/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_support.xsd new file mode 100644 index 000000000..924e003d8 --- /dev/null +++ b/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_support.xsd @@ -0,0 +1,86 @@ + + + + + + + + main schema + e-service developers + Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + 2024-02-28YM Extension + + + 201402-28 + + +

                    NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                    +

                    This sub-schema describes the RECHARGING POINT ASSIGNMENT types.

                    +
                    + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_rechargingPointAssignmente_support.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + Unclassified + CEN, Crown Copyright 2003-2024 + + +
                      +
                    • Derived from the Transmodel, VDV, standards.
                    • +
                    + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx RECHARGING POINT ASSIGNMENT identifier types. + Standard +
                    +
                    + NeTEX: RECHARGING POINT ASSIGNMENT identifier types. +
                    + + + + Identifier for a RECHARGING POINT ASSIGNMENT. + + + + + + Reference to a RECHARGING POINT ASSIGNMENT. + + + + + Type for reference to a RECHARGING POINT ASSIGNMENT. + + + + + + Identifier of a RECHARGING POINT ASSIGNMENT. + + + + + + +
                    diff --git a/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd new file mode 100644 index 000000000..9f7fa8e3d --- /dev/null +++ b/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd @@ -0,0 +1,120 @@ + + + + + + + + + + + + main schema + e-service developers + V1.0 Christophe Duquesne + Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + 2024-02-27Transmodel extension + + + 2024-02-27 + + +

                    NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                    +

                    This sub-schema describes the RECHARGING POINT ASSIGNMENT types.

                    +
                    + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_1/part1_ifopt}netex_rechargingPointAssignment_version.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + Unclassified + CEN, Crown Copyright 2023-2024 + + +
                      +
                    • Derived from the Transmodel, VDV, standards.
                    • +
                    + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx SITE types. + Standard +
                    +
                    + NeTEx: RECHARGING POINT ASSIGNMENT types. +
                    + + + + RECHARGINGPOINT ASSIGNMENT related elements in frame. + + + + + RECHARGING POINTs in frame. +v2.0 + + + + + + + Type for a lsit of RECHARGING POINT ASSIGNMENTs. + + + + + + + Can be a STOP PLACE, VEHICLE MEETING POINT, TAXI RANK. + + + + + + + + + The allocation of a TIMING POINT to a SITE COMPONENT such as a PARKING BAY that has VEHICLE CHARGING EQUIPMENT. +v2.0 + + + + + Type for a RECHARGING POINT ASSIGNMENT. + + + + + + + + + + Elements of a RECHARGING POINT ASSIGNMENT. + + + + + + + + + +
                    diff --git a/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_version.xsd index 839197dd6..650fb988c 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_version.xsd @@ -60,9 +60,25 @@ Rail transport, Roads and Road transport TAXI PLACE data types
                    + + + Type for containment in frame of TAXI RANKs. + + + + + + + TAXI RANK. + + + + + + - A place comprising one or more locations where taxis may stop to pick up or set down passengersA place comprising one or more locations where taxis may stop to pick up or set down passengers. +v1.2.2 + A place comprising one or more locations where taxis may stop to pick up or set down passengers. +v1.2.2 diff --git a/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_support.xsd index a906eeef0..902c75c5a 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_support.xsd @@ -82,7 +82,7 @@ Rail transport, Roads and ROAD transport Identifier of referenced entity. - + Relative order of element. diff --git a/xsd/netex_part_1/part1_networkDescription/netex_routeInstruction_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_routeInstruction_version.xsd index a5783b63c..7d3ce33ab 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_routeInstruction_version.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_routeInstruction_version.xsd @@ -1,6 +1,6 @@ - - + + @@ -20,7 +20,10 @@ - 2017-03-28 CR_038 Add missing type of value tsubst group o DIRECTION + 2017-03-28 CR_038 Add missing type of value to subst group of DIRECTION + + + 2024-02-16 Revesie to use generic deck_plan_support , not ifopt

                    NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                    @@ -38,7 +41,7 @@ http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd Unclassified - CEN, Crown Copyright 2009-2017 + CEN, Crown Copyright 2009-2024
                      @@ -61,11 +64,10 @@ Rail transport, Roads and Road transport Standard - NeTEx ROUTE types. + NeTEx ROUTE INSTRUCTION types. - - + Type for a list of ROUTE INSTRUCTIONs. @@ -114,7 +116,7 @@ Rail transport, Roads and Road transport - + Relative order @@ -167,5 +169,4 @@ Rail transport, Roads and Road transport - diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_support.xsd index 2e789ef0c..c9c61ed5b 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_support.xsd @@ -79,7 +79,7 @@ Rail transport, Roads and Road transport Version number of referenced entity. - + Relative oOrder of ASSIGNMENT. diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_version.xsd index 4ea754234..2a13978fc 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_version.xsd @@ -356,7 +356,7 @@ LOGICAL DISPLAY corresponds to a SIRI STOP MONITORING point. Reference to RESPONSIBILITY SET for managing the object. If absent, then responsibility is same as for containing context of this object. - + Order in which to show ASSIGNMENT, diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_pathAssignment_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_pathAssignment_version.xsd index 36db8ea1f..b0f3c1279 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_pathAssignment_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_pathAssignment_version.xsd @@ -106,7 +106,10 @@ Rail transport, Roads and Road transport - + + + + diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_version.xsd index 008a0cdf4..85aaf24ea 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_version.xsd @@ -20,7 +20,7 @@ 2010-09-04 - 2011-02-05Name Space changes + 2011-02-05Name Space changes 2017-05-19CRT040 Allow type attribute on Public and ShortCode. Backwards compatible. Add NameSuffix to SchedueldStopPoint @@ -31,7 +31,7 @@ 2019-02-21Remove commented out old Section code - 2019-03-25Merge in Corrections to comments as per SBB20 #55 Correct camel case on StopPoinInXXX groups. + 2019-03-25Merge in Corrections to comments as per SBB20 #55 Correct camel case on StopPoinInXXX groups. 2019-03-25 NL48 CD #64 Add new attributes for advertising of stop; Print and Dynamic to StopPointInPattern. @@ -42,7 +42,7 @@ 2019-03-01Comment SBB20 Extension of ConnectionEnd (submode and transportOrganisation) - 2023-12-18FIX: revise the #525 implementation of BOOKING ARRANGEMENT and SERVICE BOOKING ARRANGEMENT, + 2023-12-18FIX: revise the #525 implementation of BOOKING ARRANGEMENT and SERVICE BOOKING ARRANGEMENT,

                      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                      @@ -166,9 +166,10 @@ Rail transport, Roads and Road transport - - - + + + +
                      diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_version.xsd index 77fe9293b..5610a25ca 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_version.xsd @@ -1,10 +1,10 @@ - + - + @@ -12,7 +12,7 @@ main schema e-service developers Europe - First drafted for version 1.0 CEN TC278 WG3 SG6 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + First drafted for version 1.0 CEN TC278 WG3 SG6 Editor Nicholas Knowles. mailto:schemer@netex.org.uk 2010-09-04 @@ -21,9 +21,13 @@ 2012-03-04Revise attributes of StopAssignment MODEL CHANGE - 2017-06-03CR0040 Allow inlining of STOP POINT, STOP PLACE, QUAY etc so as to iimprove packaging (no semantic change) + 2017-06-03CR0040 Allow inlining of STOP POINT, STOP PLACE, QUAY etc so as to iimprove packaging (no semantic change) - 2017-06-03CR0051 CD Allow reference to JOURNEY PATTERN on SYNAMIC STOP ASSIGNMENT. + 2017-06-03CR0051 CD Allow reference to JOURNEY PATTERN on DYNAMIC STOP ASSIGNMENT. + + 2023-12-12Add DECK ENTRANCE ASSIGNMENT + + 2024-02-08Add Directional attributes as per MS suggestions: ArrivesForwards, DpeartsForwards ArrivesFrom, Left DepartsToRight . corrected name of trainStopAssignments

                      NeTEx - Network Exchange. This subschema defines common STOP ASSIGNMENT types.

                      @@ -131,11 +135,43 @@ Rail transport, Roads and Road transport - Reference or inline declaration of SCHEDULED STOP POINT which is being assigned + Reference or inline declaration of SCHEDULED STOP POINT which is being assigned. + + + Directional elements for a STOP ASSIGNMENT. +v2.0 + + + + + + + Directional elements for a STOP ASSIGNMENT. + + + + + Whether VEHICLE or TRAIN arrives at stop travelling in a forwards direction, i.e. operational orientation. Default is true. +v2.0 + + + + + Whether VEHICLE or TRAIN departs from stop travelling in a forwards direction, i.e. operational orientation. Default is true.. Default is true. +v2.0 + + + + + Whether VEHICLE or TRAIN is expected to arrive at the QUAY from the left of a bystander facing the track edge of the platform. Default is true. +v2.0 + + + + + Whether VEHICLE or TRAIN is expected to depart from the QUAY to the right of a bystander facing the track edge of the platform. Default is true. +v2.0 + + @@ -189,7 +225,7 @@ Rail transport, Roads and Road transport - STOP PLACE to which SCHEDULED STOP POINT is to be assigned. + STOP PLACE to which SCHEDULED STOP POINT is to be assigned. @@ -203,21 +239,33 @@ Rail transport, Roads and Road transport - BOARDING POSITION to which SCHEDULED STOP POINT is to be assigned. + BOARDING POSITION to which SCHEDULED STOP POINT is to be assigned. - - - Train elements to which SCHEDULED STOP POINT is to be assigned. - - - - - - - + + + + Train stop assignments elements to use for which SCHEDULED STOP POINT is to be assigned. +v2.0 + + + + + + + + + + Train elements to which SCHEDULED STOP POINT is to be assigned. DEPRECATED -v2.0 + + + + + + + + @@ -264,7 +312,7 @@ Rail transport, Roads and Road transport - Elements for a DYNAMIC PASSENGER STOP ASSIGNMENT. Original PASSENGER STOP ASSIGNMENT for which this is a change. + Elements for a DYNAMIC PASSENGER STOP ASSIGNMENT. Original PASSENGER STOP ASSIGNMENT for which this is a change. @@ -355,18 +403,27 @@ Rail transport, Roads and Road transport - BOARDING POSITION to which SCHEDULED STOP POINT is to be assigned. + BOARDING POSITION to which TRAIN COMPONENT at SCHEDULED STOP POINT is to be assigned. + + + + + Whether assigment permits or forbids any use of TRAIN COMPONENT at specifed stop. Default is true. +V2.0 - A specific ENTRANCE to the VEHICLE. E.g. Front, rear. + Text description of A specific ENTRANCE to the VEHICLE. E.g. Front, rear. NB DECK ENTRANCE ASSIGNMENT can be used to make structured reference. + + + + + Explicit assignment of a DECK ENTRANCE to a BOARDING POSITION. +V2.0 - View of an assignment of a SCHEDULED STOP POINT to a STOP PLACE and quay. etc. @@ -418,7 +475,7 @@ Rail transport, Roads and Road transport - + Order of Assignment. diff --git a/xsd/netex_part_2/part2_frames/netex_timetableFrame_version.xsd b/xsd/netex_part_2/part2_frames/netex_timetableFrame_version.xsd index 4aabad0c7..fe39fc61d 100644 --- a/xsd/netex_part_2/part2_frames/netex_timetableFrame_version.xsd +++ b/xsd/netex_part_2/part2_frames/netex_timetableFrame_version.xsd @@ -1,9 +1,10 @@ - + + @@ -17,11 +18,17 @@ 2017-05-09 Add Header 2019-03-25CR 51 CD Add VehicleJourneyStop Assignment. - NJSK Review make vehicleJourneyStopAssignmentsInFrame_RelStructure lower camel case consistent with NeTEx conventions. + NJSK Review make vehicleJourneyStopAssignmentsInFrame_RelStructure lower camel case consistent with NeTEx conventions. Also correct some documentation comments 2020-10-08New Modes: Widen VehicleType to TransportType + First Drafted for version 1.0 CEN TC278 WG3 SG6 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2010-09-04 + + 2023-02-12Add DECK PLAN ASSIGNMENTs +

                      NeTEx - Network Exchange. This subschema defines TIMETABLE FRAME types.

                      @@ -106,7 +113,7 @@ Rail transport, Roads and Road transport - Default properties of elements in TIMETABLE FRAME. Use these values on child elements if not specified on individual elements. + Default properties of elements in TIMETABLE FRAME. Use these values on child elements if not specified on individual elements. @@ -119,7 +126,7 @@ Rail transport, Roads and Road transport - Default properties of elements in TIMETABLE FRAME. Use these values if not specified on individual elements. + Default properties of elements in TIMETABLE FRAME. Use these values if not specified on individual elements. @@ -166,7 +173,7 @@ Rail transport, Roads and Road transport - Properties of journeys in TIMETABLE FRAME. + Properties of journeys in TIMETABLE FRAME. @@ -176,7 +183,7 @@ Rail transport, Roads and Road transport - FREQUENCY GROUPs In frame. Can be used to template VEHICLE JOURNEYs. + FREQUENCY GROUPs In frame. Can be used to template VEHICLE JOURNEYs. @@ -191,17 +198,22 @@ Rail transport, Roads and Road transport - JOURNEY COUPLINGs in frame. + JOURNEY COUPLINGs in frame. - JOURNEY COUPLINGs in frame. + COUPLED JOURNEYs in frame. - SERVICE FACILITies in frame. + SERVICE FACILITies in frame. + + + + + DECK PLAN ASSIGNMENTs in frame. diff --git a/xsd/netex_part_2/part2_frames/netex_vehicleScheduleFrame_version.xsd b/xsd/netex_part_2/part2_frames/netex_vehicleScheduleFrame_version.xsd index 9b7a3ceef..ad7fd8f49 100644 --- a/xsd/netex_part_2/part2_frames/netex_vehicleScheduleFrame_version.xsd +++ b/xsd/netex_part_2/part2_frames/netex_vehicleScheduleFrame_version.xsd @@ -4,6 +4,7 @@ + @@ -50,6 +51,7 @@ + diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_all_objects_part2_journeyTimes.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_all_objects_part2_journeyTimes.xsd index 9d8ef4f75..4d4cbdbeb 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_all_objects_part2_journeyTimes.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_all_objects_part2_journeyTimes.xsd @@ -1,5 +1,5 @@ - + @@ -7,6 +7,10 @@ + + + + diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_coupledJourney_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_coupledJourney_support.xsd index 9ae77e512..330fd9bdf 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_coupledJourney_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_coupledJourney_support.xsd @@ -245,6 +245,18 @@ Rail transport, Roads and Road transport + + + A collection of one or more references to a BLOCK. + + + + + + + + + Type for identifier of a BLOCK. diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_coupledJourney_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_coupledJourney_version.xsd index ba35c8e4a..a79f58ce3 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_coupledJourney_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_coupledJourney_version.xsd @@ -159,7 +159,7 @@ Rail transport, Roads and Road transport - + Order of JOURNEY PART within JOURNEY. @@ -303,7 +303,7 @@ of the corresponding VEHICLE TYPE. true for forward. - + Order of JOURNEY PART POistion within JOURNEY PART. diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_support.xsd new file mode 100644 index 000000000..ed07641da --- /dev/null +++ b/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_support.xsd @@ -0,0 +1,102 @@ + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-02-12 + + 2023-02-12 + Name Space changes + + +

                      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                      +

                      This sub-schema describes the DECK ENTRANCE ASSIGNMENT types.

                      +
                      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_deckEntranceAlignment_support.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + + Unclassified + CEN, Crown Copyright 2023-2023 + + +
                        +
                      • Derived from the Transmodel standards.
                      • +
                      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx DECK ENTRANCE ALIGNMENT types. + Standard +
                      +
                      + NeTEx: DECK ENTRANCE ASSIGNMENT identifier types +
                      + + + + Type for a list of DECK ENTRANCE ASSIGNMENTs. + + + + + + + + + + + + Type for identifier of a DECK ENTRANCE ASSIGNMENT. + + + + + + Reference to a DECK ENTRANCE ASSIGNMENT. +v2.0 + + + + + Type for a reference to a DECK ENTRANCE ASSIGNMENT. + + + + + + Identifier of a DECK ENTRANCE ASSIGNMENT. + + + + + + +
                      diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_version.xsd new file mode 100644 index 000000000..b5ec2fa17 --- /dev/null +++ b/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_version.xsd @@ -0,0 +1,146 @@ + + + + + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-01-30 + + 2023-01-30 + Name Space changes + + +

                      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                      +

                      This sub-schema describes the DECK ENTRANCE ALIGNMENT types.

                      +
                      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_deckEntranceAlignment_version.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + + Unclassified + CEN, Crown Copyright 2022-2023 + + +
                        +
                      • Derived from the Transmodel, standards.
                      • +
                      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx DECK ENTRANCE ASSIGNMENT types. + Standard +
                      +
                      + NeTE: DECK ENTRANCE ASSIGNMENT data types +
                      + + + + + Type for containment in frame of DECK ENTRANCE ASSIGNMENTs + + + + + + + + + + + + The association of a DECK ENTRANCE of a VEHICLE's DECK PLAN with a TRAIN and TRAIN COMPONENT and a specific STOP PLACE, QUAY and possibly BOARDING POSITION. NOTE: may indicate which side of VEHICLE door is. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + Identifier of DECK ENTRANCE ASSIGNMENT. + + + + + + + + + Type for a DECK ENTRANCE ASSIGNMENT. + + + + + + + + + + + + Elements for a DECK ENTRANCE ASSIGNMENT. + + + + + + + Whether assigment permits or forbids use of TRAIN COMPONENT and / or specified DECK ENTRANCE at specifed stop. + + + + + Default setting for doors when while at stop - are the doors held open, shut or locked shut. + + + + + + +
                      diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_support.xsd new file mode 100644 index 000000000..f3cae5ea4 --- /dev/null +++ b/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_support.xsd @@ -0,0 +1,104 @@ + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-02-12 + + 2023-02-312 + Name Space changes + + 2023-12-08Revise documentation + + +

                      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                      +

                      This sub-schema describes the DECK PLAN ASSIGNMENT types.

                      +
                      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_deckPlanAssignment_support.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + + Unclassified + CEN, Crown Copyright 2023-2023 + + +
                        +
                      • Derived from the Transmodel standards.
                      • +
                      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx DECK PLAN ASSIGNMENT types. + Standard +
                      +
                      + DECK PLAN ASSIGNMENT identifier types +
                      + + + + Type for a list of DECK PLAN ASSIGNMENTs. + + + + + + + + + + + + Type for identifier of a DECK PLAN ASSIGNMENT. + + + + + + Reference to a DECK PLAN ASSIGNMENT. +v2.0 + + + + + Type for a reference to a DECK PLAN ASSIGNMENT. + + + + + + Identifier of a DECK PLAN ASSIGNMENT. + + + + + + +
                      diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_version.xsd new file mode 100644 index 000000000..c0c968421 --- /dev/null +++ b/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_version.xsd @@ -0,0 +1,163 @@ + + + + + + + + + + + + + main schema + e-service developers + V1.0 Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2023-01-30 + + 2023-01-30 + Name Space changes + + 2023-12-08Revise documentation + + +

                      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                      +

                      This sub-schema describes the DECK PLAN ASSIGNMENT types.

                      +
                      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_framework/netex_reusableComponents}netex_deckPlanAssignment_version.xsd + [ISO 639-2/B] ENG + Kizoom Software Ltd, 16 High Holborn, London WC1V 6BX + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + + Unclassified + CEN, Crown Copyright 2022-2023 + + +
                        +
                      • Derived from the Transmodel, standards.
                      • +
                      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, + Air transport, Airports, + Ports and maritime transport, Ferries (marine), + Public transport, Bus services, Coach + services, Bus stops and stations, + Rail transport, Railway stations and track, Train services, Underground trains, + Business and industry, Transport, Air transport , Ports and maritime + transport, Public transport, + Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx DECK PLAN ASSIGNMENT types. + Standard +
                      +
                      + DECK PLAN ASSIGNMENT data types +
                      + + + + + Type for containment in frame of DECK PLAN ASSIGNMENTs + + + + + + + + + + + + The allocation of a DECK PLAN to all or part of a specific VEHICLE JOURNEY and /or VEHICLE TYPE and/or TRAIN ELEMENT. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + Identifier of DECK PLAN ASSIGNMENT. + + + + + + + + + Type for a DECK PLAN ASSIGNMENT. + + + + + + + + + + + + Elements for a DECK PLAN ASSIGNMENT. + + + + + + + + Validity coniditions in effect for JOURNEY or JOURNEY PART. + + + + + + + Assign to TRAIN elements for a DECK PLAN ASSIGNMENT. + + + + + + + + + + Assign to SERVICE JOURNEY elements for a DECK PLAN ASSIGNMENT. + + + + + + + +
                      diff --git a/xsd/netex_part_2/part2_vehicleService/netex_all_objects_part2_vehicleService.xsd b/xsd/netex_part_2/part2_vehicleService/netex_all_objects_part2_vehicleService.xsd index 7025164b5..80b62648d 100644 --- a/xsd/netex_part_2/part2_vehicleService/netex_all_objects_part2_vehicleService.xsd +++ b/xsd/netex_part_2/part2_vehicleService/netex_all_objects_part2_vehicleService.xsd @@ -1,9 +1,11 @@ - + + + @@ -17,7 +19,7 @@ 2010-09-04
                      -

                      NeTEx Xml is an XML representation of the Transmodel Public Transport Data model that can be used to exchange data objects between for databases and other services.

                      . +

                      NeTEx Xml is an XML representation of the Transmodel Public Transport Data model that can be used to exchange data objects between for databases and other services.

                      .

                      This subschema aggregate all the NeTEx Data Objects.

                      text/xml diff --git a/xsd/netex_part_2/part2_vehicleService/netex_vehicleRechargingPlan_support.xsd b/xsd/netex_part_2/part2_vehicleService/netex_vehicleRechargingPlan_support.xsd new file mode 100644 index 000000000..bb72ce803 --- /dev/null +++ b/xsd/netex_part_2/part2_vehicleService/netex_vehicleRechargingPlan_support.xsd @@ -0,0 +1,123 @@ + + + + + + + main schema + e-service developers + Nicholas Knowles + Europe + First drafted for NeTEx version 1.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + + 2024-02-26 + + + 2024-02-26 + + +

                      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                      +

                      This sub-schema describes the RECHARGING PLAN types.

                      +
                      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_2/part2_vehicleService}netex_rechargingPlan_support.xsd + [ISO 639-2/B] ENG + Kizoom, 109-123 Clifton Street, London EC4A 4LD + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + Unclassified + CEN, Crown Copyright 2023-2024 + + +
                        +
                      • Derived from the Transmodel, VDV, standards.
                      • +
                      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx RECHARGING PLAN identifier types. + Standard +
                      +
                      + NeTEx: RECHARGING PLAN identifier types. +
                      + + + + Type for identifier of a RECHARGING PLAN. + + + + + + Reference to a RECHARGING PLAN. +v2.0 + + + + + Type for Reference to a RECHARGING PLAN. + + + + + + Identifier of a RECHARGING PLAN. + + + + + + + + + Type for identifier of a RECHARGING STEP. + + + + + + Reference to a RECHARGING STEP. +v2.0 + + + + + Type for Reference to a RECHARGING STEP. + + + + + + Identifier of a RECHARGING STEP. + + + + + + + + + Allowed value for RECHARGING PROCESS. +v2.0 + + + + + + + + +
                      diff --git a/xsd/netex_part_2/part2_vehicleService/netex_vehicleRechargingPlan_version.xsd b/xsd/netex_part_2/part2_vehicleService/netex_vehicleRechargingPlan_version.xsd new file mode 100644 index 000000000..5afeeb8b2 --- /dev/null +++ b/xsd/netex_part_2/part2_vehicleService/netex_vehicleRechargingPlan_version.xsd @@ -0,0 +1,293 @@ + + + + + + + + + + + + main schema + e-service developers + V1.0 Christophe Duquesne + Nicholas Knowles + Europe + First drafted for NeTEx version 2.0 CEN TC278 WG3 SG9 Editor Nicholas Knowles. mailto:schemer@netex.org.uk + 2024-02-17Created from TM Spec + + + 2024-02-1 + + +

                      NeTEx is a European CEN standard for the exchange of Public Transport data including timetables.

                      +

                      This sub-schema describes the ECHARGING PLAN. types.

                      +
                      + + text/xml + http://www.w3.org/2001/XMLSchema + XML schema, W3C Recommendation 2001 + + {http://www.netex.org.uk/schemas/1.0/xsd/netex_part_2/part2_vehicleService}netex_vehicleRechargingPlan_version.xsd + [ISO 639-2/B] ENG + Kizoom, 109-123 Clifton Street, London EC4A 4LD + + http://www.netex.org.uk/schemas/1.0/PATH/netex_prereqfile.xsd + + Unclassified + CEN, Crown Copyright 2023-2024 + + +
                        +
                      • Derived from the Transmodel, VDV, standards.
                      • +
                      + + Version 1.0 + + Arts, recreation and travel, Tourism, Travel (tourism), Transport, +Air transport, Airports, +Ports and maritime transport, Ferries (marine), +Public transport, Bus services, Coach services, Bus stops and stations, +Rail transport, Railway stations and track, Train services, Underground trains, +Business and industry, Transport, Air transport , Ports and maritime transport, Public transport, +Rail transport, Roads and Road transport + + CEN TC278 WG3 SG9. + + NeTEx RECHARGING PLAN. types. + Standard +
                      +
                      + NeTEx: VEHICLE SERVICE types. +
                      + + + + Elements for a RECHARGING PLAN in FRAME. +v2.0 + + + + + List of RECHARGING PLANs in frame. + + + + + + + + + Type for a list of RECHARGING PLANs. + + + + + + + + + + + + A plan for periodically charging a VEHICLE while executing a BLOCK or BLOCKs. +v2.0 + + + + + + + + + + + + + + + + + + + + + + + Type for RECHARGING PLAN. + + + + + + + + + + + + Elements for RECHARGING PLAN. + + + + + Name of RECHARGING PLAN. + + + + + Description of RECHARGING PLAN. + + + + + Description of RECHARGING PLAN. + + + + + Overall quantity of energy for charging in Watt Hours [Wh]. + + + + + Overall duration of the charging process in seconds, without preparation time. + + + + + Parts of a RECHARGING PLAN. + + + + + Blocks using RECHARGING PLAN. + + + + + + + + Type for a list of RECHARGING STEPs. + + + + + + + + + + + + The planned charging of a VEHICLE at a PARKING POINT on a specific VEHICLE JOURNEY. +v2.0 + + + + + + + + + + + + + + + Name of RECHARGING STEP. + + + + + Description of RECHARGING STEP. + + + + + Quantity of energy for charging in Watt Hours [Wh]. + + + + + Target energy quantity in the vehicle on departure after charging. + + + + + + + + + + + + + + + + + Type for RECHARGING STEP. + + + + + + + + + + + Elements for RECHARGING STEP. + + + + + Name of RECHARGING STEP. + + + + + Description of RECHARGING STEP. + + + + + Quantity of energy for charging in Watt Hours [Wh]. + + + + + Target energy quantity in the vehicle on departure after charging. + + + + + + + + + + + + Durations of RECHARGING STEP phases. + + + + + Duration of the setup process. + + + + + Duration of the charging process without preparation or finishing time. + + + + + Duration of the unhooking process. + + + + +
                      diff --git a/xsd/netex_part_3/part3_fares/netex_accessRightParameter_version.xsd b/xsd/netex_part_3/part3_fares/netex_accessRightParameter_version.xsd index c014d06ff..f36ed75f3 100644 --- a/xsd/netex_part_3/part3_fares/netex_accessRightParameter_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_accessRightParameter_version.xsd @@ -1,14 +1,20 @@ + + + + + + @@ -19,9 +25,12 @@ + + + @@ -105,6 +114,15 @@ 2021-09-01FIX - Post newmodes merge Remove ambigous use of VehicleModes (drop from Organisation validity parameters). Add MobilityServiceConstraintZone to Network validity parameters. + 2023-12-09 + Fix add ServiceCalendarRef, TimebandRef to Temporal parameter refs + Fix add TarifffRef , TypeOfMediumAccessDeviceRef to Fare Usage Parameter refs + Enhancement add TypeOfProof to Usage Parameter refs. + Enhancement Deck plans - Add DEckPlanRef DeckSpaceRef to Service Parameter refs + Enhancement Seating plans - Add SpotRoweRef, SpotColumnRef, LocatableSPotRef, TypeOfLocatableSpotRef to Service Parameter refs + + 2023-12-10Enhancement add GroupOfSitesRef, GroupOfTariffZonesRef to site parameter refs + 2023-12-14FIX - Rename RoutingValidityParametersGroup to align with Transmodel. Add missing TransferRestriction, ServiceExclusion, RoutingRestrictionnZone and Border Point parametrers. @@ -146,7 +164,7 @@ Rail transport, Roads and Road transport Standard
                      - NeTEx ACCESS RIGHT ASSIGNMENT types. + NeTEx ACCESS RIGHT ASSIGNMENT types.
                      @@ -186,8 +204,7 @@ Rail transport, Roads and Road transport - A sequence or set of CONTROLLABLE ELEMENTs to which rules for limitation of access rights and calculation of prices (fare structure) are applied. - + A sequence or set of CONTROLLABLE ELEMENTs to which rules for limitation of access rights and calculation of prices (fare structure) are applied. @@ -196,14 +213,12 @@ Rail transport, Roads and Road transport - The assignment of a fare parameter (referring to geography, time, quality or usage) to an element of a fare system (access right, validated access, control mean, etc.). - + The assignment of a fare parameter (referring to geography, time, quality or usage) to an element of a fare system (access right, validated access, control mean, etc.). - The assignment of a fare parameter (referring to geography, time, quality or usage) to an element of a fare system (access right, validated access, control mean, etc.). - + The assignment of a fare parameter (referring to geography, time, quality or usage) to an element of a fare system (access right, validated access, control mean, etc.). @@ -327,7 +342,7 @@ Rail transport, Roads and Road transport - + One to many Relationship for temporal validity parameters. @@ -354,6 +369,7 @@ Rail transport, Roads and Road transport + One to many Relationship for scoping validity parameters. @@ -453,7 +469,9 @@ Rail transport, Roads and Road transport SITE validity parametersfor ACCESS RIGHT PARAMETER ASSIGNMENT. + + @@ -567,15 +585,29 @@ Rail transport, Roads and Road transport - Seating validity parameters for ACCESS RIGHT PARAMETER ASSIGNMENT. + Seating validity parameters for ACCESS RIGHT PARAMETER ASSIGNMENT. PassengerSeatRef is DEPRECATED -v2.0 + + + + + + Seating validity parameters for ACCESS RIGHT PARAMETER ASSIGNMENT. NB PAssengerSeatRef is DEPRECATED + + + + + + + + CLASS OF USE validity parameters for ACCESS RIGHT PARAMETER ASSIGNMENT. @@ -616,6 +648,7 @@ Rail transport, Roads and Road transport + @@ -629,6 +662,7 @@ Rail transport, Roads and Road transport + @@ -639,6 +673,7 @@ Rail transport, Roads and Road transport + diff --git a/xsd/netex_part_3/part3_fares/netex_farePrice_version.xsd b/xsd/netex_part_3/part3_fares/netex_farePrice_version.xsd index 1c7647158..2f72d131c 100644 --- a/xsd/netex_part_3/part3_fares/netex_farePrice_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_farePrice_version.xsd @@ -401,7 +401,7 @@ The RULE STEP RESULT Adjustment Amount is the difference beteen the original i Identifier of PriceRuleStepResult - + Order of step. diff --git a/xsd/netex_part_3/part3_fares/netex_fareSeries_support.xsd b/xsd/netex_part_3/part3_fares/netex_fareSeries_support.xsd index c65501697..9b0ce42be 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareSeries_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareSeries_support.xsd @@ -94,7 +94,7 @@ - + order of constraint. diff --git a/xsd/netex_part_3/part3_fares/netex_fareSeries_version.xsd b/xsd/netex_part_3/part3_fares/netex_fareSeries_version.xsd index 6e5af8b56..4b43d95d2 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareSeries_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareSeries_version.xsd @@ -125,7 +125,7 @@ - + relative number of series for same OD pair (TAP Route number) @@ -143,7 +143,7 @@ - + relative number of series for same OD pair (TAP Route number) diff --git a/xsd/netex_part_3/part3_fares/netex_fareStructure_support.xsd b/xsd/netex_part_3/part3_fares/netex_fareStructure_support.xsd index ee58df08e..cfd78822f 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareStructure_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareStructure_support.xsd @@ -96,7 +96,7 @@ Rail transport, Roads and Road transport Identifier of a FARE ELEMENT IN SEQUENCE. - + diff --git a/xsd/netex_part_3/part3_fares/netex_fareStructure_version.xsd b/xsd/netex_part_3/part3_fares/netex_fareStructure_version.xsd index d231ea832..3074f27fc 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareStructure_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareStructure_version.xsd @@ -95,7 +95,7 @@ Rail transport, Roads and Road transport - + order of element in sequence. diff --git a/xsd/netex_part_3/part3_fares/netex_fareTable_version.xsd b/xsd/netex_part_3/part3_fares/netex_fareTable_version.xsd index c500d70ca..31ece9bdf 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareTable_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareTable_version.xsd @@ -467,7 +467,7 @@ Rail transport, Roads and Road transport - + Order in which cell is to appear. @@ -526,7 +526,7 @@ Rail transport, Roads and Road transport - + Order in which cell is to appear. @@ -789,7 +789,7 @@ Rail transport, Roads and Road transport - + Order in which FARE TABLE COLUMN HEADING is to appear. @@ -859,7 +859,7 @@ Rail transport, Roads and Road transport - + Order in which FARE TABLE ROW is to appear. @@ -881,7 +881,7 @@ Rail transport, Roads and Road transport - + Order in which FARE TABLE ROW is to appear. diff --git a/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_version.xsd b/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_version.xsd index 8d4438563..ad8f12ca0 100644 --- a/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_version.xsd @@ -320,7 +320,7 @@ Rail transport, Roads and Road transport - + Relative order of element. diff --git a/xsd/netex_part_3/part3_fares/netex_usageParameterTravel_version.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterTravel_version.xsd index d40c5dcdf..9ba1dc8bd 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterTravel_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterTravel_version.xsd @@ -433,7 +433,7 @@ Rail transport, Roads and Road transport - Means of activatiing start of period. + Means of activating start of period. diff --git a/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_version.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_version.xsd index c7943cb1b..dd2fc1694 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_version.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_version.xsd @@ -698,7 +698,7 @@ Rail transport, Roads and Road transport - + Relative order of element.