diff --git a/scripts/rename.py b/scripts/rename.py new file mode 100644 index 000000000..c6aedc38b --- /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 + "Abstract" + # 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() diff --git a/xsd/NX.xsd b/xsd/NX.xsd index 43f6fedbe..6ec44fd93 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..91b55c23e 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..ca9822471 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..aafb6668c 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..a25caec69 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..9bb63df80 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..2ff39703a 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..e45a87d98 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..4cb431995 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..72db0478f 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..491f89804 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..e07a50f4b 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..e8cef9225 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..764a9ef7d 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..99fea61b8 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..9320fc9ca 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..c8e9a98ca 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..b0aecbe2a 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..fd7733475 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..15f4ff12b 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..902c79d4c 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..56821ade8 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..789163fd6 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..de256c225 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..b9e3d54b2 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..7683be612 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..e09768269 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..0eb94cf46 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..fa02dd246 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..ec8a592f9 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..5a067bbd3 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..a9b0e1c37 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..61c5c2cf9 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_trainElementType_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_version.xsd index 6d494bd8c..61c4c9624 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_version.xsd @@ -84,7 +84,7 @@ Rail transport, Roads and Road transport - + A TRAIN that is able to move under its own power. +v2.0 @@ -140,7 +140,7 @@ Rail transport, Roads and Road transport - + A TRAIN that is able to move under its own power. +v2.0 diff --git a/xsd/netex_framework/netex_reusableComponents/netex_trainElement_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_trainElement_version.xsd index 436233cb3..1acbbd18c 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_trainElement_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_trainElement_version.xsd @@ -118,7 +118,7 @@ Rail transport, Roads and Road transport - + @@ -168,12 +168,12 @@ Rail transport, Roads and Road transport - + Dummy type to work around SG limitations - + A vehicle composed of TRAIN ELEMENTs in a certain order, i.e. of wagons assembled together and propelled by a locomotive or one of the wagons. @@ -247,7 +247,7 @@ Rail transport, Roads and Road transport - + A vehicle composed of COMPOUND TRAIN ELEMENTs in a certain order, i.e. of wagons assembled together and propelled by a locomotive or one of the wagons. @@ -297,7 +297,7 @@ Rail transport, Roads and Road transport - + Dummy Tpe for Train Element substitution @@ -618,8 +618,8 @@ Rail transport, Roads and Road transport Reference to a TRAIN. - - + + diff --git a/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd index 32133c403..2fa9f76d3 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..ee9f8380a 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_framework/netex_reusableComponents/netex_vehicleType_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_version.xsd index 24f4b8090..621609a60 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_version.xsd @@ -103,12 +103,12 @@ Rail transport, Roads and Road transport - + Dummy type to work around SG limitations - + A classification of any type of VEHICLE according to its properties. @@ -232,7 +232,7 @@ Rail transport, Roads and Road transport - + A classification of public transport vehicles according to the vehicle scheduling requirements in mode and capacity (e.g. standard bus, double-deck, ...). @@ -421,7 +421,7 @@ Rail transport, Roads and Road transport - + A classification of personal use vehicles according to their properties, +v1.2.2 diff --git a/xsd/netex_framework/netex_reusableComponents/netex_vehicle_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_vehicle_version.xsd index 76597c821..d0d67fb08 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_vehicle_version.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_vehicle_version.xsd @@ -240,7 +240,7 @@ Rail transport, Roads and Road transport - + A specific instance of an elementary unit of rolling stock (e.g., railcar, wagon, locomotive). Its properties are given by a TRAIN ELEMENT TYPE. @@ -253,7 +253,7 @@ Rail transport, Roads and Road transport - + An area within a Site. May be connected to Quays by PATH LINKs. @@ -323,7 +323,7 @@ Rail transport, Roads and Road transport - + An unpowered item of rolling stock such as a specific passenger carriage, luggage van, passenger vehicle carrier wagon or freight wagon. +v2.0 @@ -377,7 +377,7 @@ Rail transport, Roads and Road transport - + A powered item of rolling stock, such as a specific locomotive or powered railcar. +v2.0 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..7fe14fc6e 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..62c4dcd2a 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 bc4cffe04..b73ce57f2 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 @@ -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..c41612e79 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..d04761d14 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 5b611a839..e61e4ece9 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,22 +944,22 @@ 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 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..f4db33ada 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..88c22d074 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 1e7c83a59..54f283900 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd @@ -90,7 +90,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 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..c7441cd27 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..d2e76e677 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..b2e0aeab2 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..d70f0580b 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..21e0a00fe 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..6e29f0172 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..c84649a54 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..8b1339d0c 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..4c666bdd0 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..5d3a358a4 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..592543467 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..798a2461f 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..5eaeaa0a8 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..73375ee41 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..f27bda948 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..c23f9cf36 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..b972eaab7 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..ce667839d 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..acc6a6f0d 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..ce5a071dd 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..5a1f17610 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..15225f05b 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..df7e63fa1 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 48150fca2..08c0fc179 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..cdd03ca28 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 574234f65..9710b6a23 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_interchange_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_interchange_version.xsd @@ -321,7 +321,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 VEHICLE JOURNEYs serving those points may be in connection. @@ -382,7 +382,7 @@ Rail transport, Roads and Road transport - + Dummy supertype for INTERCHANGe. @@ -563,7 +563,7 @@ Default is false. - + The scheduled possibility for transfer of passengers between two SERVICE JOURNEYs at the same or different STOP POINTs. @@ -621,7 +621,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..027ddfb19 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..31ff50eec 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..73e83a960 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..ec49dfe22 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..3bed61ecd 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 e89c1220c..4d74306bc 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_version.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_version.xsd @@ -105,12 +105,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. @@ -302,7 +302,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..cfc9b5b56 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..d51583553 100644 --- a/xsd/netex_part_3/part3_fares/netex_calculationParameters_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_calculationParameters_version.xsd @@ -74,7 +74,7 @@ Rail transport, Roads and Road transport - + Parameters governing the calculation of fares. @@ -237,7 +237,7 @@ Rail transport, Roads and Road transport - + Parameters describing how the results of calculations are to be rounded to the nearest quantum. @@ -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. @@ -422,7 +422,7 @@ Rail transport, Roads and Road transport - + Days before (negative) or after (positive) the start of the month that a product with a calendar period driven activation becomes valid. @@ -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. @@ -854,7 +854,7 @@ Rail transport, Roads and Road transport - + A web service used to provide prices dynamically at time of booking or purchase. @@ -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..c173772e2 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..723d3a386 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..2478d1b47 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..378501b3d 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..21a01a14d 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..160ee231b 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..e4b2817be 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..7a0f0be9d 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_fareStructure_version.xsd b/xsd/netex_part_3/part3_fares/netex_fareStructure_version.xsd index 292f74e6a..750f85a0a 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareStructure_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareStructure_version.xsd @@ -65,7 +65,7 @@ Rail transport, Roads and Road transport NeTEX: FARE STRUCTURE Common types. - + A FARE STRUCTURE ELEMENT as a part of a VALIDABLE ELEMENT, including its possible order in the sequence of FARE STRUCTURE ELEMENTs forming that VALIDABLE ELEMENT, and its possible quantitative limitation. 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..b9e4b753b 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..4fb7e787b 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..8881a91f0 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..e9e65e5b7 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..181390164 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..45a289e73 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..90ae5c6c4 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..20b6aabb5 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..51f7cbde8 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..1bb03aca1 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..aed297f39 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..f38e4aa3d 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..4447e5391 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..b12ee83c9 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..f95f14f1e 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..ba89a07ce 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..af7abeebb 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..594865c9a 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..dadcaf4a0 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..556f7bcc4 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..7532c304a 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..f188e82d9 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..787af6147 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_fareDebit_version.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_fareDebit_version.xsd index e19579dd5..6c8dcaabb 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_fareDebit_version.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_fareDebit_version.xsd @@ -80,12 +80,12 @@ Rail transport, Roads and Road transport - + Dummy type for FARE DEBIT - + A LOG ENTRY recording data about a debiting action relating to a fare or use of a fare. @@ -138,7 +138,7 @@ Rail transport, Roads and Road transport - + A LOG ENTRY recording data about a debiting action for a booking fee. @@ -180,7 +180,7 @@ Rail transport, Roads and Road transport - + A LOG ENTRY recording data about a debiting action for post-payment for a specific trip. @@ -222,7 +222,7 @@ Rail transport, Roads and Road transport - + A LOG ENTRY recording data about a debiting action for a payment type other than a FARE PRODUCT SALE DEBIT, TRIP DEBIT, OFFENCE DEBIT or BOOKING DEBIT. @@ -264,7 +264,7 @@ Rail transport, Roads and Road transport - + A LOG ENTRY recording data about a debiting action made to purchase a FARE PRODUCT. @@ -306,7 +306,7 @@ Rail transport, Roads and Road transport - + A LOG ENTRY recording data about a debiting action for a fine for an OFFENCE or penalty fare. 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..bfe843575 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..9b3c082f6 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..54a01df3e 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..1679625e6 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_salesContract_version.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_salesContract_version.xsd @@ -419,7 +419,7 @@ Rail transport, Roads and Road transport - + Type for a list of FARE CONTRACT ENTRYs. @@ -428,21 +428,21 @@ 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. - - + TODO: Validate that abstract="true" is correct! + @@ -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..ef754cc84 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..a9db39078 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..61316f63c 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..f2bab2ce7 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..07744d264 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..e3ce0c39c 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..fb4394766 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,20 +66,19 @@ Rail transport, Roads and Road transport - + - + DUMMY type to workaround SG limitation. - A place where vehicles/passengers meet to change mode of transportation, for boarding, alighting, pick-up, drop-off, etc. +v1.2.2 - + A place where vehicles/passengers meet to change mode of transportation, for boarding, alighting, pick-up, drop-off, etc. +v1.2.2 @@ -139,7 +138,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 +193,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 +263,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 +333,7 @@ Rail transport, Roads and Road transport - + A spot in the PARKING AREA dedicated to vehicle sharing or rental. +v1.2.2 @@ -403,7 +402,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..049fbf0c6 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..9371f0793 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..fe89e5a36 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..4ed309754 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..bd7297eb8 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..f4a39095e 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_singleJourneyPath_version.xsd b/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyPath_version.xsd index 21b3f14a1..86d7a8521 100644 --- a/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyPath_version.xsd +++ b/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyPath_version.xsd @@ -73,7 +73,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 @@ -141,7 +141,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_part_5/part5_sj/netex_nm_singleJourneyService_support.xsd b/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_support.xsd index ea68645b7..93c47af5a 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 8e41963ef..85cd32fa8 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 @@ -80,7 +80,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..2243fd265 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..d210b1114 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 - +