From 9b658d4a3ba6d5d481ab381413b2fedbf6cd8aae Mon Sep 17 00:00:00 2001 From: Stefan de Konink Date: Wed, 9 Jul 2025 15:26:35 +0200 Subject: [PATCH 1/3] Python implementation to quickly rename elements --- scripts/rename.py | 74 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 scripts/rename.py diff --git a/scripts/rename.py b/scripts/rename.py new file mode 100644 index 000000000..6fb17d3d0 --- /dev/null +++ b/scripts/rename.py @@ -0,0 +1,74 @@ +import glob +from lxml import etree + +XSD_NS = "http://www.w3.org/2001/XMLSchema" +NSMAP = {"xs": XSD_NS} + +# Attributen met één enkele type-ref +SINGLE_REF_ATTRS = {'type', 'base', 'ref', 'substitutionGroup', 'itemType'} + +# Attributen met meerdere type-refs (spatiegescheiden) +MULTI_REF_ATTRS = {'memberTypes'} + +def collect_renames(xsd_files): + rename_map = {} + for file in xsd_files: + tree = etree.parse(file) + for tag in ['xs:element', 'xs:complexType', 'xs:simpleType']: + for elem in tree.xpath(f'//{tag}', namespaces=NSMAP): + name = elem.get("name") + if name and name.endswith("_"): + rename_map[name] = name + "Dummy" + # if name and name.endswith("_DummyTypeAbstract"): + # rename_map[name] = name.replace('_DummyTypeAbstract', "_Abstract") + return rename_map + +def apply_renames(xsd_files, rename_map): + for file in xsd_files: + tree = etree.parse(file) + root = tree.getroot() + changed = False + + for elem in root.iter(): + # Pas name aan + if "name" in elem.attrib: + old = elem.attrib["name"] + if old in rename_map: + elem.attrib["name"] = rename_map[old] + changed = True + + # Pas enkelvoudige verwijzingen aan + for attr in SINGLE_REF_ATTRS: + if attr in elem.attrib: + value = elem.attrib[attr] + if ":" not in value and value in rename_map: + elem.attrib[attr] = rename_map[value] + changed = True + + # Pas meervoudige verwijzingen aan (zoals bij xs:union) + for attr in MULTI_REF_ATTRS: + if attr in elem.attrib: + values = elem.attrib[attr].split() + new_values = [ + rename_map.get(v, v) if ':' not in v else v + for v in values + ] + if new_values != values: + elem.attrib[attr] = ' '.join(new_values) + changed = True + + if changed: + print(f"Updated {file}") + tree.write(file, encoding="utf-8", xml_declaration=True, pretty_print=True) + +def main(): + xsd_files = glob.glob("xsd/**/*.xsd", recursive=True) + rename_map = collect_renames(xsd_files) + if not rename_map: + print("Geen hernoemingen nodig.") + return + print("Te hernoemen:", rename_map) + apply_renames(xsd_files, rename_map) + +if __name__ == "__main__": + main() From 97f9b8c06b0832de73acc674ca526c01d7270aeb Mon Sep 17 00:00:00 2001 From: Stefan de Konink Date: Wed, 9 Jul 2025 15:31:17 +0200 Subject: [PATCH 2/3] Change _ suffix to _Dummy --- xsd/NX.xsd | 32 ++++++++-------- xsd/ifopt.xsd | 2 +- .../netex_assignment_version.xsd | 8 ++-- .../netex_grouping_support.xsd | 8 ++-- .../netex_layer_support.xsd | 2 +- .../netex_loggable_support.xsd | 2 +- .../netex_organisation_version.xsd | 30 +++++++-------- .../netex_path_support.xsd | 2 +- .../netex_place_support.xsd | 6 +-- .../netex_pointAndLink_support.xsd | 8 ++-- .../netex_pointAndLink_version.xsd | 2 +- .../netex_section_support.xsd | 4 +- .../netex_section_version.xsd | 14 +++---- .../netex_zone_support.xsd | 8 ++-- .../netex_zone_version.xsd | 8 ++-- .../netex_responsibility_support.xsd | 8 ++-- .../netex_validityCondition_version.xsd | 10 ++--- .../netex_address_support.xsd | 4 +- .../netex_availabilityCondition_version.xsd | 6 +-- .../netex_dayType_support.xsd | 2 +- .../netex_dayType_version.xsd | 8 ++-- .../netex_deckPlan_version.xsd | 18 ++++----- .../netex_equipment_support.xsd | 4 +- .../netex_modeOfOperation_version.xsd | 26 ++++++------- .../netex_nm_fleet_support.xsd | 2 +- .../netex_noticeAssignment_version.xsd | 8 ++-- .../netex_otherOrganisation_support.xsd | 2 +- .../netex_otherOrganisation_version.xsd | 12 +++--- .../netex_securityList_version.xsd | 8 ++-- .../netex_sensorEquipment_version.xsd | 2 +- .../netex_serviceCalendar_version.xsd | 8 ++-- .../netex_spotEquipment_version.xsd | 2 +- .../netex_topographicPlace_support.xsd | 4 +- .../netex_transportOrganisation_support.xsd | 4 +- .../netex_transportOrganisation_version.xsd | 14 +++---- .../netex_ifopt_checkConstraint_version.xsd | 6 +-- .../netex_ifopt_flexibleStopPlace_support.xsd | 4 +- .../netex_ifopt_parking_version.xsd | 12 +++--- .../netex_ifopt_pointOfInterest_support.xsd | 2 +- .../part1_ifopt/netex_ifopt_site_support.xsd | 2 +- .../part1_ifopt/netex_ifopt_site_version.xsd | 12 +++--- .../netex_ifopt_stopPlace_support.xsd | 2 +- .../netex_ifopt_stopPlace_version.xsd | 2 +- ...etex_rechargingPointAssignment_version.xsd | 6 +-- .../part1_ifopt/netex_taxiPlace_version.xsd | 4 +- .../netex_activation_version.xsd | 10 ++--- .../netex_flexibleNetwork_version.xsd | 4 +- .../netex_lineNetwork_version.xsd | 4 +- .../netex_line_support.xsd | 2 +- .../netex_line_version.xsd | 6 +-- .../netex_networkInfrastructure_version.xsd | 8 ++-- .../netex_networkRestriction_version.xsd | 2 +- .../netex_route_version.xsd | 6 +-- .../netex_timingPattern_support.xsd | 2 +- .../netex_vehicleAndCrewPoint_version.xsd | 14 +++---- .../netex_commonSection_version.xsd | 2 +- .../netex_fareZone_support.xsd | 2 +- .../netex_fareZone_version.xsd | 4 +- .../netex_journeyPattern_version.xsd | 8 ++-- ..._passengerInformationEquipment_version.xsd | 2 +- .../netex_routingConstraint_version.xsd | 4 +- .../netex_servicePattern_version.xsd | 2 +- .../netex_stopAssignment_version.xsd | 4 +- .../netex_timeDemandType_version.xsd | 2 +- .../netex_timingPattern_version.xsd | 6 +-- .../part2_journeyTimes/netex_call_version.xsd | 6 +-- .../netex_datedVehicleJourney_version.xsd | 8 ++-- .../netex_deckEntranceAssignment_version.xsd | 2 +- .../netex_deckPlanAssignment_version.xsd | 2 +- .../netex_interchange_version.xsd | 8 ++-- .../netex_journeyAccounting_version.xsd | 4 +- .../netex_journey_version.xsd | 4 +- .../netex_serviceJourney_support.xsd | 2 +- .../netex_serviceJourney_version.xsd | 10 ++--- .../netex_vehicleJourneyFrequency_support.xsd | 2 +- .../netex_vehicleJourney_version.xsd | 6 +-- .../netex_accessRightParameter_version.xsd | 16 ++++---- .../netex_calculationParameters_version.xsd | 16 ++++---- .../netex_distanceMatrixElement_support.xsd | 2 +- .../netex_distanceMatrixElement_version.xsd | 10 ++--- .../part3_fares/netex_farePrice_support.xsd | 4 +- .../part3_fares/netex_farePrice_version.xsd | 30 +++++++-------- .../part3_fares/netex_fareProduct_version.xsd | 38 +++++++++---------- .../part3_fares/netex_fareSeries_support.xsd | 4 +- .../part3_fares/netex_fareSeries_version.xsd | 8 ++-- .../netex_fareStructureElement_version.xsd | 6 +-- .../part3_fares/netex_fareTable_support.xsd | 4 +- .../part3_fares/netex_fareTable_version.xsd | 18 ++++----- ...etex_geographicStructureFactor_version.xsd | 10 ++--- .../netex_qualityStructureFactor_version.xsd | 14 +++---- .../netex_salesDistribution_support.xsd | 2 +- .../netex_salesDistribution_version.xsd | 8 ++-- ...x_salesOfferPackageEntitlement_version.xsd | 4 +- .../netex_salesOfferPackage_support.xsd | 2 +- .../netex_salesOfferPackage_version.xsd | 14 +++---- .../netex_timeStructureFactor_version.xsd | 10 ++--- ...netex_usageParameterAfterSales_version.xsd | 10 ++--- .../netex_usageParameterBooking_version.xsd | 8 ++-- .../netex_usageParameterCharging_version.xsd | 6 +-- ...etex_usageParameterEligibility_version.xsd | 10 ++--- ...etex_usageParameterEntitlement_version.xsd | 4 +- .../netex_usageParameterLuggage_version.xsd | 2 +- .../netex_usageParameterTravel_version.xsd | 16 ++++---- .../netex_usageParameter_version.xsd | 10 ++--- .../netex_validableElement_version.xsd | 12 +++--- .../netex_parkingTariff_version.xsd | 4 +- .../netex_customerEligibility_version.xsd | 12 +++--- .../netex_customerPurchasePackage_support.xsd | 2 +- .../netex_customerPurchasePackage_version.xsd | 22 +++++------ .../netex_mediumApplication_version.xsd | 4 +- .../netex_retailConsortium_support.xsd | 2 +- .../netex_retailConsortium_version.xsd | 6 +-- .../netex_salesContract_version.xsd | 12 +++--- .../netex_salesTransaction_version.xsd | 2 +- .../netex_travelDocument_version.xsd | 2 +- ...nm_accessCredentialsAssignment_version.xsd | 2 +- ...x_nm_usageParameterEligibility_version.xsd | 2 +- .../netex_nm_usageParameterRental_version.xsd | 6 +-- ..._mobilityServiceConstraintZone_support.xsd | 2 +- .../netex_nm_vehicleMeetingPlace_version.xsd | 14 +++---- ..._vehicleMeetingPointAssignment_version.xsd | 6 +-- ..._vehicleParkingAreaInformation_version.xsd | 12 +++--- ..._vehicleServicePlaceAssignment_version.xsd | 10 ++--- .../netex_nm_mobilityService_version.xsd | 26 ++++++------- .../netex_nm_onlineService_support.xsd | 2 +- .../netex_nm_onlineService_version.xsd | 4 +- .../netex_nm_singleJourneyService_support.xsd | 2 +- .../netex_nm_singleJourneyService_version.xsd | 2 +- xsd/netex_service/netex_filter_frame.xsd | 2 +- xsd/netex_service/netex_filter_object.xsd | 2 +- 130 files changed, 474 insertions(+), 474 deletions(-) diff --git a/xsd/NX.xsd b/xsd/NX.xsd index 43f6fedbe..c183ef457 100644 --- a/xsd/NX.xsd +++ b/xsd/NX.xsd @@ -131,8 +131,8 @@ - - + + @@ -147,7 +147,7 @@ - + @@ -155,7 +155,7 @@ - + @@ -280,7 +280,7 @@ - + @@ -307,7 +307,7 @@ - + @@ -325,7 +325,7 @@ - + @@ -381,22 +381,22 @@ - + - - + + - + @@ -469,7 +469,7 @@ - + @@ -486,7 +486,7 @@ - + @@ -538,7 +538,7 @@ JOURNEY PATTERN. - + @@ -560,7 +560,7 @@ - + @@ -573,7 +573,7 @@ - + diff --git a/xsd/ifopt.xsd b/xsd/ifopt.xsd index 8d019c624..3e21e9814 100644 --- a/xsd/ifopt.xsd +++ b/xsd/ifopt.xsd @@ -11,7 +11,7 @@ - + diff --git a/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd index 531b3114c..f1601b92f 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd @@ -58,12 +58,12 @@ Rail transport, Roads and Road transport NetEX: GENERAL ASSIGNMENT types for NeTEx Network Exchange. - + Dummy Abstract Assignment. An Assignment assigns a property to an other element. It has a name and an order. - + Type for ASSIGNMENT. @@ -97,7 +97,7 @@ Rail transport, Roads and Road transport - + A set of properties to be applied to an another element. It has a name and an order. @@ -125,7 +125,7 @@ Rail transport, Roads and Road transport Type for ASSIGNMENT. - + diff --git a/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd index 618851407..a497b2ff0 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd @@ -58,7 +58,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF ENTITies. @@ -84,7 +84,7 @@ Rail transport, Roads and Road transport - + Extending Type for a reference to a GROUP OF ENTITies. @@ -103,7 +103,7 @@ Rail transport, Roads and Road transport Extending Type for a reference to a GROUP OF ENTITies. - + Identifier of referenced entity. @@ -159,7 +159,7 @@ Rail transport, Roads and Road transport - + Reference to a GENERAL GROUP OF ENTITies. diff --git a/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd index ab6af53a0..eb8bc88c6 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd @@ -74,7 +74,7 @@ Rail transport, Roads and Road transport - + Reference to a LAYER. diff --git a/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd index badb57b5b..ff101b275 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd @@ -57,7 +57,7 @@ Rail transport, Roads and Road transport - + Reference to a LOG. diff --git a/xsd/netex_framework/netex_genericFramework/netex_organisation_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_organisation_version.xsd index 7f6e6cbd5..826abe0b4 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_organisation_version.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_organisation_version.xsd @@ -80,7 +80,7 @@ Rail transport, Roads and Road transport - + @@ -98,12 +98,12 @@ Rail transport, Roads and Road transport - + Dummy supertype for ORGANISATION. - + An legally incorporated body associated with any aspect of the transport system. @@ -335,17 +335,17 @@ Rail transport, Roads and Road transport - + - + Dummy supertype for ORGANISATION PART. - + A named subdivision of an ORGANISATION. @@ -420,7 +420,7 @@ Rail transport, Roads and Road transport Coordinates of ORGANISATION PART. - + @@ -444,7 +444,7 @@ Rail transport, Roads and Road transport - + Department of an ORGANISATION. @@ -509,7 +509,7 @@ Rail transport, Roads and Road transport - + OrganisationalUnit of an ORGANISATION. @@ -618,7 +618,7 @@ Rail transport, Roads and Road transport Description of the nature pf the Relationship. - + Role of the related Organbisation @@ -636,17 +636,17 @@ Rail transport, Roads and Road transport - + - + Dummy supertype for ADMINISTRATIVE ZONE. - + A ZONE relating to the management responsibilities of an ORGANISATION. For example to allocate bus stop identifiers for a region. @@ -700,7 +700,7 @@ Rail transport, Roads and Road transport Public Code assosociated with ADMINISTRATIVE ZONE. - + RESPONSIBILITY SETs allocated to ADMINISTRATIVE ZONE. @@ -1006,7 +1006,7 @@ Rail transport, Roads and Road transport - + diff --git a/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd index 069b68dbf..0904e9865 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd @@ -129,7 +129,7 @@ Rail transport, Roads and Road transport - + Reference to a PATH JUNCTION. diff --git a/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd index 9aa79fd81..bab834982 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd @@ -78,12 +78,12 @@ Rail transport, Roads and Road transport - + Reference to a PLACE. - + Reference to a PLACE. @@ -114,7 +114,7 @@ Rail transport, Roads and Road transport - + diff --git a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd index f93ae8dd2..f3be7c890 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd @@ -183,7 +183,7 @@ Rail transport, Roads and Road transport Reference to a POINT ON LINK. - + Type for a reference to a POINT ON LINK. @@ -202,7 +202,7 @@ Rail transport, Roads and Road transport Type for a reference to a POINT ON LINK. - + Identifier of a LINK. @@ -304,7 +304,7 @@ Rail transport, Roads and Road transport - + @@ -314,7 +314,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF POINTs. diff --git a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_version.xsd index 12236d163..d689bc469 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_version.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_version.xsd @@ -176,7 +176,7 @@ Rail transport, Roads and Road transport - + diff --git a/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd index d92e12acc..d3bb654e9 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd @@ -59,7 +59,7 @@ Rail transport, Roads and Road transport - + Reference to a SECTION. @@ -78,7 +78,7 @@ Rail transport, Roads and Road transport - + Reference to a parent SECTION. May be omitted if given by context.. diff --git a/xsd/netex_framework/netex_genericFramework/netex_section_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_section_version.xsd index 2e1dc9fed..b6cce1bfd 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_section_version.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_section_version.xsd @@ -81,12 +81,12 @@ Rail transport, Roads and Road transport - + Dummy Supertype for SECTION +v1.1. - + A shared sequence of LINKS or POINTs. +v1.1. @@ -131,7 +131,7 @@ Rail transport, Roads and Road transport - + A resuable sequence of LINKS or POINTs. +v1.1. @@ -219,17 +219,17 @@ Rail transport, Roads and Road transport - + - + DUmmy Supertype for Point On SECTION. +v1.1. - + POINT on a SECTION. +v1.1. @@ -449,7 +449,7 @@ Rail transport, Roads and Road transport Reference to a LINK SEQUENCE. - + diff --git a/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd index 14913e006..bfb852264 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd @@ -60,7 +60,7 @@ Rail transport, Roads and Road transport - + Reference to a ZONE. @@ -83,7 +83,7 @@ Rail transport, Roads and Road transport - + Dummy type Reference to a TARIFF ZONE. @@ -94,7 +94,7 @@ Rail transport, Roads and Road transport - + Reference to a TARIFF ZONE. @@ -119,7 +119,7 @@ Rail transport, Roads and Road transport - + diff --git a/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd index 0aca4de07..b164f6a7b 100644 --- a/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd +++ b/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd @@ -87,7 +87,7 @@ Rail transport, Roads and Road transport - + @@ -183,12 +183,12 @@ Rail transport, Roads and Road transport - + Dummy TARIFF ZONE to workaround xML spy Substitution Group limitations - + A ZONE used to define a zonal fare structure in a zone-counting or zone-matrix system. @@ -309,7 +309,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF TARIFF ZONEs. diff --git a/xsd/netex_framework/netex_responsibility/netex_responsibility_support.xsd b/xsd/netex_framework/netex_responsibility/netex_responsibility_support.xsd index 53ff2d4e6..cc60433b1 100644 --- a/xsd/netex_framework/netex_responsibility/netex_responsibility_support.xsd +++ b/xsd/netex_framework/netex_responsibility/netex_responsibility_support.xsd @@ -202,7 +202,7 @@ Rail transport, Roads and Road transport - + @@ -213,12 +213,12 @@ Rail transport, Roads and Road transport - + Reference to an ORGANISATION. - + DEPRECATED reference to any ORGANISATION meeting the substitutiongroup. -v2.0 @@ -256,7 +256,7 @@ Rail transport, Roads and Road transport - + diff --git a/xsd/netex_framework/netex_responsibility/netex_validityCondition_version.xsd b/xsd/netex_framework/netex_responsibility/netex_validityCondition_version.xsd index 942efa30a..b13750ce0 100644 --- a/xsd/netex_framework/netex_responsibility/netex_validityCondition_version.xsd +++ b/xsd/netex_framework/netex_responsibility/netex_validityCondition_version.xsd @@ -68,19 +68,19 @@ Rail transport, Roads and Road transport - + - + Condition used in order to characterise a given VERSION of a VERSION FRAME. A VALIDITY CONDITION consists of a parameter (e.g. date, triggering event, etc) and its type of application (e.g. for, from, until, etc.). - + Condition used in order to characterise a given VERSION of a VERSION FRAME. A VALIDITY CONDITION consists of a parameter (e.g. date, triggering event, etc) and its type of application (e.g. for, from, until, etc.). @@ -173,7 +173,7 @@ Rail transport, Roads and Road transport - + External event defining a VALIDITY CONDITION. E.g. exceptional flow of a river, bad weather, Road closure for works. @@ -261,7 +261,7 @@ Rail transport, Roads and Road transport - + A user defined VALIDITY CONDITION used by a rule for selecting versions. E.g. river level > 1,5 m and bad weather. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_address_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_address_support.xsd index 6953c4333..450075833 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_address_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_address_support.xsd @@ -65,7 +65,7 @@ Rail transport, Roads and Road transport - + Reference to an ADDRESS. @@ -91,7 +91,7 @@ Rail transport, Roads and Road transport - + Reference to an ADDRESSED PLACE. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_availabilityCondition_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_availabilityCondition_version.xsd index 2beb55307..66199ff1e 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_availabilityCondition_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_availabilityCondition_version.xsd @@ -86,7 +86,7 @@ Rail transport, Roads and Road transport - + VALIDITY CONDITION stated in terms of DAY TYPES and PROPERTIES OF DAYs. @@ -185,7 +185,7 @@ Rail transport, Roads and Road transport - + OPTIMISATION: Sversion of an AVAILABILITY CONDITION Comprises a simple period and DAY TYPE. @@ -285,7 +285,7 @@ Rail transport, Roads and Road transport - + Simple version of an AVAILABILITY CONDITION used in order to characterise a given VERSION of a VERSION FRAME. Comprises a simple period and DAY TYPE. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd index 88f511291..48f3ace80 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd @@ -139,7 +139,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF TIMEBANDs. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_dayType_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_dayType_version.xsd index e9ed16134..dd72d1728 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_dayType_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_dayType_version.xsd @@ -69,7 +69,7 @@ Rail transport, Roads and Road transport - + @@ -107,7 +107,7 @@ Rail transport, Roads and Road transport - + A type of day characterized by one or more properties which affect public transport operation. For example: weekday in school holidays. @@ -116,12 +116,12 @@ Rail transport, Roads and Road transport - + Dummy Supertype for DAY TYPE. - + A type of day characterized by one or more properties which affect public transport operation. For example: weekday in school holidays. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_version.xsd index 459492d37..e2069f96a 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_version.xsd @@ -311,12 +311,12 @@ - + - + Dummy type to work around SG limitations @@ -454,7 +454,7 @@ - + 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 @@ -561,7 +561,7 @@ - + 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 @@ -624,7 +624,7 @@ - + Dummy type to work around SG limitations @@ -637,7 +637,7 @@ - + @@ -769,7 +769,7 @@ - + A normal entrance for passengers to or within a DECK. +v2.0 @@ -832,7 +832,7 @@ - + A normal entrance for passengers to or within a DECK. +v2.0 @@ -906,7 +906,7 @@ - + An entrance to or within a DECK for use for other purposes than normal passenger access. E.g. crew, emergency exit, etc. +v2.0 diff --git a/xsd/netex_framework/netex_reusableComponents/netex_equipment_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_equipment_support.xsd index 31061d66d..83a71ea7e 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_equipment_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_equipment_support.xsd @@ -139,7 +139,7 @@ Rail transport, Roads and Road transport - + Reference to an EQUIPMENT POSITION. @@ -165,7 +165,7 @@ Rail transport, Roads and Road transport - + Reference to an EQUIPMENT PLACE. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_modeOfOperation_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_modeOfOperation_version.xsd index 61827123a..4f3f7e278 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_modeOfOperation_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_modeOfOperation_version.xsd @@ -61,17 +61,17 @@ Rail transport, Roads and Road transport - + - + Dummy type to work around SG limitations. - + The use of any kind of vehicle to perform a trip using any mode of operation, this can be a CONVENTIONAL, ALTERNATIVE or a PERSONAL MODE OF OPERATION. +v1.2.2 @@ -128,12 +128,12 @@ Rail transport, Roads and Road transport - + Dummy type to work around SG limitations. - + Legacy mode of operation which is provided as a scheduled and/or flexible publicly advertised transport offer. +v1.2.2 @@ -173,7 +173,7 @@ Rail transport, Roads and Road transport - + The operation of a transportation using any kind of vehicle with a predefined time table. +v1.2.2 @@ -227,7 +227,7 @@ Rail transport, Roads and Road transport - + Passenger transport operation linked to a fixed network/schedule but offering flexibility, in order for instance, to optimise the service or to satisfy passenger demand. +v1.2.2 @@ -262,12 +262,12 @@ Rail transport, Roads and Road transport - + Dummy type to work around SG limitations. - + Any publicly advertised mode of operation different from the CONVENTIONAL MODE OF OPERATION, for example: VEHICLE SHARING, VEHICLE RENTAL, VEHICLE POOLING. +v1.2.2 @@ -307,7 +307,7 @@ Rail transport, Roads and Road transport - + An ALTERNATIVE MODE OF OPERATION of a vehicle, part of a FLEET (in general privately owned), available for use for a certain period of time and fee, with the constraint to bring it back at specified agencies. +v1.2.2 @@ -361,7 +361,7 @@ Rail transport, Roads and Road transport - + Short term VEHICLE RENTAL where the vehicle can be taken from and parked at different places in the urban area, possibly without the constraint to bring back the vehicle to a specific location. +v1.2.2 @@ -422,7 +422,7 @@ Rail transport, Roads and Road transport - + An ALTERNATIVE MODE OF OPERATION of a privately-owned vehicle consisting in sharing the vehicle for a trip between the driver who is at the same time performing a trip and at least another traveller. +v1.2.2 @@ -482,7 +482,7 @@ Rail transport, Roads and Road transport - + A non-advertised mode of operation of vehicles by persons using their own vehicle. +v1.2.2 diff --git a/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_support.xsd index 4e649cae4..9861e3843 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_support.xsd @@ -75,7 +75,7 @@ Rail transport, Roads and Road transport - + Reference to a FLEET. +v1.2.2 diff --git a/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd index c31f56ac7..46e3c30ad 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd @@ -67,7 +67,7 @@ Rail transport, Roads and Road transport - + @@ -97,18 +97,18 @@ Rail transport, Roads and Road transport - + - + Dummy abstract NOTICE ASSIGNMENT. - + The assignment of a NOTICE showing an exception in a JOURNEY PATTERN, a COMMON SECTION, or a VEHICLE JOURNEY, possibly specifying at which POINT IN JOURNEY PATTERN the validity of the NOTICE starts and ends respectively. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_support.xsd index caad1e02d..55b3467a9 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_support.xsd @@ -58,7 +58,7 @@ Rail transport, Roads and Road transport - + Reference to an OTHER ORGANISATION. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_version.xsd index 8f401ad25..6048fcd70 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_version.xsd @@ -55,7 +55,7 @@ Rail transport, Roads and Road transport NetEX:OTHER ORGANISATION types for NeTEx Network Exchange. - + Generic ORGANISATION being neither an AUTHORITY, neither a public transport OPERATOR (TRAVEL AGENT, MANAGEMENT AGENT, etc.). @@ -90,7 +90,7 @@ Rail transport, Roads and Road transport - + A travel agent who can retail travel products. @@ -133,7 +133,7 @@ Rail transport, Roads and Road transport - + ORGANISATION that manages data or a SITE or FACILITY. @@ -176,7 +176,7 @@ Rail transport, Roads and Road transport - + Any type of GENERAL ORGANISATION. @@ -215,7 +215,7 @@ Rail transport, Roads and Road transport - + ORGANISATION for which Service is provided, e.g. school college. @@ -274,7 +274,7 @@ Rail transport, Roads and Road transport - + DAY TYPE defined as being available on days when ORGANISATION is open and requires service. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd index 5d8f08cf8..0f5a841dc 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd @@ -169,7 +169,7 @@ Rail transport, Roads and Road transport - + Items in SECURITY LIST. @@ -185,17 +185,17 @@ Rail transport, Roads and Road transport - + - + DUMMY type for SECIRITY LISTING. - + The presence of an identified Entity on a SECURITY LIST. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_version.xsd index 278131b98..ad26c5500 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_version.xsd @@ -60,7 +60,7 @@ SENSOR EQUIPMENT types for NeTEx. - + Dummy type for +V2.0 diff --git a/xsd/netex_framework/netex_reusableComponents/netex_serviceCalendar_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_serviceCalendar_version.xsd index c28a0800e..66797bba0 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_serviceCalendar_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_serviceCalendar_version.xsd @@ -385,12 +385,12 @@ Rail transport, Roads and Road transport - + Dummy Operating Period - + A continuous interval of time between two OPERATING DAYs which will be used to define validities. @@ -482,7 +482,7 @@ Rail transport, Roads and Road transport - + An OPERATING PERIOD coded in UIC style as a bit string between two dates. @@ -555,7 +555,7 @@ Rail transport, Roads and Road transport - + Associates a DAY TYPE with an OPERATING DAY within a specific Calendar. A specification of a particular DAY TYPE which will be valid during a TIME BAND on an OPERATING DAY. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_version.xsd index e24ef415e..826346222 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_version.xsd @@ -56,7 +56,7 @@ SPOT EQUIPMENT types for NeTEx. - + An abstract EQUIPMENT in a LOCATABLE SPOT providing a onboard seat, bed or other amenity. +V2.0 diff --git a/xsd/netex_framework/netex_reusableComponents/netex_topographicPlace_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_topographicPlace_support.xsd index e13698a66..aec080bf0 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_topographicPlace_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_topographicPlace_support.xsd @@ -152,7 +152,7 @@ Rail transport, Roads and Road transport - + Reference to a TOPOGRAPHIC PLACE. @@ -195,7 +195,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF PLACEs. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd index 32133c403..139b19b23 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd @@ -92,7 +92,7 @@ Rail transport, Roads and Road transport - + Reference to a TRANSPORT ORGANISATION. @@ -250,7 +250,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF OPERATORs. diff --git a/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_version.xsd index b50c3269c..a6593a6ed 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_version.xsd @@ -163,13 +163,13 @@ Rail transport, Roads and Road transport - + A company providing public transport services. - + A company providing transport services. @@ -286,7 +286,7 @@ Rail transport, Roads and Road transport - + A company providing public transport services. @@ -331,7 +331,7 @@ Rail transport, Roads and Road transport - + The ORGANISATION under which the responsibility of organising the transport service in a certain area is placed. @@ -519,7 +519,7 @@ Rail transport, Roads and Road transport - + A specific DEPARTMENT which administers certain LINEs. @@ -614,7 +614,7 @@ Rail transport, Roads and Road transport - + An ORGANISATION PART for an operational team who are responsible for issuing commands to control the services. @@ -675,7 +675,7 @@ Rail transport, Roads and Road transport - + A ZONE relating to the management responsibilities of an ORGANISATION. For example to allocate bus stop identifiers for a region. 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 9cd8066f6..6b03fb116 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 @@ -143,7 +143,7 @@ Rail transport, Roads and Road transport - + Characteristics of a SITE COMPONENT representing a process, such as check-in, security screening, ticket control or immigration, that may potentially incur a time penalty that should be allowed for when journey planning. Used to mark PATH LINKs to determine transit routes through interchanges. @@ -277,7 +277,7 @@ screening, ticket control or immigration, that may potentially incur a time pena - + Time penalty associated with a CHECK CONSTRAINT. @@ -367,7 +367,7 @@ screening, ticket control or immigration, that may potentially incur a time pena - + Throughput of a CHECK CONSTRAINT. the number of passengers who can pass through it. diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_flexibleStopPlace_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_flexibleStopPlace_support.xsd index 873710855..8f67666ef 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_flexibleStopPlace_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_flexibleStopPlace_support.xsd @@ -63,7 +63,7 @@ Rail transport, Roads and Road transport - + Reference to a FLEXIBLE STOP PLACE. @@ -101,7 +101,7 @@ Rail transport, Roads and Road transport - + Reference to a FLEXIBLE QUAY. diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_parking_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_parking_version.xsd index ac4b9652f..495730af2 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_parking_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_parking_version.xsd @@ -83,7 +83,7 @@ Rail transport, Roads and Road transport - + A designated path between two PLACEs. May include an Ordered sequence of references to PATH LINKS. @@ -93,7 +93,7 @@ Rail transport, Roads and Road transport - + A named place where Parking may be accessed. May be a building complex (e.g. a station) or an on-street location. @@ -867,7 +867,7 @@ Rail transport, Roads and Road transport - + An area within a Site. May be connected to Quays by PATH LINKs. @@ -876,7 +876,7 @@ Rail transport, Roads and Road transport - + Area within a PARKING. @@ -975,7 +975,7 @@ Rail transport, Roads and Road transport - + An area within a Site. May be connected to Quays by PATH LINKs. @@ -984,7 +984,7 @@ Rail transport, Roads and Road transport - + An individual place to park a VEHICLE. diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_pointOfInterest_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_pointOfInterest_support.xsd index 7a1dc7f94..07f903ef6 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_pointOfInterest_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_pointOfInterest_support.xsd @@ -135,7 +135,7 @@ Rail transport, Roads and Road transport - + Classification of a POINT OF INTEREST CLASSIFICATION HIERARCHY. 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 f29b8e242..e78ce97a9 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 @@ -65,7 +65,7 @@ Rail transport, Roads and Road transport NeTEX: SITE identifier types. - + Reference to a GROUP OF SITEs. 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 9aa927295..e724c98f7 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 @@ -210,7 +210,7 @@ Rail transport, Roads and Road transport - + Reference to OPERATOR of SITE - derived details can be included. @@ -944,27 +944,27 @@ Rail transport, Roads and Road transport - + Dummy Type to get round SG limitations - + Dummy Type to get round SG limitations - + Dummy Type to get round SG limitations. Can be a STOP PLACE, VEHICLE MEETING POINT, TAXI RANK. - + Dummy Type to get round SG limitations - + Dummy Type to get round SG limitations 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 9af36cf94..43cab2bcc 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 @@ -109,7 +109,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF STOP PLACEs. 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 1d38efee1..5ceda8840 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 @@ -149,7 +149,7 @@ Rail transport, Roads and Road transport - + Version of a named place where public transport may be accessed. May be a building complex (e.g. a station) or an on-street location. Can be a STOP PLACE, VEHICLE MEETING POINT, TAXI RANK. Note: If a master id exists for a StopPlace (must be stable and globally unique), then it is best used in the id. Optimally it would be built according IFOPT. It can also be put into one of the privateCodes in addition. If it is stored in KeyValue, then it should be documented well, so that importing systems know, which id is the relevant one. diff --git a/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd index a77330610..f13b67d8f 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd @@ -91,7 +91,7 @@ Rail transport, Roads and Road transport - + The allocation of a TIMING POINT to a SITE COMPONENT such as a PARKING BAY that has VEHICLE CHARGING EQUIPMENT. +v2.0 @@ -138,7 +138,7 @@ Rail transport, Roads and Road transport - + A PARKING with bays specifically equipped for recharging VEHICLEs. +v2.0 @@ -222,7 +222,7 @@ Rail transport, Roads and Road transport - + A PARKING BAY specifically equipped for recharging VEHICLEs. +v2.0 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 4a4fb6bf3..02bebc544 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_version.xsd @@ -76,7 +76,7 @@ Rail transport, Roads and Road transport - + A place comprising one or more locations where taxis may stop to pick up or set down passengers. +v1.2.2 @@ -264,7 +264,7 @@ Rail transport, Roads and Road transport - + A specific area where any taxi is able to safely park for a long period. +v1.2.2 diff --git a/xsd/netex_part_1/part1_networkDescription/netex_activation_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_activation_version.xsd index 63a35767f..915724cab 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_activation_version.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_activation_version.xsd @@ -127,7 +127,7 @@ Rail transport, Roads and Road transport - + @@ -199,12 +199,12 @@ Rail transport, Roads and Road transport - + A POINT where a control process is activated when a vehicle passes it. EQUIPMENT may be needed for the activation. - + A POINT where a control process is activated when a vehicle passes it. EQUIPMENT may be needed for the activation. @@ -266,7 +266,7 @@ Rail transport, Roads and Road transport - + A POINT where a beacon or similar device to support the automatic detection of vehicles passing by is located. @@ -416,7 +416,7 @@ Rail transport, Roads and Road transport - + An assignment of an ACTIVATION POINT/LINK to an ACTIVATED EQUIPMENT related on its turn to a TRAFFIC CONTROL POINT. The considered ACTIVATION POINT/LINK will be used to influence the control process for that TRAFFIC CONTROL POINT (e.g. to fix priorities as regards the processing of competing requests from different ACTIVATION POINTs/LINKs). diff --git a/xsd/netex_part_1/part1_networkDescription/netex_flexibleNetwork_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_flexibleNetwork_version.xsd index 6c58c18b2..c01a24293 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_flexibleNetwork_version.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_flexibleNetwork_version.xsd @@ -44,7 +44,7 @@ Rail transport, Roads and Road transport - + A group of FLEXIBLE ROUTEs of which is generally known to the public by a similar name or number and which have common booking arrangements. DEPRECATED: please use LINE instead. +v2.0 @@ -101,7 +101,7 @@ Rail transport, Roads and Road transport - + Specialisation of ROUTE for flexible service. May include both point and zonal areas and ordered and unordered sections. diff --git a/xsd/netex_part_1/part1_networkDescription/netex_lineNetwork_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_lineNetwork_version.xsd index 5a5e03d1a..7511df4ca 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_lineNetwork_version.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_lineNetwork_version.xsd @@ -168,7 +168,7 @@ Rail transport, Roads and Road transport - + A section of a LINE NETWORK comprising an edge between two nodes. Not directional. @@ -260,7 +260,7 @@ Rail transport, Roads and Road transport - + Inclusion of a POINT on a LINE SECTION. +v1.1 diff --git a/xsd/netex_part_1/part1_networkDescription/netex_line_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_line_support.xsd index 16803226f..7f7032408 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_line_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_line_support.xsd @@ -36,7 +36,7 @@ Rail transport, Roads and Road transport NeTEx LINE identifier Type Definitions. - + Reference to a GROUP OF LINEs. diff --git a/xsd/netex_part_1/part1_networkDescription/netex_line_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_line_version.xsd index f58116536..8d4bf6abe 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_line_version.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_line_version.xsd @@ -274,17 +274,17 @@ Rail transport, Roads and Road transport - + - + Dummy Supertype for LINE & FLEXIBLE LINe. - + A group of ROUTEs which is generally known to the public by a similar name or number. diff --git a/xsd/netex_part_1/part1_networkDescription/netex_networkInfrastructure_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_networkInfrastructure_version.xsd index c12e14819..a8d4b44a5 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_networkInfrastructure_version.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_networkInfrastructure_version.xsd @@ -236,7 +236,7 @@ Rail transport, Roads and ROAD transport - + A Dummy Supertype for Infrastructure Link Types. @@ -272,7 +272,7 @@ Rail transport, Roads and ROAD transport - + A type of INFRASTRUCTURE LINK used to describe a RAILWAY network. @@ -330,7 +330,7 @@ Rail transport, Roads and ROAD transport - + A type of INFRASTRUCTURE LINK used to describe a ROAD network. @@ -388,7 +388,7 @@ Rail transport, Roads and ROAD transport - + A type of INFRASTRUCTURE LINK used to describe a WIRE network. diff --git a/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_version.xsd index 3150b4092..db1967e21 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_version.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_version.xsd @@ -96,7 +96,7 @@ Rail transport, Roads and ROAD transport - + A constraint on use of a network of INFRASTRUCTURE POINTs and INFRASTUCTURE LINKs. diff --git a/xsd/netex_part_1/part1_networkDescription/netex_route_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_route_version.xsd index 62d64ff46..e29f8debd 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_route_version.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_route_version.xsd @@ -114,7 +114,7 @@ Rail transport, Roads and Road transport - + @@ -214,12 +214,12 @@ Rail transport, Roads and Road transport - + Dummy supertype for Route. - + An ordered list of located POINTs defining one single path through the Road (or rail) network. A ROUTE may pass through the same POINT more than once. diff --git a/xsd/netex_part_1/part1_networkDescription/netex_timingPattern_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_timingPattern_support.xsd index cc1fb6b9a..afdbb92a4 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_timingPattern_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_timingPattern_support.xsd @@ -189,7 +189,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF TIMING LINKs. diff --git a/xsd/netex_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_version.xsd index 51b00503d..d6767ba80 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_version.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_version.xsd @@ -118,7 +118,7 @@ Rail transport, Roads and Road transport - + @@ -176,12 +176,12 @@ Rail transport, Roads and Road transport - + A TIMING POINT where a relief is possible, i.e. a driver may take on or hand over a vehicle. The vehicle may sometimes be left unattended. - + A TIMING POINT where a relief is possible, i.e. a driver may take on or hand over a vehicle. The vehicle may sometimes be left unattended. @@ -235,12 +235,12 @@ Rail transport, Roads and Road transport - + A TIMING POINT where vehicles may stay unattended for a long time. A vehicle's return to park at a PARKING POINT marks the end of a BLOCK. - + A TIMING POINT where vehicles may stay unattended for a long time. A vehicle's return to park at a PARKING POINT marks the end of a BLOCK. @@ -303,7 +303,7 @@ Rail transport, Roads and Road transport - + A subtype of PARKING POINT located in a GARAGE. @@ -415,7 +415,7 @@ Rail transport, Roads and Road transport Contact details for GARAGE. - + OPERATORs assoicated with GARAGE. diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_commonSection_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_commonSection_version.xsd index 678274c96..f29cd60d3 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_commonSection_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_commonSection_version.xsd @@ -86,7 +86,7 @@ Rail transport, Roads and Road transport - + A shared set of LINKS or POINTs. A part of a public transport network where the ROUTEs of several JOURNEY PATTERNs are going in parallel and where the synchronisation of SERVICE JOURNEYs may be planned and controlled with respect to commonly used LINKs and STOP POINTs. COMMON SECTIONs are defined arbitrarily and need not cover the total lengths of topologically bundled sections. diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd index 3cd0729f6..a57bc39d5 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd @@ -198,7 +198,7 @@ Rail transport, Roads and Road transport - + Reference to a FARE ZONE. diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_version.xsd index 4399ef9c7..da66bd773 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_version.xsd @@ -418,7 +418,7 @@ Rail transport, Roads and Road transport - + A subdivision of a JOURNEY PATTERN consisting of consecutive POINTs IN JOURNEY PATTERN, used to define an element of the fare structure. @@ -484,7 +484,7 @@ Rail transport, Roads and Road transport - + A specialization of TARIFF ZONE to include FARE SECTIONs. diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPattern_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPattern_version.xsd index 00c777e74..cb8fe5163 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPattern_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPattern_version.xsd @@ -85,18 +85,18 @@ Rail transport, Roads and Road transport - + - + Dummy Supertype for JOURNEY PATTERN. - + An ordered list of SCHEDULED STOP POINTs and TIMING POINTs on a single ROUTE, describing the pattern of working for public transport vehicles. A JOURNEY PATTERN may pass through the same POINT more than once. The first point of a JOURNEY PATTERN is the origin. The last point is the destination. @@ -234,7 +234,7 @@ Rail transport, Roads and Road transport - + A JOURNEY PATTERN to be used for DEAD RUNs. 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 6302ec07d..ff88d2f08 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_version.xsd @@ -280,7 +280,7 @@ LOGICAL DISPLAY corresponds to a SIRI STOP MONITORING point. - + The assignment of one STOP POINT and one JOURNEY PATTERN to a PASSENGER INFORMATION EQUIPMENT, specifying that information on this STOP POINT and this JOURNEY PATTERN will be provided (e.g. displayed, printed). diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_routingConstraint_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_routingConstraint_version.xsd index 62052cfd5..283f679e3 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_routingConstraint_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_routingConstraint_version.xsd @@ -184,7 +184,7 @@ Rail transport, Roads and Road transport - + A constraint on the use of a service. The service, on this specific JOURNEY PATTERN (usually a FTS JOURNEY PATTERN) cannot operate when another (regular) service operates. This may occur only on subpart of the JOURNEY PATTERN, or only on one or some specific SCHEDULED STOP POINTs within the pattern. @@ -257,7 +257,7 @@ Rail transport, Roads and Road transport - + A CONSTRAINT that can be applied on a CONNECTION or INTERCHANGE between two SCHEDULED STOP POINT, preventing or forbidding the passenger to use it. 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 885478621..11269ac0b 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_version.xsd @@ -689,7 +689,7 @@ Rail transport, Roads and Road transport - + The JOURNEY PATTERN for a (passenger carrying) SERVICE JOURNEY. 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 9ed36de11..634cb3329 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_version.xsd @@ -269,7 +269,7 @@ Rail transport, Roads and Road transport - + Assignment of a SCHEDULED STOP POINT to a STOP PLACE and QUAY, etc. @@ -283,7 +283,7 @@ Rail transport, Roads and Road transport - + diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_timeDemandType_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_timeDemandType_version.xsd index baf911a8d..ce6a5a874 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_timeDemandType_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_timeDemandType_version.xsd @@ -222,7 +222,7 @@ Rail transport, Roads and Road transport - + The assignment of a TIME DEMAND TYPE to a TIME BAND depending on the DAY TYPE and GROUP OF TIMING LINKS. diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_timingPattern_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_timingPattern_version.xsd index 88cb1c53f..595fa9852 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_timingPattern_version.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_timingPattern_version.xsd @@ -144,7 +144,7 @@ Rail transport, Roads and Road transport - + TIMING POINT. @@ -153,12 +153,12 @@ Rail transport, Roads and Road transport - + A POINT against which the timing information necessary to build schedules may be recorded. - + A POINT against which the timing information necessary to build schedules may be recorded. diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_call_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_call_version.xsd index c938f8e02..3c486648d 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_call_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_call_version.xsd @@ -80,17 +80,17 @@ Rail transport, Roads and Road transport - + - + Dummy CALL. - + A visit to a SCHEDULED STOP POINT as part of a VEHICLE JOURNEY. A CALL is a view of a POINT IN JOURNEY PATTERN that adds in derived data. diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_datedVehicleJourney_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_datedVehicleJourney_version.xsd index 5f67e6f3d..28300f408 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_datedVehicleJourney_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_datedVehicleJourney_version.xsd @@ -118,7 +118,7 @@ Rail transport, Roads and Road transport - + A particular journey of a vehicle on a particular OPERATING DAY including all modifications possibly decided by the control staff. @@ -246,7 +246,7 @@ Rail transport, Roads and Road transport - + A particular SERVICE JOURNEY of a vehicle on a particular OPERATING DAY including all modifications possibly decided by the control staff. @@ -297,7 +297,7 @@ The VIEW includes derived ancillary data from referenced entities. - + A DATED VEHICLE JOURNEY identical to a long-term planned VEHICLE JOURNEY, possibly updated according to short-term modifications of the PRODUCTION PLAN decided by the control staff. @@ -344,7 +344,7 @@ The VIEW includes derived ancillary data from referenced entities. - + A particular journey of a vehicle on a particular OPERATING DAY including all modifications possibly decided by the control staff. diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_version.xsd index d19489bcf..3a5886b63 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_version.xsd @@ -77,7 +77,7 @@ - + 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 diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_version.xsd index 80590e4dc..39a4b7edd 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_version.xsd @@ -81,7 +81,7 @@ - + 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 diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_interchange_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_interchange_version.xsd index 3f6ee56eb..d237b31a3 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_interchange_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_interchange_version.xsd @@ -347,7 +347,7 @@ Rail transport, Roads and Road transport - + A quality parameter fixing the acceptable duration (standard and maximum) for an INTERCHANGE to be planned between two SCHEDULED STOP POINTs. This parameter will be used to control whether any two SERVICE JOURNEYs serving those points may be in connection. @@ -408,7 +408,7 @@ Rail transport, Roads and Road transport - + Dummy supertype for INTERCHANGe. @@ -589,7 +589,7 @@ Default is false. - + The scheduled possibility for transfer of passengers between two SERVICE JOURNEYs at the same or different STOP POINTs. @@ -663,7 +663,7 @@ Default is false. - + A recognised/organised possibility for passengers to change public transport vehicles using two STOP POINTs (which may be identical) on two particular SERVICE JOURNEY PATTERNs, including the maximum wait duration allowed and the standard to be aimed at. These may supersede the times given for the DEFAULT INTERCHANGE. Schedulers may use this entity for synchronisation of journeys. diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_journeyAccounting_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_journeyAccounting_version.xsd index f1a466ddf..ac632536a 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_journeyAccounting_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_journeyAccounting_version.xsd @@ -101,7 +101,7 @@ Rail transport, Roads and Road transport - + Parameters characterizing VEHICLE JOURNEYs or SPECIAL SERVICEs used for accounting purposes in particular in contracts between ORGANISATIONs. @@ -151,7 +151,7 @@ Rail transport, Roads and Road transport Object for which this accounts. - + ORGANISATION contracting service. diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_journey_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_journey_version.xsd index 1c68f8a8f..d3e6be758 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_journey_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_journey_version.xsd @@ -72,12 +72,12 @@ Rail transport, Roads and Road transport JOURNEY types for NeTEx. - + Dummy supertype for Journey. - + Common properties of a JOURNEY. diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd index a8cf4d130..d082de601 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd @@ -147,7 +147,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF SERVICEs. diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_version.xsd index a4aa3a200..0f018763d 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_version.xsd @@ -86,12 +86,12 @@ Rail transport, Roads and Road transport - + Dummy SERVICE JOURNEY Supertype. - + A passenger carrying VEHICLE JOURNEY for one specified DAY TYPE. The pattern of working is in principle defined by a SERVICE JOURNEY PATTERN. @@ -294,7 +294,7 @@ The VIEW includes derived ancillary data from referenced entities. - + A VEHICLE JOURNEY with a set of frequencies that may be used to represent a set of similar journeys differing only by their time of departure. @@ -348,7 +348,7 @@ The VIEW includes derived ancillary data from referenced entities. - + A passenger carrying VEHICLE JOURNEY for one specified DAY TYPE. The pattern of working is in principle defined by a SERVICE JOURNEY PATTERN. @@ -668,7 +668,7 @@ The VIEW includes derived ancillary data from referenced entities. - + A non-service VEHICLE JOURNEY. diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd index 7fd678066..2b7934f6d 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd @@ -110,7 +110,7 @@ Rail transport, Roads and Road transport - + Reference to a JOURNEY FREQUENCY GROUP. diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_version.xsd index 336d37778..7382ff169 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_version.xsd @@ -107,12 +107,12 @@ Rail transport, Roads and Road transport - + Dummy VEHICLE JOURNEY supertype. - + The planned movement of a public transport vehicle on a DAY TYPE from the start point to the end point of a JOURNEY PATTERN on a specified ROUTE. @@ -305,7 +305,7 @@ Rail transport, Roads and Road transport - + A repeating VEHICLE JOURNEY for which a frequency has been specified, either as a HEADWAY JOURNEY GROUP (e.g. every 20 minutes) or a RHYTHMICAL JOURNEY GROUP (e.g. at 15, 27 and 40 minutes past the hour). It may thus represent multiple journeys. 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 a022c97d8..84c6a74ad 100644 --- a/xsd/netex_part_3/part3_fares/netex_accessRightParameter_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_accessRightParameter_version.xsd @@ -178,7 +178,7 @@ Rail transport, Roads and Road transport - + @@ -205,7 +205,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. @@ -214,12 +214,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.). @@ -768,12 +768,12 @@ Rail transport, Roads and Road transport - + - + An ACCESS RIGHT PARAMETER ASSIGNMENT relating a fare collection parameter to a theoretical FARE PRODUCT (or one of its components) or a SALES OFFER PACKAGE. @@ -868,7 +868,7 @@ Rail transport, Roads and Road transport - + A VALIDITY PARAMETER ASSIGNMENT specifying practical parameters during a TRAVEL GenericATION, within a given fare structure (e.g. the origin or destination zone in a zone-counting system). @@ -943,7 +943,7 @@ Rail transport, Roads and Road transport - + Optimisation: Can be used without id constraintA VALIDITY PARAMETER ASSIGNMENT specifying practical parameters during a TRAVEL GenericATION, within a given fare structure (e.g. the origin or destination zone in a zone-counting system). diff --git a/xsd/netex_part_3/part3_fares/netex_calculationParameters_version.xsd b/xsd/netex_part_3/part3_fares/netex_calculationParameters_version.xsd index f50c399c3..dd5165e9c 100644 --- a/xsd/netex_part_3/part3_fares/netex_calculationParameters_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_calculationParameters_version.xsd @@ -374,7 +374,7 @@ Rail transport, Roads and Road transport - + A type of day used in the fare collection domain, characterized by one or more properties which affect the definition of access rights and prices in the fare system. @@ -491,17 +491,17 @@ Rail transport, Roads and Road transport - + - + Dumm abstact type of Pricing rule. - + Parameters describing how a fare is to be computed. @@ -581,7 +581,7 @@ Rail transport, Roads and Road transport - + A price for which a discount can be offered. @@ -646,7 +646,7 @@ Rail transport, Roads and Road transport - + A price for which a discount can be offered. @@ -764,7 +764,7 @@ Rail transport, Roads and Road transport - + OPTIMISED version whcih can be be used only in line assues ID of comtainign context -no id checking. A price for which a discount can be offered. @@ -903,7 +903,7 @@ Rail transport, Roads and Road transport Name of PRICING SERVICE parameter set. - + URL at which service is available. diff --git a/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_support.xsd b/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_support.xsd index 18abb351c..ad08beddd 100644 --- a/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_support.xsd @@ -79,7 +79,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF DISTANCE MATRIX ELEMENTs. diff --git a/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_version.xsd b/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_version.xsd index ef1308913..f64b623e4 100644 --- a/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_version.xsd @@ -224,12 +224,12 @@ Rail transport, Roads and Road transport - + Dummy SERVICE JOURNEY supertype. - + A cell of an origin-destination matrix for TARIFF ZONEs or STOP POINTs, expressing a fare distance for the corresponding trip: value in km, number of fare units etc. @@ -439,12 +439,12 @@ Rail transport, Roads and Road transport - + - + A set of all possible price features of a DISTANCE MATRIX ELEMENT: default total price etc. . @@ -494,7 +494,7 @@ Rail transport, Roads and Road transport - + A dynamic free-standing distance matrix element. Used when a pre-computed distance matrix element is not feasible. diff --git a/xsd/netex_part_3/part3_fares/netex_farePrice_support.xsd b/xsd/netex_part_3/part3_fares/netex_farePrice_support.xsd index 73c06f3b3..a99240e9d 100644 --- a/xsd/netex_part_3/part3_fares/netex_farePrice_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_farePrice_support.xsd @@ -137,7 +137,7 @@ Rail transport, Roads and Road transport - + Reference to a PRICE GROUP. @@ -157,7 +157,7 @@ Rail transport, Roads and Road transport - + Dummy Reference to a FARE TABLE CELL. 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 f3cf64a12..94daa2f0e 100644 --- a/xsd/netex_part_3/part3_fares/netex_farePrice_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_farePrice_version.xsd @@ -91,18 +91,18 @@ Rail transport, Roads and Road transport - + - + Dummy Abstract price. - + An element that may have a FARE PRICE. @@ -189,7 +189,7 @@ Rail transport, Roads and Road transport - + A grouping of prices that may be associated with a DISTANCE MATRIX ELEMENT, FARE STRUCTURE ELEMENT or other PRICEABLE OBJECT. @@ -202,7 +202,7 @@ Rail transport, Roads and Road transport - + @@ -216,18 +216,18 @@ Rail transport, Roads and Road transport - - + + - + Dummy Abstract PRICE. - + A set of all possible price features for a Fare element. @@ -342,7 +342,7 @@ Rail transport, Roads and Road transport - + @@ -452,8 +452,8 @@ The RULE STEP RESULT Adjustment Amount is the difference beteen the original i - - + + @@ -466,18 +466,18 @@ The RULE STEP RESULT Adjustment Amount is the difference beteen the original i - + - + A grouping of prices, allowing the grouping of numerous possible consumption elements into a limited number of price references, or to apply grouped increase, in value or percentage. - + A grouping of prices, allowing the grouping of numerous possible consumption elements into a limited number of price references, or to apply grouped increase, in value or percentage. diff --git a/xsd/netex_part_3/part3_fares/netex_fareProduct_version.xsd b/xsd/netex_part_3/part3_fares/netex_fareProduct_version.xsd index 81a8e7e10..b2722b3d3 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareProduct_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareProduct_version.xsd @@ -113,19 +113,19 @@ Rail transport, Roads and Road transport - + - + An immaterial marketable element - + An immaterial marketable element dedicated to accessing some services. @@ -195,13 +195,13 @@ Rail transport, Roads and Road transport - + An immaterial marketable element (access rights, discount rights etc), specific to a CHARGING MOMENT. - + An immaterial marketable element (access rights, discount rights etc), specific to a CHARGING MOMENT. @@ -277,7 +277,7 @@ Rail transport, Roads and Road transport - + ORGANISATION in charge of the FARE PRODUCT. +v1.2.2 @@ -384,7 +384,7 @@ Rail transport, Roads and Road transport - + A FARE PRODUCT allowing a customer to benefit from discounts when purchasing SALES OFFER PACKAGEs. @@ -456,7 +456,7 @@ Rail transport, Roads and Road transport - + A precondition to access a service or to purchase a FARE PRODUCT issued by an organisation that may not be a PT operator (e.g. military card). @@ -513,7 +513,7 @@ Rail transport, Roads and Road transport - + A FARE PRODUCT that is marketed together with a Public Transport Fare Product. @@ -566,7 +566,7 @@ Rail transport, Roads and Road transport - + A FARE PRODUCT allowing a customer to benefit from discounts when consuming VALIDABLE ELEMENTs. @@ -612,7 +612,7 @@ Rail transport, Roads and Road transport - + A FARE PRODUCT allowing a customer to benefit from discounts when consuming VALIDABLE ELEMENTs. @@ -685,7 +685,7 @@ Rail transport, Roads and Road transport - + Rule about capping for a mode. @@ -809,7 +809,7 @@ Rail transport, Roads and Road transport - + A FARE PRODUCT consisting in a stored value of PRICE UNITs: an amount of money on an electronic purse, amount of units on a value card etc. @@ -874,7 +874,7 @@ Rail transport, Roads and Road transport - + A FARE PRODUCT consisting of one or several VALIDABLE ELEMENTs, specific to a CHARGING MOMENT. @@ -932,7 +932,7 @@ Rail transport, Roads and Road transport - + A FARE PRODUCT consisting of one or several VALIDABLE ELEMENTs, specific to a CHARGING MOMENT. @@ -1094,13 +1094,13 @@ Rail transport, Roads and Road transport - + - + A set of all possible price features of a FARE PRODUCT default total price, discount in value or percentage etc. @@ -1156,13 +1156,13 @@ Rail transport, Roads and Road transport - + - + A set of all possible price features of a CAPPING RULE default total price, discount in value or percentage etc. 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 c14366567..c2a56581c 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareSeries_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareSeries_support.xsd @@ -88,7 +88,7 @@ - + Extending type for Reference to a SERIES CONSTRAINT. @@ -107,7 +107,7 @@ Type for Reference to a SERIES CONSTRAINT. - + Identifier of a SERIES 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 f0cc44f0b..7891f6aba 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareSeries_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareSeries_version.xsd @@ -105,7 +105,7 @@ - + A particular tariff, described by a combination of parameters. @@ -286,12 +286,12 @@ A set of all possible price features of a SERIES CONSTRAINT: default total price, discount in value or percentage etc. - + - + A set of all possible price features of a SERIES CONSTRAINT: default total price, discount in value or percentage etc. @@ -399,7 +399,7 @@ Elements for a ZONE IN SERIES. - + Whether interchange is allowed in a zone. diff --git a/xsd/netex_part_3/part3_fares/netex_fareStructureElement_version.xsd b/xsd/netex_part_3/part3_fares/netex_fareStructureElement_version.xsd index 5ef8a391d..cd7064c94 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareStructureElement_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareStructureElement_version.xsd @@ -242,7 +242,7 @@ Rail transport, Roads and Road transport Calculation Elements for TARIFF. - + @@ -611,12 +611,12 @@ Rail transport, Roads and Road transport A set of all possible price features of a FARE STRUCTURE ELEMENT: default total price, discount in value or percentage etc. - + - + A set of all possible price features of a FARE STRUCTURE ELEMENT: default total price, discount in value or percentage etc. diff --git a/xsd/netex_part_3/part3_fares/netex_fareTable_support.xsd b/xsd/netex_part_3/part3_fares/netex_fareTable_support.xsd index 6c8362c98..fcc14b187 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareTable_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareTable_support.xsd @@ -78,7 +78,7 @@ Rail transport, Roads and Road transport - + Reference to a FARE TABLE. @@ -168,7 +168,7 @@ Rail transport, Roads and Road transport - + Reference to a CELL. 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 81c138ae1..bd44e22ec 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareTable_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareTable_version.xsd @@ -142,14 +142,14 @@ Rail transport, Roads and Road transport - + - + Dummy Abstract CELL. @@ -167,7 +167,7 @@ Rail transport, Roads and Road transport - + A grouping of prices that may be associated with a DISTANCE MATRIX ELEMENT, FARE STRUCTURE ELEMENT or other PRICEABLE OBJECT. @@ -276,7 +276,7 @@ Rail transport, Roads and Road transport Elements that use FARE TABLE that are not PRICEABLE OBJECTs. - + @@ -337,13 +337,13 @@ Rail transport, Roads and Road transport - + A grouping of prices that may be associated with a DISTANCE MATRIX ELEMENT, FARE STRUCTURE ELEMENT or other PRICEABLE OBJECT. OPTIMIZATION - Alias for FARE TABLE That does not require an ID to be present. - + A set of price for a combination of price features in a Tariff. @@ -446,7 +446,7 @@ Rail transport, Roads and Road transport - + @@ -492,7 +492,7 @@ Rail transport, Roads and Road transport - + An individual combination of features in a FARE TABLE, used to associate a FARE PRICE. @@ -558,7 +558,7 @@ Rail transport, Roads and Road transport - + diff --git a/xsd/netex_part_3/part3_fares/netex_geographicStructureFactor_version.xsd b/xsd/netex_part_3/part3_fares/netex_geographicStructureFactor_version.xsd index 59ac83422..97451181e 100644 --- a/xsd/netex_part_3/part3_fares/netex_geographicStructureFactor_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_geographicStructureFactor_version.xsd @@ -189,7 +189,7 @@ Rail transport, Roads and Road transport - + A factor influencing access rights definition or calculation of prices. @@ -363,12 +363,12 @@ Rail transport, Roads and Road transport A set of all possible price features of a GEOGRAPHICAL UNIT : default total price, discount in value or percentage etc. - + - + A set of all possible price features of a GEOGRAPHICAL UNIT: default total price etc. @@ -434,12 +434,12 @@ Rail transport, Roads and Road transport A set of all possible price features of a GEOGRAPHICAL INTERVAL : default total price, discount in value or percentage etc. - + - + A set of all possible price features of a GEOGRAPHICAL INTERVAL: default total price etc. diff --git a/xsd/netex_part_3/part3_fares/netex_qualityStructureFactor_version.xsd b/xsd/netex_part_3/part3_fares/netex_qualityStructureFactor_version.xsd index 2b6ec539c..27ad6894a 100644 --- a/xsd/netex_part_3/part3_fares/netex_qualityStructureFactor_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_qualityStructureFactor_version.xsd @@ -91,17 +91,17 @@ Rail transport, Roads and Road transport - + - + Dummy type. - + The value of a QUALITY INTERVAL or a DISTANCE MATRIX ELEMENT expressed by a QUALITY UNIT. @@ -183,12 +183,12 @@ Rail transport, Roads and Road transport A set of all possible price features of a QUALITY STRUCTURE FACTOR : default total price, discount in value or percentage etc. - + - + A set of all possible price features of a QUALITY STRUCTURE FACTOR: default total price etc. @@ -248,7 +248,7 @@ Rail transport, Roads and Road transport - + The value of a QUALITY INTERVAL or a DISTANCE MATRIX ELEMENT expressed by a QUALITY UNIT. @@ -339,7 +339,7 @@ Rail transport, Roads and Road transport - + A named set of parameters defining the number of quota fares available. of a given denomination. diff --git a/xsd/netex_part_3/part3_fares/netex_salesDistribution_support.xsd b/xsd/netex_part_3/part3_fares/netex_salesDistribution_support.xsd index c269f58d7..6867238de 100644 --- a/xsd/netex_part_3/part3_fares/netex_salesDistribution_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_salesDistribution_support.xsd @@ -208,7 +208,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF DISTRIBUTION CHANNELs. diff --git a/xsd/netex_part_3/part3_fares/netex_salesDistribution_version.xsd b/xsd/netex_part_3/part3_fares/netex_salesDistribution_version.xsd index a6db9e21a..1045716be 100644 --- a/xsd/netex_part_3/part3_fares/netex_salesDistribution_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_salesDistribution_version.xsd @@ -198,7 +198,7 @@ Rail transport, Roads and Road transport Contact details for distribution channel - + Payment methods allowed. @@ -310,7 +310,7 @@ Rail transport, Roads and Road transport - + The means by which the ticket is delivered to the Customer. e.g. online, collection, etc. @@ -395,12 +395,12 @@ Rail transport, Roads and Road transport A set of all possible price features of a FARE STRUCTURE ELEMENT: default total price, discount in value or percentage etc. - + - + A set of all possible price features of a FULFILMENT METHOD: default total price, discount in value or percentage etc. diff --git a/xsd/netex_part_3/part3_fares/netex_salesOfferPackageEntitlement_version.xsd b/xsd/netex_part_3/part3_fares/netex_salesOfferPackageEntitlement_version.xsd index 39c261b9f..5a06e0d1c 100644 --- a/xsd/netex_part_3/part3_fares/netex_salesOfferPackageEntitlement_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_salesOfferPackageEntitlement_version.xsd @@ -61,7 +61,7 @@ Rail transport, Roads and Road transport NeTEX: SALES OFFER ENTITLEMENT USAGE PARAMETER types. - + A right to a SALES OFFER PACKAGE given by a SALES OFFER PACKAGE . @@ -117,7 +117,7 @@ Rail transport, Roads and Road transport - + A rerirement to a SALES OFFER PACKAGE in order to purchase or use PRODUCT. diff --git a/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_support.xsd b/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_support.xsd index f8458dfcd..28db648be 100644 --- a/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_support.xsd @@ -197,7 +197,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF SALES OFFER PACKAGEs. 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 370038e17..d320e7cd8 100644 --- a/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_version.xsd @@ -168,7 +168,7 @@ Rail transport, Roads and Road transport - + A package to be sold as a whole, consisting of one or several FARE PRODUCTs materialised thanks to one or several TRAVEL DOCUMENTs. The FARE PRODUCTs may be either directly attached to the TRAVEL DOCUMENTs, or may be reloadable on the TRAVEL DOCUMENTs. @@ -370,12 +370,12 @@ Rail transport, Roads and Road transport A set of all possible price features of a SALES OFFER PACKAGE ELEMENT: default total price, discount in value or percentage etc. - + - + A set of all possible price features of a SALES OFFER PACKAGE ELEMENT: default total price, discount in value or percentage etc. @@ -436,7 +436,7 @@ Rail transport, Roads and Road transport - + A particular tariff, described by a combination of parameters. @@ -556,7 +556,7 @@ Rail transport, Roads and Road transport - + The assignment of a NOTICE to a SALES OFFER PACKAGE or a GROUP OF SALES OFFER PACKAGEs. @@ -624,7 +624,7 @@ Rail transport, Roads and Road transport - + An assignment of the COUNTRY and/or DISTRIBUTION CHANNEL through which a product may or may not be distributed. @@ -657,7 +657,7 @@ Rail transport, Roads and Road transport Type for DISTRIBUTION ASSIGNMENT. - + diff --git a/xsd/netex_part_3/part3_fares/netex_timeStructureFactor_version.xsd b/xsd/netex_part_3/part3_fares/netex_timeStructureFactor_version.xsd index db08f321e..a9cc3f6cf 100644 --- a/xsd/netex_part_3/part3_fares/netex_timeStructureFactor_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_timeStructureFactor_version.xsd @@ -192,7 +192,7 @@ Rail transport, Roads and Road transport - + A factor influencing access rights definition or calculation of prices. @@ -349,7 +349,7 @@ Rail transport, Roads and Road transport - + A set of all possible price features of a TIME UNIT: default total price etc. @@ -388,7 +388,7 @@ Rail transport, Roads and Road transport A set of all possible price features of a TIME UNIT : default total price, discount in value or percentage etc. - + @@ -414,7 +414,7 @@ Rail transport, Roads and Road transport - + A set of all possible price features of a TIME INTERVAL: default total price etc. @@ -453,7 +453,7 @@ Rail transport, Roads and Road transport A set of all possible price features of a TIME INTERVAL : default total price, discount in value or percentage etc. - + diff --git a/xsd/netex_part_3/part3_fares/netex_usageParameterAfterSales_version.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterAfterSales_version.xsd index 3ad25f4a7..76e16a2d7 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterAfterSales_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterAfterSales_version.xsd @@ -75,7 +75,7 @@ Rail transport, Roads and Road transport NeTEX: After Sales USAGE PARAMETER types. - + Common resale conditions (i.e. for exchange or refund) attaching to the product @@ -251,7 +251,7 @@ Rail transport, Roads and Road transport - + The number and characteristics of persons entitled to use the public transport service instead of the original customer. @@ -323,7 +323,7 @@ Rail transport, Roads and Road transport - + Whether and how the product may be refunded. @@ -396,7 +396,7 @@ Rail transport, Roads and Road transport - + Whether the product can be replaced if lost or stolen. @@ -448,7 +448,7 @@ Rail transport, Roads and Road transport - + The number and characteristics of persons entitled to use the public transport service instead of the original customer. diff --git a/xsd/netex_part_3/part3_fares/netex_usageParameterBooking_version.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterBooking_version.xsd index 782a152f3..3eace6114 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterBooking_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterBooking_version.xsd @@ -75,7 +75,7 @@ Rail transport, Roads and Road transport NeTEX: Booking USAGE PARAMETER types. - + The number and characteristics of persons entitled to use the public transport service instead of the original customer. @@ -165,7 +165,7 @@ Rail transport, Roads and Road transport - + The number and characteristics of persons entitled to use the public transport service instead of the original customer. +v1.2.2 @@ -219,7 +219,7 @@ Rail transport, Roads and Road transport - + The number and characteristics of persons entitled to use the public transport service instead of the original customer. @@ -346,7 +346,7 @@ Rail transport, Roads and Road transport - + The number and characteristics of persons entitled to use the public transport service instead of the original customer. diff --git a/xsd/netex_part_3/part3_fares/netex_usageParameterCharging_version.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterCharging_version.xsd index e4dc9e57b..4a847dc11 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterCharging_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterCharging_version.xsd @@ -67,7 +67,7 @@ Rail transport, Roads and Road transport NeTEX: Charging USAGE PARAMETER types. - + Policy regarding different aspects of charging such as credit limits. @@ -141,7 +141,7 @@ Rail transport, Roads and Road transport - + Policy regarding different aspects of penalty charges, for example repeated entry at the same station, no ticket etc. @@ -210,7 +210,7 @@ Rail transport, Roads and Road transport - + Parameters relating to paying by Subscribing for a product. +v1.1 diff --git a/xsd/netex_part_3/part3_fares/netex_usageParameterEligibility_version.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterEligibility_version.xsd index d6ae504c6..247419955 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterEligibility_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterEligibility_version.xsd @@ -73,7 +73,7 @@ Rail transport, Roads and Road transport NeTEX: Eligibility USAGE PARAMETER types. - + The social profile of a passenger, based on age group, education, profession, social status, sex etc., often used for allowing discounts: 18-40 years old, graduates, drivers, unemployed, women etc. @@ -205,7 +205,7 @@ Rail transport, Roads and Road transport - + A category of users depending on their commercial relations with the operator (frequency of use, amount of purchase etc.), often used for allowing discounts. @@ -266,7 +266,7 @@ Rail transport, Roads and Road transport - + The number and characteristics of persons entitled to travel including the holder of the access right. @@ -418,7 +418,7 @@ Rail transport, Roads and Road transport - + The number and characteristics (weight, volume) of luggage that a holder of an access right is entitled to carry. @@ -690,7 +690,7 @@ Rail transport, Roads and Road transport - + The policy to apply if ta user's eligibility as a USER PROFILE changes. diff --git a/xsd/netex_part_3/part3_fares/netex_usageParameterEntitlement_version.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterEntitlement_version.xsd index a188eaedc..d2b8a7378 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterEntitlement_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterEntitlement_version.xsd @@ -64,7 +64,7 @@ Rail transport, Roads and Road transport NeTEX: Entitlement USAGE PARAMETER types. - + A right to a SERVICE ACCESS RIGHT is given by a FARE PRODUCT. @@ -120,7 +120,7 @@ Rail transport, Roads and Road transport - + A rerirement to a SERVICE ACCESS RIGHT in order to purchase or use PRODUCT. diff --git a/xsd/netex_part_3/part3_fares/netex_usageParameterLuggage_version.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterLuggage_version.xsd index 5ab5bd3e2..e5384860f 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterLuggage_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterLuggage_version.xsd @@ -61,7 +61,7 @@ Rail transport, Roads and Road transport NeTEX: Luggage USAGE PARAMETER types. - + The number and characteristics (weight, volume) of luggage that a holder of an access right is entitled to carry. 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 016e85f37..a27617ce5 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterTravel_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterTravel_version.xsd @@ -78,7 +78,7 @@ Rail transport, Roads and Road transport NeTEX: Travel USAGE PARAMETER types. - + Properties relating to single or return trip use of a fare. @@ -147,7 +147,7 @@ Rail transport, Roads and Road transport - + Limitations on routing of a fare. @@ -216,7 +216,7 @@ Rail transport, Roads and Road transport - + Geographical parameter limiting the access rights by counts of stops, sections or zones. @@ -290,7 +290,7 @@ Rail transport, Roads and Road transport - + The limits of usage frequency for a FARE PRODUCT (or one of its components) or a SALES OFFER PACKAGE during a specific VALIDITY PERIOD. There may be different tariffs depending on how often the right is consumed during the period. @@ -365,7 +365,7 @@ Rail transport, Roads and Road transport - + A time limitation for validity of a FARE PRODUCT or a SALES OFFER PACKAGE. It may be composed of a standard duration (e.g. 3 days, 1 month) and/or fixed start/end dates and times. @@ -535,7 +535,7 @@ Rail transport, Roads and Road transport - + Conditions governing suspension of a FARE PRODUCT, e.g. period pass or subscription. @@ -615,7 +615,7 @@ Rail transport, Roads and Road transport - + Limitations on making changes within a trip. @@ -704,7 +704,7 @@ Rail transport, Roads and Road transport - + Details of any minimum stay at the destination required to use the product. diff --git a/xsd/netex_part_3/part3_fares/netex_usageParameter_version.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameter_version.xsd index 653f96ab4..1bdd8ad2e 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameter_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameter_version.xsd @@ -71,7 +71,7 @@ Rail transport, Roads and Road transport - + @@ -84,18 +84,18 @@ Rail transport, Roads and Road transport - + - + Dummy Supertype: A parameter used to specify the use of a fare system. - + A parameter used to specify the use of a fare system. @@ -162,7 +162,7 @@ Rail transport, Roads and Road transport - + A set of all possible price features of a FARE USAGE PARAMETER: default total price, discount in value or percentage etc. diff --git a/xsd/netex_part_3/part3_fares/netex_validableElement_version.xsd b/xsd/netex_part_3/part3_fares/netex_validableElement_version.xsd index f2fdb97ff..665416068 100644 --- a/xsd/netex_part_3/part3_fares/netex_validableElement_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_validableElement_version.xsd @@ -103,7 +103,7 @@ Rail transport, Roads and Road transport - + A sequence or set of FARE STRUCTURE ELEMENTs, grouped together to be validated in one go. @@ -213,12 +213,12 @@ Rail transport, Roads and Road transport - + - + A set of all possible price features of a VALIDABLE ELEMENT ELEMENT: default total price, discount in value or percentage etc. @@ -291,7 +291,7 @@ Rail transport, Roads and Road transport - + The smallest controllable element of public transport consumption, all along which any VALIDITY PARAMETER ASSIGNMENT remains valid. @@ -430,13 +430,13 @@ Rail transport, Roads and Road transport - + - + A set of all possible price features of a CONTROLLABLE ELEMENT ELEMENT: default total price, discount in value or percentage etc. diff --git a/xsd/netex_part_3/part3_parkingTariff/netex_parkingTariff_version.xsd b/xsd/netex_part_3/part3_parkingTariff/netex_parkingTariff_version.xsd index 46d6cc800..c53cd75da 100644 --- a/xsd/netex_part_3/part3_parkingTariff/netex_parkingTariff_version.xsd +++ b/xsd/netex_part_3/part3_parkingTariff/netex_parkingTariff_version.xsd @@ -304,7 +304,7 @@ Rail transport, Roads and Road transport - + A set of all possible price features of a PARKING TARIFF ELEMENT: default total price, discount in value or percentage etc. @@ -314,7 +314,7 @@ Rail transport, Roads and Road transport - + A set of all possible price features of a PARKING TARIFF ELEMENT: default total price, discount in value or percentage etc. diff --git a/xsd/netex_part_3/part3_salesTransactions/netex_customerEligibility_version.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_customerEligibility_version.xsd index a27d17923..a6ab58199 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_customerEligibility_version.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_customerEligibility_version.xsd @@ -40,17 +40,17 @@ Rail transport, Roads and Road transport - + - + Dummy Type for Customer Eligibility. - + Whether a specific TRANSPORT CUSTOMER is eligible for a FARE PRODUCT with a specific validity Parameter. This may be subject to a particular VALIDITY CONDITION. @@ -103,7 +103,7 @@ Rail transport, Roads and Road transport - + Whether a specific TRANSPORT CUSTOMER is eligible for a FARE PRODUCT with a specific USER PROFILE as a validity parameter. @@ -154,7 +154,7 @@ Rail transport, Roads and Road transport - + Whether a specific TRANSPORT CUSTOMER is eligible for a FARE PRODUCT with a specific COMMERCIAL PROFILE as a validity parameter. @@ -205,7 +205,7 @@ Rail transport, Roads and Road transport - + Whether a specific TRANSPORT CUSTOMER is eligible for a FARE PRODUCT with a specific RESIDENTIAL QUALIFICATION as a validity parameter. diff --git a/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_support.xsd index 73013733c..783c81bf0 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_support.xsd @@ -350,7 +350,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF CUSTOMER PURCHASE PACKAGEs. 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 fe3648153..60e38969e 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_version.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_version.xsd @@ -162,17 +162,17 @@ Rail transport, Roads and Road transport - + - + Dummy type for FARE CONTRACT ENTRY. - + The recording of a specification by a customer of parameters giving details of an intended consumption (e.g. origin and destination of a travel). @@ -259,13 +259,13 @@ Rail transport, Roads and Road transport - + - + The recording of a specification by a customer of parameters giving details of an intended consumption (e.g. origin and destination of a travel). @@ -329,7 +329,7 @@ Rail transport, Roads and Road transport - + A set of parameters giving details of the intended consumption of access rights associated with an offer or a purchase. (e.g. origin and destination of a travel, class of travel, etc.). . @@ -393,7 +393,7 @@ Rail transport, Roads and Road transport - + A VALIDITY PARAMETER ASSIGNMENT specifying practical parameters during a TRAVEL SPECIFICATION, within a given fare structure (e.g. the origin or destination zone in a zone-counting system). @@ -494,7 +494,7 @@ Rail transport, Roads and Road transport - + A purchase of a SALES OFFER PACKAGE by a CUSTOMER, giving access rights to one or several FARE PRODUCTs materialised as one or several TRAVEL DOCUMENTs. @@ -845,12 +845,12 @@ Rail transport, Roads and Road transport A set of all possible price features of a CUSTOMER PURCHASE PACKAGE ELEMENT: default total price, discount in value or percentage etc. - + - + A set of all possible price features of a CUSTOMER PURCHASE PACKAGE ELEMENT: default total price, discount in value or percentage etc. @@ -914,7 +914,7 @@ Rail transport, Roads and Road transport - + A VALIDITY PARAMETER ASSIGNMENT specifying practical parameters for use in a CUSTOMER PURCHASE PACKAGE. diff --git a/xsd/netex_part_3/part3_salesTransactions/netex_mediumApplication_version.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_mediumApplication_version.xsd index bb88dbd09..72db9d8d0 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_mediumApplication_version.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_mediumApplication_version.xsd @@ -90,7 +90,7 @@ Rail transport, Roads and Road transport MEDIUM APPLICATION data types - + A component (mobile phone, smart card, etc) with the necessary facilities (hardware and software) to host a MEDIUM APPLICATION INSTANCE and communicate with a control device. +v1.2.2. @@ -369,7 +369,7 @@ Rail transport, Roads and Road transport - + A listing of a MEDIUM ACCESS DEVICE on a SECURITY LIST. +v1.2.2 diff --git a/xsd/netex_part_3/part3_salesTransactions/netex_retailConsortium_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_retailConsortium_support.xsd index f58559813..59261ed96 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_retailConsortium_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_retailConsortium_support.xsd @@ -78,7 +78,7 @@ Rail transport, Roads and Road transport - + Reference to a RETAIL CONSORTIUM. diff --git a/xsd/netex_part_3/part3_salesTransactions/netex_retailConsortium_version.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_retailConsortium_version.xsd index b1df14517..e48f8aa53 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_retailConsortium_version.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_retailConsortium_version.xsd @@ -129,7 +129,7 @@ Rail transport, Roads and Road transport - + A group of ORGANISATIONs formally incorporated as a retailer of fare products. @@ -269,7 +269,7 @@ Rail transport, Roads and Road transport Status of Retail device. - + @@ -319,7 +319,7 @@ Rail transport, Roads and Road transport - + A listing of a RETAIL DEVICE on a sSECURITY LIST. diff --git a/xsd/netex_part_3/part3_salesTransactions/netex_salesContract_version.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_salesContract_version.xsd index 80a0ef6ce..7d844ee78 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_salesContract_version.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_salesContract_version.xsd @@ -428,17 +428,17 @@ Rail transport, Roads and Road transport - + - + Dummy type for FARE CONTRACT ENTRY. - + A log entry describing an event referring to the life of a FARE CONTRACT: initial contracting, sales, validation entries, etc. A subset of a FARE CONTRACT ENTRY is often materialised on a TRAVEL DOCUMENT. @@ -819,7 +819,7 @@ Rail transport, Roads and Road transport - + A listing of a CUSTOMER ACCOUNT on a SECURITY LIST. @@ -874,7 +874,7 @@ Rail transport, Roads and Road transport - + A listing of a CUSTOMER on a SECURITY LIST. @@ -929,7 +929,7 @@ Rail transport, Roads and Road transport - + A listing of a FARE CONTRACT on a SECURITY LIST. diff --git a/xsd/netex_part_3/part3_salesTransactions/netex_salesTransaction_version.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_salesTransaction_version.xsd index 84d6e8eef..ff650c55d 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_salesTransaction_version.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_salesTransaction_version.xsd @@ -128,7 +128,7 @@ Rail transport, Roads and Road transport - + A SALE OF a FIXED PACKAGE or a SALE OF a RELOADABLE PACKAGE. diff --git a/xsd/netex_part_3/part3_salesTransactions/netex_travelDocument_version.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_travelDocument_version.xsd index 4ee5b1cbe..4d70a94af 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_travelDocument_version.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_travelDocument_version.xsd @@ -170,7 +170,7 @@ Rail transport, Roads and Road transport - + A listing of a TRAVEL DOCUMENT on a SECURITY LIST. diff --git a/xsd/netex_part_5/part5_fm/netex_nm_accessCredentialsAssignment_version.xsd b/xsd/netex_part_5/part5_fm/netex_nm_accessCredentialsAssignment_version.xsd index 03e5df68f..5d0a9d594 100644 --- a/xsd/netex_part_5/part5_fm/netex_nm_accessCredentialsAssignment_version.xsd +++ b/xsd/netex_part_5/part5_fm/netex_nm_accessCredentialsAssignment_version.xsd @@ -139,7 +139,7 @@ Rail transport, Roads and Road transport - + The allocation of a MEDIUM ACCESS DEVICE to a specific VEHICLE, to allow the user (TRANSPORT CUSTOMER) to access the vehicle (tyically for VEHICLE SHARING or VEHICLE RENTAL). This allocation may have validity limitations. +V1.2.2 diff --git a/xsd/netex_part_5/part5_fm/netex_nm_usageParameterEligibility_version.xsd b/xsd/netex_part_5/part5_fm/netex_nm_usageParameterEligibility_version.xsd index b54e715ac..1b7eac87c 100644 --- a/xsd/netex_part_5/part5_fm/netex_nm_usageParameterEligibility_version.xsd +++ b/xsd/netex_part_5/part5_fm/netex_nm_usageParameterEligibility_version.xsd @@ -59,7 +59,7 @@ Rail transport, Roads and Road transport NeTEX: New Modes Eligibility USAGE PARAMETER types. - + A set of USER PARAMETERS characterising access rights to VEHICLE POOLING SERVICE. +v1.2.2 diff --git a/xsd/netex_part_5/part5_fm/netex_nm_usageParameterRental_version.xsd b/xsd/netex_part_5/part5_fm/netex_nm_usageParameterRental_version.xsd index b7f8d072d..75db041eb 100644 --- a/xsd/netex_part_5/part5_fm/netex_nm_usageParameterRental_version.xsd +++ b/xsd/netex_part_5/part5_fm/netex_nm_usageParameterRental_version.xsd @@ -59,7 +59,7 @@ Rail transport, Roads and Road transport NeTEX: RENTAL USAGE PARAMETER types. - + Policy regarding different aspects of RENTAL service penalty charges, for example loss of vehicle. +v1.2.2 @@ -133,7 +133,7 @@ Rail transport, Roads and Road transport - + Parameters relating to paying by RentalOption for a product. +v1.1 @@ -175,7 +175,7 @@ Rail transport, Roads and Road transport - + Parameters relating to paying by AdditionalDriverOption for a product. +v1.1 diff --git a/xsd/netex_part_5/part5_nd/netex_nm_mobilityServiceConstraintZone_support.xsd b/xsd/netex_part_5/part5_nd/netex_nm_mobilityServiceConstraintZone_support.xsd index bbe14180b..3baeaffd3 100644 --- a/xsd/netex_part_5/part5_nd/netex_nm_mobilityServiceConstraintZone_support.xsd +++ b/xsd/netex_part_5/part5_nd/netex_nm_mobilityServiceConstraintZone_support.xsd @@ -185,7 +185,7 @@ Rail transport, Roads and Road transport - + Reference to an POOL OF VEHICLEs. +v1.2.2 diff --git a/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPlace_version.xsd b/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPlace_version.xsd index 87cf60d02..d3da615a7 100644 --- a/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPlace_version.xsd +++ b/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPlace_version.xsd @@ -66,12 +66,12 @@ Rail transport, Roads and Road transport - + - + DUMMY type to workaround SG limitation. @@ -139,7 +139,7 @@ Rail transport, Roads and Road transport - + A place where vehicles/passengers meet to change mode of transportation, for boarding, alighting, pick-up, drop-off, etc. +v1.2.2 @@ -194,7 +194,7 @@ Rail transport, Roads and Road transport - + A dedicated part of the PARKING AREA for vehicle sharing or rental which is composed of one or more VEHICLE SHARING PARKING BAYs. +v1.2.2 @@ -264,7 +264,7 @@ Rail transport, Roads and Road transport - + A dedicated space of a PARKING AREA for either vehicles active in a pooling service or vehicles of a pooling service users where vehicles are left for a longer time. +v1.2.2 @@ -334,7 +334,7 @@ Rail transport, Roads and Road transport - + A spot in the PARKING AREA dedicated to vehicle sharing or rental. +v1.2.2 @@ -403,7 +403,7 @@ Rail transport, Roads and Road transport - + A dedicated space of a PARKING AREA for either vehicles active in a pooling service or vehicles of a pooling service users where vehicles are left for a longer time. +v1.2.2 diff --git a/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPointAssignment_version.xsd b/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPointAssignment_version.xsd index 916c82ab7..ae8651385 100644 --- a/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPointAssignment_version.xsd +++ b/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPointAssignment_version.xsd @@ -88,7 +88,7 @@ Rail transport, Roads and Road transport - + Dummy Type to work round SG restrictions. @@ -115,7 +115,7 @@ Rail transport, Roads and Road transport - + The allocation of a VEHICLE MEETING POINT to a SITE COMPONENT or ADDRESSABLE PLACE (for vehicle pooling or vehicle sharing purposes). +v1.2.2 @@ -170,7 +170,7 @@ Rail transport, Roads and Road transport - + Dynamic allocation of a VEHICLE MEETING ASSIGNMENT. +v1.2.2 diff --git a/xsd/netex_part_5/part5_nd/netex_nm_vehicleParkingAreaInformation_version.xsd b/xsd/netex_part_5/part5_nd/netex_nm_vehicleParkingAreaInformation_version.xsd index 2ed9d074b..e52ef0504 100644 --- a/xsd/netex_part_5/part5_nd/netex_nm_vehicleParkingAreaInformation_version.xsd +++ b/xsd/netex_part_5/part5_nd/netex_nm_vehicleParkingAreaInformation_version.xsd @@ -65,7 +65,7 @@ Rail transport, Roads and Road transport NeTEx NM PARKING BAY STATUS data types - + Dummy type for Parking Log ENTRY. @@ -79,7 +79,7 @@ Rail transport, Roads and Road transport - + Dummy type for Parking Log ENTRY. +v1.2.2 @@ -95,7 +95,7 @@ Rail transport, Roads and Road transport - + Dummy type for Parking Log ENTRY. +v1.2.2 @@ -105,7 +105,7 @@ Rail transport, Roads and Road transport - + A spot in the PARKING AREA dedicated to MONITORED VEHICLE SHARING or rental. +v1.2.2 @@ -243,7 +243,7 @@ Rail transport, Roads and Road transport - + A summary of the status of the rental at a SITE at a given point on time. +v1.2.2 @@ -325,7 +325,7 @@ Rail transport, Roads and Road transport - + A record of the status of the PARKING BAY at a given moment in time. +v1.2.2 diff --git a/xsd/netex_part_5/part5_nd/netex_nm_vehicleServicePlaceAssignment_version.xsd b/xsd/netex_part_5/part5_nd/netex_nm_vehicleServicePlaceAssignment_version.xsd index fb61c75f8..0976287c9 100644 --- a/xsd/netex_part_5/part5_nd/netex_nm_vehicleServicePlaceAssignment_version.xsd +++ b/xsd/netex_part_5/part5_nd/netex_nm_vehicleServicePlaceAssignment_version.xsd @@ -76,7 +76,7 @@ Rail transport, Roads and Road transport - + Dummy Type to work round SG restrfictions. @@ -103,7 +103,7 @@ Rail transport, Roads and Road transport - + The allocation of a place to a MOBILITY SERVICE. +V1.2.2 @@ -154,7 +154,7 @@ Rail transport, Roads and Road transport - + The allocation of a TAXI SERVICE to a TAXI PARKING or a TAXI STAND. +V1.2.2 @@ -216,7 +216,7 @@ Rail transport, Roads and Road transport - + The allocation of a VEHICLE POOLING SERVICE to a VEHICLE POOLING PARKING AREA or a VEHICLE POOLING MEETING PLACE. +V1.2.2 @@ -277,7 +277,7 @@ Rail transport, Roads and Road transport - + The allocation of a VEHICLE SHARING AREA to any vehicle sharing or rental service. +V1.2.2 diff --git a/xsd/netex_part_5/part5_rc/netex_nm_mobilityService_version.xsd b/xsd/netex_part_5/part5_rc/netex_nm_mobilityService_version.xsd index 8fd87abdf..d01496cef 100644 --- a/xsd/netex_part_5/part5_rc/netex_nm_mobilityService_version.xsd +++ b/xsd/netex_part_5/part5_rc/netex_nm_mobilityService_version.xsd @@ -80,17 +80,17 @@ Rail transport, Roads and Road transport - + - + Dummy type to work around SG limitation. - + A named service available over a widespread area, for example car pooling, rental, etc. The service may be accessible at designated SITES it for which it can be considered as a n additional form of immaterial EQUIPMENT. +v1.2.2 @@ -128,7 +128,7 @@ Rail transport, Roads and Road transport - + @@ -145,12 +145,12 @@ Rail transport, Roads and Road transport - + Dummy type to work around SG limitation. - + A transport service offer related to VEHICLEs. +v1.2.2 @@ -214,12 +214,12 @@ Rail transport, Roads and Road transport - + Dummy type to work around SG limitation. - + A transport service that connects users (driver and passenger(s)) for carrying out trips. +v1.2.2 @@ -277,7 +277,7 @@ Rail transport, Roads and Road transport - + A type of VEHICLE POOLING SERVICE where the service may be regulated according to a particular taxi policy. . +v1.2.2 @@ -340,7 +340,7 @@ Rail transport, Roads and Road transport - + A transport service that connects users (driver and passenger(s)) for carrying out trips. +v1.2.2 @@ -402,7 +402,7 @@ Rail transport, Roads and Road transport - + A type of VEHICLE POOLING SERVICE which can only be used by prior arrangement and where the driver has a commercial agreement with the user. +v1.2.2 @@ -464,7 +464,7 @@ Rail transport, Roads and Road transport - + A transport service offer related to VEHICLE SHARING. +v1.2.2 @@ -542,7 +542,7 @@ Rail transport, Roads and Road transport - + A transport service offer related to VEHICLE RENTAL. +v1.2.2 diff --git a/xsd/netex_part_5/part5_rc/netex_nm_onlineService_support.xsd b/xsd/netex_part_5/part5_rc/netex_nm_onlineService_support.xsd index 0806a2a9d..1d59ab466 100644 --- a/xsd/netex_part_5/part5_rc/netex_nm_onlineService_support.xsd +++ b/xsd/netex_part_5/part5_rc/netex_nm_onlineService_support.xsd @@ -74,7 +74,7 @@ Rail transport, Roads and Road transport - + Reference to an ONLINE SERVICE OPERATOR. +v1.2.2 diff --git a/xsd/netex_part_5/part5_rc/netex_nm_onlineService_version.xsd b/xsd/netex_part_5/part5_rc/netex_nm_onlineService_version.xsd index c14a71f16..f5b1a6b6e 100644 --- a/xsd/netex_part_5/part5_rc/netex_nm_onlineService_version.xsd +++ b/xsd/netex_part_5/part5_rc/netex_nm_onlineService_version.xsd @@ -56,7 +56,7 @@ Rail transport, Roads and Road transport ONLINE SERVICE types for NeTEx New Modes - + An organisation that provides online access to an ONLINE SERVICE without operating transportation services of travellers. +v1.2.2 @@ -161,7 +161,7 @@ Rail transport, Roads and Road transport - + Any remotely accessible service providing access to any mode of transportation and/or information related to transportation services. +v1.2.2 diff --git a/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_support.xsd b/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_support.xsd index ea68645b7..f5803d230 100644 --- a/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_support.xsd +++ b/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_support.xsd @@ -103,7 +103,7 @@ Rail transport, Roads and Road transport - + Reference to a GROUP OF SINGLE JOURNEYs. +v1.2.2 diff --git a/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_version.xsd b/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_version.xsd index 2069d85b5..f057a9b55 100644 --- a/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_version.xsd +++ b/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_version.xsd @@ -81,7 +81,7 @@ Rail transport, Roads and Road transport - + The planned movement of a public transport vehicle on a DAY TYPE from the start point to the end point of a JOURNEY PATTERN on a specified ROUTE. +v1.2.2 diff --git a/xsd/netex_service/netex_filter_frame.xsd b/xsd/netex_service/netex_filter_frame.xsd index 784eeb6ea..b20d3f52a 100644 --- a/xsd/netex_service/netex_filter_frame.xsd +++ b/xsd/netex_service/netex_filter_frame.xsd @@ -131,7 +131,7 @@ Roads and road transport - + diff --git a/xsd/netex_service/netex_filter_object.xsd b/xsd/netex_service/netex_filter_object.xsd index 1ce16a141..f3f98a3f2 100644 --- a/xsd/netex_service/netex_filter_object.xsd +++ b/xsd/netex_service/netex_filter_object.xsd @@ -125,7 +125,7 @@ Roads and road transport - + From bf088d3658e5ccda70dfe3784d40aba8ceb9ccf6 Mon Sep 17 00:00:00 2001 From: Stefan de Konink Date: Wed, 9 Jul 2025 15:43:23 +0200 Subject: [PATCH 3/3] Present an overview for matching Dummy elements --- scripts/match_dummy.py | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 scripts/match_dummy.py diff --git a/scripts/match_dummy.py b/scripts/match_dummy.py new file mode 100644 index 000000000..4481785b0 --- /dev/null +++ b/scripts/match_dummy.py @@ -0,0 +1,46 @@ +import os +from lxml import etree +from collections import defaultdict + +XSD_NAMESPACE = "http://www.w3.org/2001/XMLSchema" +NSMAP = {"xsd": XSD_NAMESPACE} + +def find_elements_with_dummy_pair(root_dir): + dummy_elements = defaultdict(list) # map: base_name -> [(filepath, etree_element)] + normal_elements = defaultdict(list) + + for dirpath, _, filenames in os.walk(root_dir): + for filename in filenames: + if not filename.endswith(".xsd"): + continue + filepath = os.path.join(dirpath, filename) + try: + tree = etree.parse(filepath) + except Exception as e: + print(f"Error parsing {filepath}: {e}") + continue + + for elem in tree.xpath("//xsd:element", namespaces=NSMAP): + name = elem.get("name") + if not name: + continue + if name.endswith("_Dummy"): + base = name[:-6] + dummy_elements[base].append((filepath, elem)) + else: + normal_elements[name].append((filepath, elem)) + + # Nu zoeken naar matchende paren + for base in sorted(dummy_elements): + if base in normal_elements: + for dummy_file, _ in dummy_elements[base]: + for normal_file, normal_elem in normal_elements[base]: + if normal_elem.get("abstract") == "true": + print(f"Pair: {base}_Dummy in {dummy_file}") + print(f" {base} in {normal_file}") + print() + +if __name__ == "__main__": + # Vervang dit pad door jouw projectpad + find_elements_with_dummy_pair("./xsd") +