diff --git a/scripts/match_dummy.py b/scripts/match_dummy.py
new file mode 100644
index 000000000..4481785b0
--- /dev/null
+++ b/scripts/match_dummy.py
@@ -0,0 +1,46 @@
+import os
+from lxml import etree
+from collections import defaultdict
+
+XSD_NAMESPACE = "http://www.w3.org/2001/XMLSchema"
+NSMAP = {"xsd": XSD_NAMESPACE}
+
+def find_elements_with_dummy_pair(root_dir):
+ dummy_elements = defaultdict(list) # map: base_name -> [(filepath, etree_element)]
+ normal_elements = defaultdict(list)
+
+ for dirpath, _, filenames in os.walk(root_dir):
+ for filename in filenames:
+ if not filename.endswith(".xsd"):
+ continue
+ filepath = os.path.join(dirpath, filename)
+ try:
+ tree = etree.parse(filepath)
+ except Exception as e:
+ print(f"Error parsing {filepath}: {e}")
+ continue
+
+ for elem in tree.xpath("//xsd:element", namespaces=NSMAP):
+ name = elem.get("name")
+ if not name:
+ continue
+ if name.endswith("_Dummy"):
+ base = name[:-6]
+ dummy_elements[base].append((filepath, elem))
+ else:
+ normal_elements[name].append((filepath, elem))
+
+ # Nu zoeken naar matchende paren
+ for base in sorted(dummy_elements):
+ if base in normal_elements:
+ for dummy_file, _ in dummy_elements[base]:
+ for normal_file, normal_elem in normal_elements[base]:
+ if normal_elem.get("abstract") == "true":
+ print(f"Pair: {base}_Dummy in {dummy_file}")
+ print(f" {base} in {normal_file}")
+ print()
+
+if __name__ == "__main__":
+ # Vervang dit pad door jouw projectpad
+ find_elements_with_dummy_pair("./xsd")
+
diff --git a/scripts/rename.py b/scripts/rename.py
new file mode 100644
index 000000000..6fb17d3d0
--- /dev/null
+++ b/scripts/rename.py
@@ -0,0 +1,74 @@
+import glob
+from lxml import etree
+
+XSD_NS = "http://www.w3.org/2001/XMLSchema"
+NSMAP = {"xs": XSD_NS}
+
+# Attributen met één enkele type-ref
+SINGLE_REF_ATTRS = {'type', 'base', 'ref', 'substitutionGroup', 'itemType'}
+
+# Attributen met meerdere type-refs (spatiegescheiden)
+MULTI_REF_ATTRS = {'memberTypes'}
+
+def collect_renames(xsd_files):
+ rename_map = {}
+ for file in xsd_files:
+ tree = etree.parse(file)
+ for tag in ['xs:element', 'xs:complexType', 'xs:simpleType']:
+ for elem in tree.xpath(f'//{tag}', namespaces=NSMAP):
+ name = elem.get("name")
+ if name and name.endswith("_"):
+ rename_map[name] = name + "Dummy"
+ # if name and name.endswith("_DummyTypeAbstract"):
+ # rename_map[name] = name.replace('_DummyTypeAbstract', "_Abstract")
+ return rename_map
+
+def apply_renames(xsd_files, rename_map):
+ for file in xsd_files:
+ tree = etree.parse(file)
+ root = tree.getroot()
+ changed = False
+
+ for elem in root.iter():
+ # Pas name aan
+ if "name" in elem.attrib:
+ old = elem.attrib["name"]
+ if old in rename_map:
+ elem.attrib["name"] = rename_map[old]
+ changed = True
+
+ # Pas enkelvoudige verwijzingen aan
+ for attr in SINGLE_REF_ATTRS:
+ if attr in elem.attrib:
+ value = elem.attrib[attr]
+ if ":" not in value and value in rename_map:
+ elem.attrib[attr] = rename_map[value]
+ changed = True
+
+ # Pas meervoudige verwijzingen aan (zoals bij xs:union)
+ for attr in MULTI_REF_ATTRS:
+ if attr in elem.attrib:
+ values = elem.attrib[attr].split()
+ new_values = [
+ rename_map.get(v, v) if ':' not in v else v
+ for v in values
+ ]
+ if new_values != values:
+ elem.attrib[attr] = ' '.join(new_values)
+ changed = True
+
+ if changed:
+ print(f"Updated {file}")
+ tree.write(file, encoding="utf-8", xml_declaration=True, pretty_print=True)
+
+def main():
+ xsd_files = glob.glob("xsd/**/*.xsd", recursive=True)
+ rename_map = collect_renames(xsd_files)
+ if not rename_map:
+ print("Geen hernoemingen nodig.")
+ return
+ print("Te hernoemen:", rename_map)
+ apply_renames(xsd_files, rename_map)
+
+if __name__ == "__main__":
+ main()
diff --git a/xsd/NX.xsd b/xsd/NX.xsd
index 43f6fedbe..c183ef457 100644
--- a/xsd/NX.xsd
+++ b/xsd/NX.xsd
@@ -131,8 +131,8 @@
-
-
+
+
@@ -147,7 +147,7 @@
-
+
@@ -155,7 +155,7 @@
-
+
@@ -280,7 +280,7 @@
-
+
@@ -307,7 +307,7 @@
-
+
@@ -325,7 +325,7 @@
-
+
@@ -381,22 +381,22 @@
-
+
-
-
+
+
-
+
@@ -469,7 +469,7 @@
-
+
@@ -486,7 +486,7 @@
-
+
@@ -538,7 +538,7 @@
JOURNEY PATTERN.
-
+
@@ -560,7 +560,7 @@
-
+
@@ -573,7 +573,7 @@
-
+
diff --git a/xsd/ifopt.xsd b/xsd/ifopt.xsd
index 8d019c624..3e21e9814 100644
--- a/xsd/ifopt.xsd
+++ b/xsd/ifopt.xsd
@@ -11,7 +11,7 @@
-
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd
index 531b3114c..f1601b92f 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_assignment_version.xsd
@@ -58,12 +58,12 @@ Rail transport, Roads and Road transport
NetEX: GENERAL ASSIGNMENT types for NeTEx Network Exchange.
-
+
Dummy Abstract Assignment. An Assignment assigns a property to an other element. It has a name and an order.
-
+
Type for ASSIGNMENT.
@@ -97,7 +97,7 @@ Rail transport, Roads and Road transport
-
+
A set of properties to be applied to an another element. It has a name and an order.
@@ -125,7 +125,7 @@ Rail transport, Roads and Road transport
Type for ASSIGNMENT.
-
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd
index 618851407..a497b2ff0 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd
@@ -58,7 +58,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a GROUP OF ENTITies.
@@ -84,7 +84,7 @@ Rail transport, Roads and Road transport
-
+
Extending Type for a reference to a GROUP OF ENTITies.
@@ -103,7 +103,7 @@ Rail transport, Roads and Road transport
Extending Type for a reference to a GROUP OF ENTITies.
-
+
Identifier of referenced entity.
@@ -159,7 +159,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a GENERAL GROUP OF ENTITies.
diff --git a/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd
index ab6af53a0..eb8bc88c6 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd
@@ -74,7 +74,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a LAYER.
diff --git a/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd
index badb57b5b..ff101b275 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd
@@ -57,7 +57,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a LOG.
diff --git a/xsd/netex_framework/netex_genericFramework/netex_organisation_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_organisation_version.xsd
index 7f6e6cbd5..826abe0b4 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_organisation_version.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_organisation_version.xsd
@@ -80,7 +80,7 @@ Rail transport, Roads and Road transport
-
+
@@ -98,12 +98,12 @@ Rail transport, Roads and Road transport
-
+
Dummy supertype for ORGANISATION.
-
+
An legally incorporated body associated with any aspect of the transport system.
@@ -335,17 +335,17 @@ Rail transport, Roads and Road transport
-
+
-
+
Dummy supertype for ORGANISATION PART.
-
+
A named subdivision of an ORGANISATION.
@@ -420,7 +420,7 @@ Rail transport, Roads and Road transport
Coordinates of ORGANISATION PART.
-
+
@@ -444,7 +444,7 @@ Rail transport, Roads and Road transport
-
+
Department of an ORGANISATION.
@@ -509,7 +509,7 @@ Rail transport, Roads and Road transport
-
+
OrganisationalUnit of an ORGANISATION.
@@ -618,7 +618,7 @@ Rail transport, Roads and Road transport
Description of the nature pf the Relationship.
-
+
Role of the related Organbisation
@@ -636,17 +636,17 @@ Rail transport, Roads and Road transport
-
+
-
+
Dummy supertype for ADMINISTRATIVE ZONE.
-
+
A ZONE relating to the management responsibilities of an ORGANISATION. For example to allocate bus stop identifiers for a region.
@@ -700,7 +700,7 @@ Rail transport, Roads and Road transport
Public Code assosociated with ADMINISTRATIVE ZONE.
-
+
RESPONSIBILITY SETs allocated to ADMINISTRATIVE ZONE.
@@ -1006,7 +1006,7 @@ Rail transport, Roads and Road transport
-
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd
index 069b68dbf..0904e9865 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd
@@ -129,7 +129,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a PATH JUNCTION.
diff --git a/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd
index 9aa79fd81..bab834982 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd
@@ -78,12 +78,12 @@ Rail transport, Roads and Road transport
-
+
Reference to a PLACE.
-
+
Reference to a PLACE.
@@ -114,7 +114,7 @@ Rail transport, Roads and Road transport
-
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd
index f93ae8dd2..f3be7c890 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd
@@ -183,7 +183,7 @@ Rail transport, Roads and Road transport
Reference to a POINT ON LINK.
-
+
Type for a reference to a POINT ON LINK.
@@ -202,7 +202,7 @@ Rail transport, Roads and Road transport
Type for a reference to a POINT ON LINK.
-
+
Identifier of a LINK.
@@ -304,7 +304,7 @@ Rail transport, Roads and Road transport
-
+
@@ -314,7 +314,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a GROUP OF POINTs.
diff --git a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_version.xsd
index 12236d163..d689bc469 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_version.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_version.xsd
@@ -176,7 +176,7 @@ Rail transport, Roads and Road transport
-
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd
index d92e12acc..d3bb654e9 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd
@@ -59,7 +59,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a SECTION.
@@ -78,7 +78,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a parent SECTION. May be omitted if given by context..
diff --git a/xsd/netex_framework/netex_genericFramework/netex_section_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_section_version.xsd
index 2e1dc9fed..b6cce1bfd 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_section_version.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_section_version.xsd
@@ -81,12 +81,12 @@ Rail transport, Roads and Road transport
-
+
Dummy Supertype for SECTION +v1.1.
-
+
A shared sequence of LINKS or POINTs. +v1.1.
@@ -131,7 +131,7 @@ Rail transport, Roads and Road transport
-
+
A resuable sequence of LINKS or POINTs. +v1.1.
@@ -219,17 +219,17 @@ Rail transport, Roads and Road transport
-
+
-
+
DUmmy Supertype for Point On SECTION. +v1.1.
-
+
POINT on a SECTION. +v1.1.
@@ -449,7 +449,7 @@ Rail transport, Roads and Road transport
Reference to a LINK SEQUENCE.
-
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd
index 14913e006..bfb852264 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd
@@ -60,7 +60,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a ZONE.
@@ -83,7 +83,7 @@ Rail transport, Roads and Road transport
-
+
Dummy type Reference to a TARIFF ZONE.
@@ -94,7 +94,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a TARIFF ZONE.
@@ -119,7 +119,7 @@ Rail transport, Roads and Road transport
-
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd
index 0aca4de07..b164f6a7b 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd
@@ -87,7 +87,7 @@ Rail transport, Roads and Road transport
-
+
@@ -183,12 +183,12 @@ Rail transport, Roads and Road transport
-
+
Dummy TARIFF ZONE to workaround xML spy Substitution Group limitations
-
+
A ZONE used to define a zonal fare structure in a zone-counting or zone-matrix system.
@@ -309,7 +309,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a GROUP OF TARIFF ZONEs.
diff --git a/xsd/netex_framework/netex_responsibility/netex_responsibility_support.xsd b/xsd/netex_framework/netex_responsibility/netex_responsibility_support.xsd
index 53ff2d4e6..cc60433b1 100644
--- a/xsd/netex_framework/netex_responsibility/netex_responsibility_support.xsd
+++ b/xsd/netex_framework/netex_responsibility/netex_responsibility_support.xsd
@@ -202,7 +202,7 @@ Rail transport, Roads and Road transport
-
+
@@ -213,12 +213,12 @@ Rail transport, Roads and Road transport
-
+
Reference to an ORGANISATION.
-
+
DEPRECATED reference to any ORGANISATION meeting the substitutiongroup. -v2.0
@@ -256,7 +256,7 @@ Rail transport, Roads and Road transport
-
+
diff --git a/xsd/netex_framework/netex_responsibility/netex_validityCondition_version.xsd b/xsd/netex_framework/netex_responsibility/netex_validityCondition_version.xsd
index 942efa30a..b13750ce0 100644
--- a/xsd/netex_framework/netex_responsibility/netex_validityCondition_version.xsd
+++ b/xsd/netex_framework/netex_responsibility/netex_validityCondition_version.xsd
@@ -68,19 +68,19 @@ Rail transport, Roads and Road transport
-
+
-
+
Condition used in order to characterise a given VERSION of a VERSION FRAME. A VALIDITY CONDITION consists of a parameter (e.g. date, triggering event, etc) and its type of application (e.g. for, from, until, etc.).
-
+
Condition used in order to characterise a given VERSION of a VERSION FRAME. A VALIDITY CONDITION consists of a parameter (e.g. date, triggering event, etc) and its type of application (e.g. for, from, until, etc.).
@@ -173,7 +173,7 @@ Rail transport, Roads and Road transport
-
+
External event defining a VALIDITY CONDITION. E.g. exceptional flow of a river, bad weather, Road closure for works.
@@ -261,7 +261,7 @@ Rail transport, Roads and Road transport
-
+
A user defined VALIDITY CONDITION used by a rule for selecting versions. E.g. river level > 1,5 m and bad weather.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_address_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_address_support.xsd
index 6953c4333..450075833 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_address_support.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_address_support.xsd
@@ -65,7 +65,7 @@ Rail transport, Roads and Road transport
-
+
Reference to an ADDRESS.
@@ -91,7 +91,7 @@ Rail transport, Roads and Road transport
-
+
Reference to an ADDRESSED PLACE.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_availabilityCondition_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_availabilityCondition_version.xsd
index 2beb55307..66199ff1e 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_availabilityCondition_version.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_availabilityCondition_version.xsd
@@ -86,7 +86,7 @@ Rail transport, Roads and Road transport
-
+
VALIDITY CONDITION stated in terms of DAY TYPES and PROPERTIES OF DAYs.
@@ -185,7 +185,7 @@ Rail transport, Roads and Road transport
-
+
OPTIMISATION: Sversion of an AVAILABILITY CONDITION Comprises a simple period and DAY TYPE.
@@ -285,7 +285,7 @@ Rail transport, Roads and Road transport
-
+
Simple version of an AVAILABILITY CONDITION used in order to characterise a given VERSION of a VERSION FRAME. Comprises a simple period and DAY TYPE.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd
index 88f511291..48f3ace80 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd
@@ -139,7 +139,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a GROUP OF TIMEBANDs.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_dayType_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_dayType_version.xsd
index e9ed16134..dd72d1728 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_dayType_version.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_dayType_version.xsd
@@ -69,7 +69,7 @@ Rail transport, Roads and Road transport
-
+
@@ -107,7 +107,7 @@ Rail transport, Roads and Road transport
-
+
A type of day characterized by one or more properties which affect public transport operation. For example: weekday in school holidays.
@@ -116,12 +116,12 @@ Rail transport, Roads and Road transport
-
+
Dummy Supertype for DAY TYPE.
-
+
A type of day characterized by one or more properties which affect public transport operation. For example: weekday in school holidays.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_version.xsd
index 459492d37..e2069f96a 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_version.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_version.xsd
@@ -311,12 +311,12 @@
-
+
-
+
Dummy type to work around SG limitations
@@ -454,7 +454,7 @@
-
+
A specialisation of DECK SPACE defining an area within a VEHICLE (i.e. bus, boat, coach, car) or TRAIN ELEMENT for use by passengers. +v2.0
@@ -561,7 +561,7 @@
-
+
A specialisation of DECK SPACE defining an area within a VEHICLE (i.e. bus, boat, coach, car) or TRAIN ELEMENT for restricted use, such as a crew area. +v2.0
@@ -624,7 +624,7 @@
-
+
Dummy type to work around SG limitations
@@ -637,7 +637,7 @@
-
+
@@ -769,7 +769,7 @@
-
+
A normal entrance for passengers to or within a DECK. +v2.0
@@ -832,7 +832,7 @@
-
+
A normal entrance for passengers to or within a DECK. +v2.0
@@ -906,7 +906,7 @@
-
+
An entrance to or within a DECK for use for other purposes than normal passenger access. E.g. crew, emergency exit, etc. +v2.0
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_equipment_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_equipment_support.xsd
index 31061d66d..83a71ea7e 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_equipment_support.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_equipment_support.xsd
@@ -139,7 +139,7 @@ Rail transport, Roads and Road transport
-
+
Reference to an EQUIPMENT POSITION.
@@ -165,7 +165,7 @@ Rail transport, Roads and Road transport
-
+
Reference to an EQUIPMENT PLACE.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_modeOfOperation_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_modeOfOperation_version.xsd
index 61827123a..4f3f7e278 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_modeOfOperation_version.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_modeOfOperation_version.xsd
@@ -61,17 +61,17 @@ Rail transport, Roads and Road transport
-
+
-
+
Dummy type to work around SG limitations.
-
+
The use of any kind of vehicle to perform a trip using any mode of operation, this can be a CONVENTIONAL, ALTERNATIVE or a PERSONAL MODE OF OPERATION. +v1.2.2
@@ -128,12 +128,12 @@ Rail transport, Roads and Road transport
-
+
Dummy type to work around SG limitations.
-
+
Legacy mode of operation which is provided as a scheduled and/or flexible publicly advertised transport offer. +v1.2.2
@@ -173,7 +173,7 @@ Rail transport, Roads and Road transport
-
+
The operation of a transportation using any kind of vehicle with a predefined time table. +v1.2.2
@@ -227,7 +227,7 @@ Rail transport, Roads and Road transport
-
+
Passenger transport operation linked to a fixed network/schedule but offering flexibility, in order for instance, to optimise the service or to satisfy passenger demand. +v1.2.2
@@ -262,12 +262,12 @@ Rail transport, Roads and Road transport
-
+
Dummy type to work around SG limitations.
-
+
Any publicly advertised mode of operation different from the CONVENTIONAL MODE OF OPERATION, for example: VEHICLE SHARING, VEHICLE RENTAL, VEHICLE POOLING. +v1.2.2
@@ -307,7 +307,7 @@ Rail transport, Roads and Road transport
-
+
An ALTERNATIVE MODE OF OPERATION of a vehicle, part of a FLEET (in general privately owned), available for use for a certain period of time and fee, with the constraint to bring it back at specified agencies. +v1.2.2
@@ -361,7 +361,7 @@ Rail transport, Roads and Road transport
-
+
Short term VEHICLE RENTAL where the vehicle can be taken from and parked at different places in the urban area, possibly without the constraint to bring back the vehicle to a specific location. +v1.2.2
@@ -422,7 +422,7 @@ Rail transport, Roads and Road transport
-
+
An ALTERNATIVE MODE OF OPERATION of a privately-owned vehicle consisting in sharing the vehicle for a trip between the driver who is at the same time performing a trip and at least another traveller. +v1.2.2
@@ -482,7 +482,7 @@ Rail transport, Roads and Road transport
-
+
A non-advertised mode of operation of vehicles by persons using their own vehicle. +v1.2.2
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_support.xsd
index 4e649cae4..9861e3843 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_support.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_support.xsd
@@ -75,7 +75,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a FLEET. +v1.2.2
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd
index c31f56ac7..46e3c30ad 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_noticeAssignment_version.xsd
@@ -67,7 +67,7 @@ Rail transport, Roads and Road transport
-
+
@@ -97,18 +97,18 @@ Rail transport, Roads and Road transport
-
+
-
+
Dummy abstract NOTICE ASSIGNMENT.
-
+
The assignment of a NOTICE showing an exception in a JOURNEY PATTERN, a COMMON SECTION, or a VEHICLE JOURNEY, possibly specifying at which POINT IN JOURNEY PATTERN the validity of the NOTICE starts and ends respectively.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_support.xsd
index caad1e02d..55b3467a9 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_support.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_support.xsd
@@ -58,7 +58,7 @@ Rail transport, Roads and Road transport
-
+
Reference to an OTHER ORGANISATION.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_version.xsd
index 8f401ad25..6048fcd70 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_version.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_version.xsd
@@ -55,7 +55,7 @@ Rail transport, Roads and Road transport
NetEX:OTHER ORGANISATION types for NeTEx Network Exchange.
-
+
Generic ORGANISATION being neither an AUTHORITY, neither a public transport OPERATOR (TRAVEL AGENT, MANAGEMENT AGENT, etc.).
@@ -90,7 +90,7 @@ Rail transport, Roads and Road transport
-
+
A travel agent who can retail travel products.
@@ -133,7 +133,7 @@ Rail transport, Roads and Road transport
-
+
ORGANISATION that manages data or a SITE or FACILITY.
@@ -176,7 +176,7 @@ Rail transport, Roads and Road transport
-
+
Any type of GENERAL ORGANISATION.
@@ -215,7 +215,7 @@ Rail transport, Roads and Road transport
-
+
ORGANISATION for which Service is provided, e.g. school college.
@@ -274,7 +274,7 @@ Rail transport, Roads and Road transport
-
+
DAY TYPE defined as being available on days when ORGANISATION is open and requires service.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd
index 5d8f08cf8..0f5a841dc 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_securityList_version.xsd
@@ -169,7 +169,7 @@ Rail transport, Roads and Road transport
-
+
Items in SECURITY LIST.
@@ -185,17 +185,17 @@ Rail transport, Roads and Road transport
-
+
-
+
DUMMY type for SECIRITY LISTING.
-
+
The presence of an identified Entity on a SECURITY LIST.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_version.xsd
index 278131b98..ad26c5500 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_version.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_version.xsd
@@ -60,7 +60,7 @@
SENSOR EQUIPMENT types for NeTEx.
-
+
Dummy type for +V2.0
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_serviceCalendar_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_serviceCalendar_version.xsd
index c28a0800e..66797bba0 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_serviceCalendar_version.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_serviceCalendar_version.xsd
@@ -385,12 +385,12 @@ Rail transport, Roads and Road transport
-
+
Dummy Operating Period
-
+
A continuous interval of time between two OPERATING DAYs which will be used to define validities.
@@ -482,7 +482,7 @@ Rail transport, Roads and Road transport
-
+
An OPERATING PERIOD coded in UIC style as a bit string between two dates.
@@ -555,7 +555,7 @@ Rail transport, Roads and Road transport
-
+
Associates a DAY TYPE with an OPERATING DAY within a specific Calendar. A specification of a particular DAY TYPE which will be valid during a TIME BAND on an OPERATING DAY.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_version.xsd
index e24ef415e..826346222 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_version.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_version.xsd
@@ -56,7 +56,7 @@
SPOT EQUIPMENT types for NeTEx.
-
+
An abstract EQUIPMENT in a LOCATABLE SPOT providing a onboard seat, bed or other amenity. +V2.0
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_topographicPlace_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_topographicPlace_support.xsd
index e13698a66..aec080bf0 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_topographicPlace_support.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_topographicPlace_support.xsd
@@ -152,7 +152,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a TOPOGRAPHIC PLACE.
@@ -195,7 +195,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a GROUP OF PLACEs.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd
index 32133c403..139b19b23 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd
@@ -92,7 +92,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a TRANSPORT ORGANISATION.
@@ -250,7 +250,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a GROUP OF OPERATORs.
diff --git a/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_version.xsd b/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_version.xsd
index b50c3269c..a6593a6ed 100644
--- a/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_version.xsd
+++ b/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_version.xsd
@@ -163,13 +163,13 @@ Rail transport, Roads and Road transport
-
+
A company providing public transport services.
-
+
A company providing transport services.
@@ -286,7 +286,7 @@ Rail transport, Roads and Road transport
-
+
A company providing public transport services.
@@ -331,7 +331,7 @@ Rail transport, Roads and Road transport
-
+
The ORGANISATION under which the responsibility of organising the transport service in a certain area is placed.
@@ -519,7 +519,7 @@ Rail transport, Roads and Road transport
-
+
A specific DEPARTMENT which administers certain LINEs.
@@ -614,7 +614,7 @@ Rail transport, Roads and Road transport
-
+
An ORGANISATION PART for an operational team who are responsible for issuing commands to control the services.
@@ -675,7 +675,7 @@ Rail transport, Roads and Road transport
-
+
A ZONE relating to the management responsibilities of an ORGANISATION. For example to allocate bus stop identifiers for a region.
diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_version.xsd
index 9cd8066f6..6b03fb116 100644
--- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_version.xsd
+++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_version.xsd
@@ -143,7 +143,7 @@ Rail transport, Roads and Road transport
-
+
Characteristics of a SITE COMPONENT representing a process, such as check-in, security
screening, ticket control or immigration, that may potentially incur a time penalty that should be allowed for when journey planning. Used to mark PATH LINKs to determine transit routes through interchanges.
@@ -277,7 +277,7 @@ screening, ticket control or immigration, that may potentially incur a time pena
-
+
Time penalty associated with a CHECK CONSTRAINT.
@@ -367,7 +367,7 @@ screening, ticket control or immigration, that may potentially incur a time pena
-
+
Throughput of a CHECK CONSTRAINT. the number of passengers who can pass through it.
diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_flexibleStopPlace_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_flexibleStopPlace_support.xsd
index 873710855..8f67666ef 100644
--- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_flexibleStopPlace_support.xsd
+++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_flexibleStopPlace_support.xsd
@@ -63,7 +63,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a FLEXIBLE STOP PLACE.
@@ -101,7 +101,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a FLEXIBLE QUAY.
diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_parking_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_parking_version.xsd
index ac4b9652f..495730af2 100644
--- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_parking_version.xsd
+++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_parking_version.xsd
@@ -83,7 +83,7 @@ Rail transport, Roads and Road transport
-
+
A designated path between two PLACEs. May include an Ordered sequence of references to PATH LINKS.
@@ -93,7 +93,7 @@ Rail transport, Roads and Road transport
-
+
A named place where Parking may be accessed. May be a building complex (e.g. a station) or an on-street location.
@@ -867,7 +867,7 @@ Rail transport, Roads and Road transport
-
+
An area within a Site. May be connected to Quays by PATH LINKs.
@@ -876,7 +876,7 @@ Rail transport, Roads and Road transport
-
+
Area within a PARKING.
@@ -975,7 +975,7 @@ Rail transport, Roads and Road transport
-
+
An area within a Site. May be connected to Quays by PATH LINKs.
@@ -984,7 +984,7 @@ Rail transport, Roads and Road transport
-
+
An individual place to park a VEHICLE.
diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_pointOfInterest_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_pointOfInterest_support.xsd
index 7a1dc7f94..07f903ef6 100644
--- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_pointOfInterest_support.xsd
+++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_pointOfInterest_support.xsd
@@ -135,7 +135,7 @@ Rail transport, Roads and Road transport
-
+
Classification of a POINT OF INTEREST CLASSIFICATION HIERARCHY.
diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_support.xsd
index f29b8e242..e78ce97a9 100644
--- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_support.xsd
+++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_support.xsd
@@ -65,7 +65,7 @@ Rail transport, Roads and Road transport
NeTEX: SITE identifier types.
-
+
Reference to a GROUP OF SITEs.
diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_version.xsd
index 9aa927295..e724c98f7 100644
--- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_version.xsd
+++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_version.xsd
@@ -210,7 +210,7 @@ Rail transport, Roads and Road transport
-
+
Reference to OPERATOR of SITE - derived details can be included.
@@ -944,27 +944,27 @@ Rail transport, Roads and Road transport
-
+
Dummy Type to get round SG limitations
-
+
Dummy Type to get round SG limitations
-
+
Dummy Type to get round SG limitations. Can be a STOP PLACE, VEHICLE MEETING POINT, TAXI RANK.
-
+
Dummy Type to get round SG limitations
-
+
Dummy Type to get round SG limitations
diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_support.xsd
index 9af36cf94..43cab2bcc 100644
--- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_support.xsd
+++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_support.xsd
@@ -109,7 +109,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a GROUP OF STOP PLACEs.
diff --git a/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_version.xsd
index 1d38efee1..5ceda8840 100644
--- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_version.xsd
+++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_version.xsd
@@ -149,7 +149,7 @@ Rail transport, Roads and Road transport
-
+
Version of a named place where public transport may be accessed. May be a building complex (e.g. a station) or an on-street location. Can be a STOP PLACE, VEHICLE MEETING POINT, TAXI RANK. Note: If a master id exists for a StopPlace (must be stable and globally unique), then it is best used in the id. Optimally it would be built according IFOPT. It can also be put into one of the privateCodes in addition. If it is stored in KeyValue, then it should be documented well, so that importing systems know, which id is the relevant one.
diff --git a/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd
index a77330610..f13b67d8f 100644
--- a/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd
+++ b/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_version.xsd
@@ -91,7 +91,7 @@ Rail transport, Roads and Road transport
-
+
The allocation of a TIMING POINT to a SITE COMPONENT such as a PARKING BAY that has VEHICLE CHARGING EQUIPMENT. +v2.0
@@ -138,7 +138,7 @@ Rail transport, Roads and Road transport
-
+
A PARKING with bays specifically equipped for recharging VEHICLEs. +v2.0
@@ -222,7 +222,7 @@ Rail transport, Roads and Road transport
-
+
A PARKING BAY specifically equipped for recharging VEHICLEs. +v2.0
diff --git a/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_version.xsd b/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_version.xsd
index 4a4fb6bf3..02bebc544 100644
--- a/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_version.xsd
+++ b/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_version.xsd
@@ -76,7 +76,7 @@ Rail transport, Roads and Road transport
-
+
A place comprising one or more locations where taxis may stop to pick up or set down passengers. +v1.2.2
@@ -264,7 +264,7 @@ Rail transport, Roads and Road transport
-
+
A specific area where any taxi is able to safely park for a long period. +v1.2.2
diff --git a/xsd/netex_part_1/part1_networkDescription/netex_activation_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_activation_version.xsd
index 63a35767f..915724cab 100644
--- a/xsd/netex_part_1/part1_networkDescription/netex_activation_version.xsd
+++ b/xsd/netex_part_1/part1_networkDescription/netex_activation_version.xsd
@@ -127,7 +127,7 @@ Rail transport, Roads and Road transport
-
+
@@ -199,12 +199,12 @@ Rail transport, Roads and Road transport
-
+
A POINT where a control process is activated when a vehicle passes it. EQUIPMENT may be needed for the activation.
-
+
A POINT where a control process is activated when a vehicle passes it. EQUIPMENT may be needed for the activation.
@@ -266,7 +266,7 @@ Rail transport, Roads and Road transport
-
+
A POINT where a beacon or similar device to support the automatic detection of vehicles passing by is located.
@@ -416,7 +416,7 @@ Rail transport, Roads and Road transport
-
+
An assignment of an ACTIVATION POINT/LINK to an ACTIVATED EQUIPMENT related on its turn to a TRAFFIC CONTROL POINT. The considered ACTIVATION POINT/LINK will be used to influence the control process for that TRAFFIC CONTROL POINT (e.g. to fix priorities as regards the processing of competing requests from different ACTIVATION POINTs/LINKs).
diff --git a/xsd/netex_part_1/part1_networkDescription/netex_flexibleNetwork_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_flexibleNetwork_version.xsd
index 6c58c18b2..c01a24293 100644
--- a/xsd/netex_part_1/part1_networkDescription/netex_flexibleNetwork_version.xsd
+++ b/xsd/netex_part_1/part1_networkDescription/netex_flexibleNetwork_version.xsd
@@ -44,7 +44,7 @@ Rail transport, Roads and Road transport
-
+
A group of FLEXIBLE ROUTEs of which is generally known to the public by a similar name or number and which have common booking arrangements. DEPRECATED: please use LINE instead. +v2.0
@@ -101,7 +101,7 @@ Rail transport, Roads and Road transport
-
+
Specialisation of ROUTE for flexible service. May include both point and zonal areas and ordered and unordered sections.
diff --git a/xsd/netex_part_1/part1_networkDescription/netex_lineNetwork_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_lineNetwork_version.xsd
index 5a5e03d1a..7511df4ca 100644
--- a/xsd/netex_part_1/part1_networkDescription/netex_lineNetwork_version.xsd
+++ b/xsd/netex_part_1/part1_networkDescription/netex_lineNetwork_version.xsd
@@ -168,7 +168,7 @@ Rail transport, Roads and Road transport
-
+
A section of a LINE NETWORK comprising an edge between two nodes. Not directional.
@@ -260,7 +260,7 @@ Rail transport, Roads and Road transport
-
+
Inclusion of a POINT on a LINE SECTION. +v1.1
diff --git a/xsd/netex_part_1/part1_networkDescription/netex_line_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_line_support.xsd
index 16803226f..7f7032408 100644
--- a/xsd/netex_part_1/part1_networkDescription/netex_line_support.xsd
+++ b/xsd/netex_part_1/part1_networkDescription/netex_line_support.xsd
@@ -36,7 +36,7 @@ Rail transport, Roads and Road transport
NeTEx LINE identifier Type Definitions.
-
+
Reference to a GROUP OF LINEs.
diff --git a/xsd/netex_part_1/part1_networkDescription/netex_line_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_line_version.xsd
index f58116536..8d4bf6abe 100644
--- a/xsd/netex_part_1/part1_networkDescription/netex_line_version.xsd
+++ b/xsd/netex_part_1/part1_networkDescription/netex_line_version.xsd
@@ -274,17 +274,17 @@ Rail transport, Roads and Road transport
-
+
-
+
Dummy Supertype for LINE & FLEXIBLE LINe.
-
+
A group of ROUTEs which is generally known to the public by a similar name or number.
diff --git a/xsd/netex_part_1/part1_networkDescription/netex_networkInfrastructure_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_networkInfrastructure_version.xsd
index c12e14819..a8d4b44a5 100644
--- a/xsd/netex_part_1/part1_networkDescription/netex_networkInfrastructure_version.xsd
+++ b/xsd/netex_part_1/part1_networkDescription/netex_networkInfrastructure_version.xsd
@@ -236,7 +236,7 @@ Rail transport, Roads and ROAD transport
-
+
A Dummy Supertype for Infrastructure Link Types.
@@ -272,7 +272,7 @@ Rail transport, Roads and ROAD transport
-
+
A type of INFRASTRUCTURE LINK used to describe a RAILWAY network.
@@ -330,7 +330,7 @@ Rail transport, Roads and ROAD transport
-
+
A type of INFRASTRUCTURE LINK used to describe a ROAD network.
@@ -388,7 +388,7 @@ Rail transport, Roads and ROAD transport
-
+
A type of INFRASTRUCTURE LINK used to describe a WIRE network.
diff --git a/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_version.xsd
index 3150b4092..db1967e21 100644
--- a/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_version.xsd
+++ b/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_version.xsd
@@ -96,7 +96,7 @@ Rail transport, Roads and ROAD transport
-
+
A constraint on use of a network of INFRASTRUCTURE POINTs and INFRASTUCTURE LINKs.
diff --git a/xsd/netex_part_1/part1_networkDescription/netex_route_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_route_version.xsd
index 62d64ff46..e29f8debd 100644
--- a/xsd/netex_part_1/part1_networkDescription/netex_route_version.xsd
+++ b/xsd/netex_part_1/part1_networkDescription/netex_route_version.xsd
@@ -114,7 +114,7 @@ Rail transport, Roads and Road transport
-
+
@@ -214,12 +214,12 @@ Rail transport, Roads and Road transport
-
+
Dummy supertype for Route.
-
+
An ordered list of located POINTs defining one single path through the Road (or rail) network. A ROUTE may pass through the same POINT more than once.
diff --git a/xsd/netex_part_1/part1_networkDescription/netex_timingPattern_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_timingPattern_support.xsd
index cc1fb6b9a..afdbb92a4 100644
--- a/xsd/netex_part_1/part1_networkDescription/netex_timingPattern_support.xsd
+++ b/xsd/netex_part_1/part1_networkDescription/netex_timingPattern_support.xsd
@@ -189,7 +189,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a GROUP OF TIMING LINKs.
diff --git a/xsd/netex_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_version.xsd b/xsd/netex_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_version.xsd
index 51b00503d..d6767ba80 100644
--- a/xsd/netex_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_version.xsd
+++ b/xsd/netex_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_version.xsd
@@ -118,7 +118,7 @@ Rail transport, Roads and Road transport
-
+
@@ -176,12 +176,12 @@ Rail transport, Roads and Road transport
-
+
A TIMING POINT where a relief is possible, i.e. a driver may take on or hand over a vehicle. The vehicle may sometimes be left unattended.
-
+
A TIMING POINT where a relief is possible, i.e. a driver may take on or hand over a vehicle. The vehicle may sometimes be left unattended.
@@ -235,12 +235,12 @@ Rail transport, Roads and Road transport
-
+
A TIMING POINT where vehicles may stay unattended for a long time. A vehicle's return to park at a PARKING POINT marks the end of a BLOCK.
-
+
A TIMING POINT where vehicles may stay unattended for a long time. A vehicle's return to park at a PARKING POINT marks the end of a BLOCK.
@@ -303,7 +303,7 @@ Rail transport, Roads and Road transport
-
+
A subtype of PARKING POINT located in a GARAGE.
@@ -415,7 +415,7 @@ Rail transport, Roads and Road transport
Contact details for GARAGE.
-
+
OPERATORs assoicated with GARAGE.
diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_commonSection_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_commonSection_version.xsd
index 678274c96..f29cd60d3 100644
--- a/xsd/netex_part_1/part1_tacticalPlanning/netex_commonSection_version.xsd
+++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_commonSection_version.xsd
@@ -86,7 +86,7 @@ Rail transport, Roads and Road transport
-
+
A shared set of LINKS or POINTs. A part of a public transport network where the ROUTEs of several JOURNEY PATTERNs are going in parallel and where the synchronisation of SERVICE JOURNEYs may be planned and controlled with respect to commonly used LINKs and STOP POINTs. COMMON SECTIONs are defined arbitrarily and need not cover the total lengths of topologically bundled sections.
diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd
index 3cd0729f6..a57bc39d5 100644
--- a/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd
+++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd
@@ -198,7 +198,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a FARE ZONE.
diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_version.xsd
index 4399ef9c7..da66bd773 100644
--- a/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_version.xsd
+++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_version.xsd
@@ -418,7 +418,7 @@ Rail transport, Roads and Road transport
-
+
A subdivision of a JOURNEY PATTERN consisting of consecutive POINTs IN JOURNEY PATTERN, used to define an element of the fare structure.
@@ -484,7 +484,7 @@ Rail transport, Roads and Road transport
-
+
A specialization of TARIFF ZONE to include FARE SECTIONs.
diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPattern_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPattern_version.xsd
index 00c777e74..cb8fe5163 100644
--- a/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPattern_version.xsd
+++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPattern_version.xsd
@@ -85,18 +85,18 @@ Rail transport, Roads and Road transport
-
+
-
+
Dummy Supertype for JOURNEY PATTERN.
-
+
An ordered list of SCHEDULED STOP POINTs and TIMING POINTs on a single ROUTE, describing the pattern of working for public transport vehicles. A JOURNEY PATTERN may pass through the same POINT more than once. The first point of a JOURNEY PATTERN is the origin. The last point is the destination.
@@ -234,7 +234,7 @@ Rail transport, Roads and Road transport
-
+
A JOURNEY PATTERN to be used for DEAD RUNs.
diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_version.xsd
index 6302ec07d..ff88d2f08 100644
--- a/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_version.xsd
+++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_version.xsd
@@ -280,7 +280,7 @@ LOGICAL DISPLAY corresponds to a SIRI STOP MONITORING point.
-
+
The assignment of one STOP POINT and one JOURNEY PATTERN to a PASSENGER INFORMATION EQUIPMENT, specifying that information on this STOP POINT and this JOURNEY PATTERN will be provided (e.g. displayed, printed).
diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_routingConstraint_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_routingConstraint_version.xsd
index 62052cfd5..283f679e3 100644
--- a/xsd/netex_part_1/part1_tacticalPlanning/netex_routingConstraint_version.xsd
+++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_routingConstraint_version.xsd
@@ -184,7 +184,7 @@ Rail transport, Roads and Road transport
-
+
A constraint on the use of a service. The service, on this specific JOURNEY PATTERN (usually a FTS JOURNEY PATTERN) cannot operate when another (regular) service operates. This may occur only on subpart of the JOURNEY PATTERN, or only on one or some specific SCHEDULED STOP POINTs within the pattern.
@@ -257,7 +257,7 @@ Rail transport, Roads and Road transport
-
+
A CONSTRAINT that can be applied on a CONNECTION or INTERCHANGE between two SCHEDULED STOP POINT, preventing or forbidding the passenger to use it.
diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_version.xsd
index 885478621..11269ac0b 100644
--- a/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_version.xsd
+++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_version.xsd
@@ -689,7 +689,7 @@ Rail transport, Roads and Road transport
-
+
The JOURNEY PATTERN for a (passenger carrying) SERVICE JOURNEY.
diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_version.xsd
index 9ed36de11..634cb3329 100644
--- a/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_version.xsd
+++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_version.xsd
@@ -269,7 +269,7 @@ Rail transport, Roads and Road transport
-
+
Assignment of a SCHEDULED STOP POINT to a STOP PLACE and QUAY, etc.
@@ -283,7 +283,7 @@ Rail transport, Roads and Road transport
-
+
diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_timeDemandType_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_timeDemandType_version.xsd
index baf911a8d..ce6a5a874 100644
--- a/xsd/netex_part_1/part1_tacticalPlanning/netex_timeDemandType_version.xsd
+++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_timeDemandType_version.xsd
@@ -222,7 +222,7 @@ Rail transport, Roads and Road transport
-
+
The assignment of a TIME DEMAND TYPE to a TIME BAND depending on the DAY TYPE and GROUP OF TIMING LINKS.
diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_timingPattern_version.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_timingPattern_version.xsd
index 88cb1c53f..595fa9852 100644
--- a/xsd/netex_part_1/part1_tacticalPlanning/netex_timingPattern_version.xsd
+++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_timingPattern_version.xsd
@@ -144,7 +144,7 @@ Rail transport, Roads and Road transport
-
+
TIMING POINT.
@@ -153,12 +153,12 @@ Rail transport, Roads and Road transport
-
+
A POINT against which the timing information necessary to build schedules may be recorded.
-
+
A POINT against which the timing information necessary to build schedules may be recorded.
diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_call_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_call_version.xsd
index c938f8e02..3c486648d 100644
--- a/xsd/netex_part_2/part2_journeyTimes/netex_call_version.xsd
+++ b/xsd/netex_part_2/part2_journeyTimes/netex_call_version.xsd
@@ -80,17 +80,17 @@ Rail transport, Roads and Road transport
-
+
-
+
Dummy CALL.
-
+
A visit to a SCHEDULED STOP POINT as part of a VEHICLE JOURNEY. A CALL is a view of a POINT IN JOURNEY PATTERN that adds in derived data.
diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_datedVehicleJourney_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_datedVehicleJourney_version.xsd
index 5f67e6f3d..28300f408 100644
--- a/xsd/netex_part_2/part2_journeyTimes/netex_datedVehicleJourney_version.xsd
+++ b/xsd/netex_part_2/part2_journeyTimes/netex_datedVehicleJourney_version.xsd
@@ -118,7 +118,7 @@ Rail transport, Roads and Road transport
-
+
A particular journey of a vehicle on a particular OPERATING DAY including all modifications possibly decided by the control staff.
@@ -246,7 +246,7 @@ Rail transport, Roads and Road transport
-
+
A particular SERVICE JOURNEY of a vehicle on a particular OPERATING DAY including all modifications possibly decided by the control staff.
@@ -297,7 +297,7 @@ The VIEW includes derived ancillary data from referenced entities.
-
+
A DATED VEHICLE JOURNEY identical to a long-term planned VEHICLE JOURNEY, possibly updated according to short-term modifications of the PRODUCTION PLAN decided by the control staff.
@@ -344,7 +344,7 @@ The VIEW includes derived ancillary data from referenced entities.
-
+
A particular journey of a vehicle on a particular OPERATING DAY including all modifications possibly decided by the control staff.
diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_version.xsd
index d19489bcf..3a5886b63 100644
--- a/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_version.xsd
+++ b/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_version.xsd
@@ -77,7 +77,7 @@
-
+
The association of a DECK ENTRANCE of a VEHICLE's DECK PLAN with a TRAIN and TRAIN COMPONENT and a specific STOP PLACE, QUAY and possibly BOARDING POSITION. NOTE: may indicate which side of VEHICLE door is. +v2.0
diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_version.xsd
index 80590e4dc..39a4b7edd 100644
--- a/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_version.xsd
+++ b/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_version.xsd
@@ -81,7 +81,7 @@
-
+
The allocation of a DECK PLAN to all or part of a specific VEHICLE JOURNEY and /or VEHICLE TYPE and/or TRAIN ELEMENT. +v2.0
diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_interchange_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_interchange_version.xsd
index 3f6ee56eb..d237b31a3 100644
--- a/xsd/netex_part_2/part2_journeyTimes/netex_interchange_version.xsd
+++ b/xsd/netex_part_2/part2_journeyTimes/netex_interchange_version.xsd
@@ -347,7 +347,7 @@ Rail transport, Roads and Road transport
-
+
A quality parameter fixing the acceptable duration (standard and maximum) for an INTERCHANGE to be planned between two SCHEDULED STOP POINTs. This parameter will be used to control whether any two SERVICE JOURNEYs serving those points may be in connection.
@@ -408,7 +408,7 @@ Rail transport, Roads and Road transport
-
+
Dummy supertype for INTERCHANGe.
@@ -589,7 +589,7 @@ Default is false.
-
+
The scheduled possibility for transfer of passengers between two SERVICE JOURNEYs at the same or different STOP POINTs.
@@ -663,7 +663,7 @@ Default is false.
-
+
A recognised/organised possibility for passengers to change public transport vehicles using two STOP POINTs (which may be identical) on two particular SERVICE JOURNEY PATTERNs, including the maximum wait duration allowed and the standard to be aimed at. These may supersede the times given for the DEFAULT INTERCHANGE. Schedulers may use this entity for synchronisation of journeys.
diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_journeyAccounting_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_journeyAccounting_version.xsd
index f1a466ddf..ac632536a 100644
--- a/xsd/netex_part_2/part2_journeyTimes/netex_journeyAccounting_version.xsd
+++ b/xsd/netex_part_2/part2_journeyTimes/netex_journeyAccounting_version.xsd
@@ -101,7 +101,7 @@ Rail transport, Roads and Road transport
-
+
Parameters characterizing VEHICLE JOURNEYs or SPECIAL SERVICEs used for accounting purposes in particular in contracts between ORGANISATIONs.
@@ -151,7 +151,7 @@ Rail transport, Roads and Road transport
Object for which this accounts.
-
+
ORGANISATION contracting service.
diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_journey_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_journey_version.xsd
index 1c68f8a8f..d3e6be758 100644
--- a/xsd/netex_part_2/part2_journeyTimes/netex_journey_version.xsd
+++ b/xsd/netex_part_2/part2_journeyTimes/netex_journey_version.xsd
@@ -72,12 +72,12 @@ Rail transport, Roads and Road transport
JOURNEY types for NeTEx.
-
+
Dummy supertype for Journey.
-
+
Common properties of a JOURNEY.
diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd
index a8cf4d130..d082de601 100644
--- a/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd
+++ b/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd
@@ -147,7 +147,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a GROUP OF SERVICEs.
diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_version.xsd
index a4aa3a200..0f018763d 100644
--- a/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_version.xsd
+++ b/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_version.xsd
@@ -86,12 +86,12 @@ Rail transport, Roads and Road transport
-
+
Dummy SERVICE JOURNEY Supertype.
-
+
A passenger carrying VEHICLE JOURNEY for one specified DAY TYPE. The pattern of working is in principle defined by a SERVICE JOURNEY PATTERN.
@@ -294,7 +294,7 @@ The VIEW includes derived ancillary data from referenced entities.
-
+
A VEHICLE JOURNEY with a set of frequencies that may be used to represent a set of similar journeys differing only by their time of departure.
@@ -348,7 +348,7 @@ The VIEW includes derived ancillary data from referenced entities.
-
+
A passenger carrying VEHICLE JOURNEY for one specified DAY TYPE. The pattern of working is in principle defined by a SERVICE JOURNEY PATTERN.
@@ -668,7 +668,7 @@ The VIEW includes derived ancillary data from referenced entities.
-
+
A non-service VEHICLE JOURNEY.
diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd
index 7fd678066..2b7934f6d 100644
--- a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd
+++ b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd
@@ -110,7 +110,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a JOURNEY FREQUENCY GROUP.
diff --git a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_version.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_version.xsd
index 336d37778..7382ff169 100644
--- a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_version.xsd
+++ b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_version.xsd
@@ -107,12 +107,12 @@ Rail transport, Roads and Road transport
-
+
Dummy VEHICLE JOURNEY supertype.
-
+
The planned movement of a public transport vehicle on a DAY TYPE from the start point to the end point of a JOURNEY PATTERN on a specified ROUTE.
@@ -305,7 +305,7 @@ Rail transport, Roads and Road transport
-
+
A repeating VEHICLE JOURNEY for which a frequency has been specified, either as a HEADWAY JOURNEY GROUP (e.g. every 20 minutes) or a RHYTHMICAL JOURNEY GROUP (e.g. at 15, 27 and 40 minutes past the hour). It may thus represent multiple journeys.
diff --git a/xsd/netex_part_3/part3_fares/netex_accessRightParameter_version.xsd b/xsd/netex_part_3/part3_fares/netex_accessRightParameter_version.xsd
index a022c97d8..84c6a74ad 100644
--- a/xsd/netex_part_3/part3_fares/netex_accessRightParameter_version.xsd
+++ b/xsd/netex_part_3/part3_fares/netex_accessRightParameter_version.xsd
@@ -178,7 +178,7 @@ Rail transport, Roads and Road transport
-
+
@@ -205,7 +205,7 @@ Rail transport, Roads and Road transport
-
+
A sequence or set of CONTROLLABLE ELEMENTs to which rules for limitation of access rights and calculation of prices (fare structure) are applied.
@@ -214,12 +214,12 @@ Rail transport, Roads and Road transport
-
+
The assignment of a fare parameter (referring to geography, time, quality or usage) to an element of a fare system (access right, validated access, control mean, etc.).
-
+
The assignment of a fare parameter (referring to geography, time, quality or usage) to an element of a fare system (access right, validated access, control mean, etc.).
@@ -768,12 +768,12 @@ Rail transport, Roads and Road transport
-
+
-
+
An ACCESS RIGHT PARAMETER ASSIGNMENT relating a fare collection parameter to a theoretical FARE PRODUCT (or one of its components) or a SALES OFFER PACKAGE.
@@ -868,7 +868,7 @@ Rail transport, Roads and Road transport
-
+
A VALIDITY PARAMETER ASSIGNMENT specifying practical parameters during a TRAVEL GenericATION, within a given fare structure (e.g. the origin or destination zone in a zone-counting system).
@@ -943,7 +943,7 @@ Rail transport, Roads and Road transport
-
+
Optimisation: Can be used without id constraintA VALIDITY PARAMETER ASSIGNMENT specifying practical parameters during a TRAVEL GenericATION, within a given fare structure (e.g. the origin or destination zone in a zone-counting system).
diff --git a/xsd/netex_part_3/part3_fares/netex_calculationParameters_version.xsd b/xsd/netex_part_3/part3_fares/netex_calculationParameters_version.xsd
index f50c399c3..dd5165e9c 100644
--- a/xsd/netex_part_3/part3_fares/netex_calculationParameters_version.xsd
+++ b/xsd/netex_part_3/part3_fares/netex_calculationParameters_version.xsd
@@ -374,7 +374,7 @@ Rail transport, Roads and Road transport
-
+
A type of day used in the fare collection domain, characterized by one or more properties which affect the definition of access rights and prices in the fare system.
@@ -491,17 +491,17 @@ Rail transport, Roads and Road transport
-
+
-
+
Dumm abstact type of Pricing rule.
-
+
Parameters describing how a fare is to be computed.
@@ -581,7 +581,7 @@ Rail transport, Roads and Road transport
-
+
A price for which a discount can be offered.
@@ -646,7 +646,7 @@ Rail transport, Roads and Road transport
-
+
A price for which a discount can be offered.
@@ -764,7 +764,7 @@ Rail transport, Roads and Road transport
-
+
OPTIMISED version whcih can be be used only in line assues ID of comtainign context -no id checking. A price for which a discount can be offered.
@@ -903,7 +903,7 @@ Rail transport, Roads and Road transport
Name of PRICING SERVICE parameter set.
-
+
URL at which service is available.
diff --git a/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_support.xsd b/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_support.xsd
index 18abb351c..ad08beddd 100644
--- a/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_support.xsd
+++ b/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_support.xsd
@@ -79,7 +79,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a GROUP OF DISTANCE MATRIX ELEMENTs.
diff --git a/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_version.xsd b/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_version.xsd
index ef1308913..f64b623e4 100644
--- a/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_version.xsd
+++ b/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_version.xsd
@@ -224,12 +224,12 @@ Rail transport, Roads and Road transport
-
+
Dummy SERVICE JOURNEY supertype.
-
+
A cell of an origin-destination matrix for TARIFF ZONEs or STOP POINTs, expressing a fare distance for the corresponding trip: value in km, number of fare units etc.
@@ -439,12 +439,12 @@ Rail transport, Roads and Road transport
-
+
-
+
A set of all possible price features of a DISTANCE MATRIX ELEMENT: default total price etc.
.
@@ -494,7 +494,7 @@ Rail transport, Roads and Road transport
-
+
A dynamic free-standing distance matrix element. Used when a pre-computed distance matrix element is not feasible.
diff --git a/xsd/netex_part_3/part3_fares/netex_farePrice_support.xsd b/xsd/netex_part_3/part3_fares/netex_farePrice_support.xsd
index 73c06f3b3..a99240e9d 100644
--- a/xsd/netex_part_3/part3_fares/netex_farePrice_support.xsd
+++ b/xsd/netex_part_3/part3_fares/netex_farePrice_support.xsd
@@ -137,7 +137,7 @@ Rail transport, Roads and Road transport
-
+
Reference to a PRICE GROUP.
@@ -157,7 +157,7 @@ Rail transport, Roads and Road transport
-
+
Dummy Reference to a FARE TABLE CELL.
diff --git a/xsd/netex_part_3/part3_fares/netex_farePrice_version.xsd b/xsd/netex_part_3/part3_fares/netex_farePrice_version.xsd
index f3cf64a12..94daa2f0e 100644
--- a/xsd/netex_part_3/part3_fares/netex_farePrice_version.xsd
+++ b/xsd/netex_part_3/part3_fares/netex_farePrice_version.xsd
@@ -91,18 +91,18 @@ Rail transport, Roads and Road transport
-
+
-
+
Dummy Abstract price.
-
+
An element that may have a FARE PRICE.
@@ -189,7 +189,7 @@ Rail transport, Roads and Road transport
-
+
A grouping of prices that may be associated with a DISTANCE MATRIX ELEMENT, FARE STRUCTURE ELEMENT or other PRICEABLE OBJECT.
@@ -202,7 +202,7 @@ Rail transport, Roads and Road transport
-
+
@@ -216,18 +216,18 @@ Rail transport, Roads and Road transport
-
-
+
+
-
+
Dummy Abstract PRICE.
-
+
A set of all possible price features for a Fare element.
@@ -342,7 +342,7 @@ Rail transport, Roads and Road transport
-
+
@@ -452,8 +452,8 @@ The RULE STEP RESULT Adjustment Amount is the difference beteen the original i
-
-
+
+
@@ -466,18 +466,18 @@ The RULE STEP RESULT Adjustment Amount is the difference beteen the original i
-
+
-
+