diff --git a/scripts/nameofclass.py b/scripts/nameofclass.py
index fd7fc77f1..a1e4fbe1c 100644
--- a/scripts/nameofclass.py
+++ b/scripts/nameofclass.py
@@ -159,7 +159,9 @@ def update_nameofclass_ref_attributes(
continue # nothing to add
# --- Generate or replace NameOfClassXXX simpleType in entity_file ---
- simple_type_name = f"NameOfClass{ref_name}"
+ simple_type_name = f"NameOfClass{ref_name}Type"
+ if simple_type_name == "NameOfClassType":
+ simple_type_name = "NameOfClass"
existing_st = entity_root.find(
f".//xsd:simpleType[@name='{simple_type_name}']", namespaces=ns
)
@@ -204,8 +206,8 @@ def update_nameofclass_ref_attributes(
if parent_ref_name.endswith('_Dummy'):
parent_ref_name = l[2]
- if parent_ref_name == '':
- print(ref_name, l)
+ # if parent_ref_name == '':
+ # print(ref_name, l)
# print(ref_name, parent_ref_name, l)
# if ref_name == 'LinkRefStructure':
@@ -214,10 +216,15 @@ def update_nameofclass_ref_attributes(
# print(analyzer._get_type_chain(natural_class + "Ref"))
# raise
+ if parent_ref_name == '':
+ base = "NameOfClass"
+ else:
+ base = f"NameOfClass{parent_ref_name}Type"
+
restriction = etree.SubElement(
new_simple_type,
"{http://www.w3.org/2001/XMLSchema}restriction",
- base=f"NameOfClass{parent_ref_name}",
+ base=base,
)
for cls in concrete_classes:
etree.SubElement(
@@ -291,13 +298,6 @@ def update_nameofclass_ref_attributes(
base="xsd:string",
)
- # --- Add or replace nameOfRefClass attribute ---
- existing_attr = parent_for_attr.find(
- "{http://www.w3.org/2001/XMLSchema}attribute[@name='nameOfRefClass']"
- )
- if existing_attr is not None:
- parent_for_attr.remove(existing_attr)
-
attrib = etree.Element(
"{http://www.w3.org/2001/XMLSchema}attribute",
name="nameOfRefClass",
@@ -317,7 +317,17 @@ def update_nameofclass_ref_attributes(
)
doc.text = f"Automatic reference class for {ref_name}"
- parent_for_attr.append(attrib)
+ # --- Add or replace nameOfRefClass attribute ---
+ existing_attr = parent_for_attr.find(
+ "{http://www.w3.org/2001/XMLSchema}attribute[@name='nameOfRefClass']"
+ )
+ if existing_attr is not None:
+ index = parent_for_attr.index(existing_attr)
+ parent_for_attr.remove(existing_attr)
+ parent_for_attr.insert(index, attrib)
+ else:
+ parent_for_attr.append(attrib)
+
modified = True
else:
print(f"WARNING: {ref_name} has an unknown {natural_class}. Skipping")
diff --git a/xsd/netex_framework/netex_frames/netex_compositeFrame_version.xsd b/xsd/netex_framework/netex_frames/netex_compositeFrame_version.xsd
index a388123dd..07459bc8b 100644
--- a/xsd/netex_framework/netex_frames/netex_compositeFrame_version.xsd
+++ b/xsd/netex_framework/netex_frames/netex_compositeFrame_version.xsd
@@ -77,11 +77,27 @@ Rail transport, Roads and Road transport
Identifier of a COMPOSITE FRAME.
-
+
Automatic reference class for CompositeFrameRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_frames/netex_generalFrame_version.xsd b/xsd/netex_framework/netex_frames/netex_generalFrame_version.xsd
index 1ab3b6076..c4054d547 100644
--- a/xsd/netex_framework/netex_frames/netex_generalFrame_version.xsd
+++ b/xsd/netex_framework/netex_frames/netex_generalFrame_version.xsd
@@ -123,11 +123,27 @@ Rail transport, Roads and Road transport
Identifier of a GENERAL FRAME.
-
+
Automatic reference class for GeneralFrameRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -218,11 +234,32 @@ Rail transport, Roads and Road transport
-
+
Automatic reference class for GeneralFrameMemberRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of referenced entity.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_frames/netex_resourceFrame_support.xsd b/xsd/netex_framework/netex_frames/netex_resourceFrame_support.xsd
index 6317ce013..ae848062e 100644
--- a/xsd/netex_framework/netex_frames/netex_resourceFrame_support.xsd
+++ b/xsd/netex_framework/netex_frames/netex_resourceFrame_support.xsd
@@ -76,11 +76,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
-
+
Automatic reference class for ResourceFrameRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_frames/netex_serviceCalendarFrame_support.xsd b/xsd/netex_framework/netex_frames/netex_serviceCalendarFrame_support.xsd
index 6a9a2f852..9f4897f3c 100644
--- a/xsd/netex_framework/netex_frames/netex_serviceCalendarFrame_support.xsd
+++ b/xsd/netex_framework/netex_frames/netex_serviceCalendarFrame_support.xsd
@@ -82,11 +82,27 @@ Rail transport, Roads and Road transport
Identifier of SERVICE CALENDAR FRAME.
-
+
Automatic reference class for ServiceCalendarFrameRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_accessibility/netex_acsb_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_accessibility/netex_acsb_support.xsd
index 7896b89fd..00cda41cc 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_accessibility/netex_acsb_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_accessibility/netex_acsb_support.xsd
@@ -72,6 +72,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
+
+
+ Name of Class of the referenced entity. Allows reflection. Fixed for each entity type.
+
+
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -98,11 +119,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
-
+
Automatic reference class for AccessibilityAssessmentRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_alternativeName_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_alternativeName_support.xsd
index 79e46a3e0..849a30961 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_alternativeName_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_alternativeName_support.xsd
@@ -78,11 +78,27 @@ Rail transport, Roads and Road transport
Identifier of an ALTERNATIVE NAME.
-
+
Automatic reference class for AlternativeNameRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_assignment_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_assignment_support.xsd
index 7700ef405..8963bd688 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_assignment_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_assignment_support.xsd
@@ -74,11 +74,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
-
+
Automatic reference class for AssignmentRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd
index 818a4022d..0e01d6eb8 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_grouping_support.xsd
@@ -80,6 +80,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
+
+
+ Name of Class of the referenced entity. Allows reflection. Fixed for each entity type.
+
+
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -109,11 +130,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
-
+
Automatic reference class for GroupOfEntitiesRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -140,11 +177,27 @@ Rail transport, Roads and Road transport
Reference to a PURPOSE OF GROUPING.
-
+
Automatic reference class for PurposeOfGroupingRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -185,11 +238,27 @@ Rail transport, Roads and Road transport
Identifier of a GENERAL GROUP OF ENTITies.
-
+
Automatic reference class for GeneralGroupOfEntitiesRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd
index 2ba44bb8a..565f657ab 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_layer_support.xsd
@@ -90,11 +90,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
-
+
Automatic reference class for LayerRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd
index 6b2ecde23..3bcae13f3 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_loggable_support.xsd
@@ -73,6 +73,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
+
+
+ Name of Class of the referenced entity. Allows reflection. Fixed for each entity type.
+
+
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -99,11 +120,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
-
+
Automatic reference class for LogEntryRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_organisation_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_organisation_support.xsd
index 3617755a4..b4d902b4e 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_organisation_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_organisation_support.xsd
@@ -92,11 +92,27 @@ Rail transport, Roads and Road transport
Identifier of DEPARTMENT.
-
+
Automatic reference class for DepartmentRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -135,11 +151,27 @@ Rail transport, Roads and Road transport
Identifier of ORGANISATIONAL UNIT.
-
+
Automatic reference class for OrganisationalUnitRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -189,11 +221,32 @@ Rail transport, Roads and Road transport
-
+
Automatic reference class for AdministrativeZoneRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of referenced entity.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -232,11 +285,27 @@ Rail transport, Roads and Road transport
Identifier of a TYPE OF VALUE.
-
+
Automatic reference class for TypeOfCodespaceAssignmentRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -275,11 +344,27 @@ Rail transport, Roads and Road transport
Identifier of a TYPE OF VALUE.
-
+
Automatic reference class for TypeOfOrganisationRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -302,6 +387,27 @@ Rail transport, Roads and Road transport
Reference to a TYPE OF ORGANIZATION.
+
+
+ Name of Class of the referenced entity. Allows reflection. Fixed for each entity type.
+
+
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -317,11 +423,27 @@ Rail transport, Roads and Road transport
Identifier of a TYPE OF VALUE.
-
+
Automatic reference class for TypeOfOrganisationPartRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -348,11 +470,27 @@ Rail transport, Roads and Road transport
Identifier of a TYPE OF VALUE.
-
+
Automatic reference class for TypeOfOperationRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -523,11 +661,27 @@ Rail transport, Roads and Road transport
Identifier of CONTACT.
-
+
Automatic reference class for ContactRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd
index 504561668..8e7e9d945 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_path_support.xsd
@@ -89,11 +89,27 @@ Rail transport, Roads and Road transport
Identifier of a PATH LINK.
-
+
Automatic reference class for GenericPathLinkRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -150,6 +166,27 @@ Rail transport, Roads and Road transport
Identifier of a PATH JUNCTION.
+
+
+ Name of Class of the referenced entity. Allows reflection. Fixed for each entity type.
+
+
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -171,11 +208,32 @@ Rail transport, Roads and Road transport
-
+
Automatic reference class for PathInstructionRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of referenced entity.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -216,11 +274,27 @@ Rail transport, Roads and Road transport
Identifier of a NAVIGATION PATH.
-
+
Automatic reference class for GenericNavigationPathRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -254,11 +328,27 @@ Rail transport, Roads and Road transport
Identifier of a PLACE IN SEQUENCE.
-
+
Automatic reference class for PlaceInSequenceRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -297,11 +387,27 @@ Rail transport, Roads and Road transport
Identifier of a PATH LINK IN SEQUENCE.
-
+
Automatic reference class for PathLinkInSequenceRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd
index a115e5381..64550cd03 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_place_support.xsd
@@ -104,11 +104,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
-
+
Automatic reference class for PlaceRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -159,11 +175,27 @@ Rail transport, Roads and Road transport
Identifier of a TRANSFER.
-
+
Automatic reference class for TransferRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -202,11 +234,27 @@ Rail transport, Roads and Road transport
Identifier of an ACCESS link.
-
+
Automatic reference class for AccessRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -233,11 +281,27 @@ Rail transport, Roads and Road transport
Reference to a TYPE OF TRANSFER identifier.
-
+
Automatic reference class for TypeOfTransferRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -264,11 +328,27 @@ Rail transport, Roads and Road transport
Reference to a TYPE OF PLACE.
-
+
Automatic reference class for TypeOfPlaceRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_pointAndLinkSequence_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_pointAndLinkSequence_support.xsd
index 74fb7eb7e..c52c43859 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_pointAndLinkSequence_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_pointAndLinkSequence_support.xsd
@@ -93,11 +93,27 @@ Rail transport, Roads and Road transport
Identifier of a LINK SEQUENCE.
-
+
Automatic reference class for LinkSequenceRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -118,6 +134,27 @@ Rail transport, Roads and Road transport
Identifier of a POINT IN SEQUENCE.
+
+
+ Name of Class of the referenced entity. Allows reflection. Fixed for each entity type.
+
+
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -144,6 +181,27 @@ Rail transport, Roads and Road transport
Identifier of a LINK SEQUENCE.
+
+
+ Name of Class of the referenced entity. Allows reflection. Fixed for each entity type.
+
+
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -176,11 +234,27 @@ Rail transport, Roads and Road transport
Identifier of a TYPE OF LINK SEQUENCE.
-
+
Automatic reference class for TypeOfLinkSequenceRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -210,6 +284,27 @@ Rail transport, Roads and Road transport
+
+
+ Name of Class of the referenced entity. Allows reflection. Fixed for each entity type.
+
+
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd
index 706536166..45df8f7dc 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_pointAndLink_support.xsd
@@ -80,11 +80,27 @@ Rail transport, Roads and Road transport
Identifier of a POINT.
-
+
Automatic reference class for PointRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -136,11 +152,27 @@ Rail transport, Roads and Road transport
Identifier of a LINK.
-
+
Automatic reference class for LinkRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -218,6 +250,27 @@ Rail transport, Roads and Road transport
Identifier of a LINK.
+
+
+ Name of Class of the referenced entity. Allows reflection. Fixed for each entity type.
+
+
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -268,11 +321,27 @@ Rail transport, Roads and Road transport
Reference to a TYPE OF POINT.
-
+
Automatic reference class for TypeOfPointRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -315,11 +384,27 @@ Rail transport, Roads and Road transport
Reference to a TYPE OF LINK.
-
+
Automatic reference class for TypeOfLinkRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -350,19 +435,32 @@ Rail transport, Roads and Road transport
-
+
Identifier of a GROUP OF POINTs.
-
-
-
-
+
Automatic reference class for GroupOfPointsRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_projection_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_projection_support.xsd
index 34b4df785..669e63d52 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_projection_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_projection_support.xsd
@@ -78,11 +78,27 @@ Rail transport, Roads and Road transport
Identifier of a PROJECTION.
-
+
Automatic reference class for ProjectionRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -109,11 +125,27 @@ Rail transport, Roads and Road transport
Identifier of a POINT PROJECTION.
-
+
Automatic reference class for PointProjectionRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -140,11 +172,27 @@ Rail transport, Roads and Road transport
Identifier of a LINK PROJECTION.
-
+
Automatic reference class for LinkProjectionRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -171,11 +219,27 @@ Rail transport, Roads and Road transport
Identifier of a ZONE PROJECTION.
-
+
Automatic reference class for ZoneProjectionRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -202,11 +266,27 @@ Rail transport, Roads and Road transport
Identifier of a PROJECTION.
-
+
Automatic reference class for LinkSequenceProjectionRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -233,11 +313,27 @@ Rail transport, Roads and Road transport
Identifier of a PROJECTION.
-
+
Automatic reference class for ComplexFeatureProjectionRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -271,11 +367,27 @@ Rail transport, Roads and Road transport
Reference to a TYPE OF PROJECTION.
-
+
Automatic reference class for TypeOfProjectionRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd
index cd627d076..db771258d 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_section_support.xsd
@@ -75,11 +75,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
-
+
Automatic reference class for SectionRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -111,11 +127,27 @@ Rail transport, Roads and Road transport
Identifier of referenced entity.
-
+
Automatic reference class for GeneralSectionRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_spatialFeature_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_spatialFeature_support.xsd
index a6efd3f3a..6ba3dfeb1 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_spatialFeature_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_spatialFeature_support.xsd
@@ -78,11 +78,32 @@ Rail transport, Roads and Road transport
-
+
Automatic reference class for SimpleFeatureRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of referenced entity.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -116,11 +137,32 @@ Rail transport, Roads and Road transport
-
+
Automatic reference class for ComplexFeatureRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of referenced entity.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -163,11 +205,27 @@ Rail transport, Roads and Road transport
Identifier of a TYPE OF FEATURE.
-
+
Automatic reference class for TypeOfFeatureRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd b/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd
index 1a1e80824..4c4e62b6c 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_zone_support.xsd
@@ -71,11 +71,32 @@ Rail transport, Roads and Road transport
-
+
Automatic reference class for ZoneRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of referenced entity.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -116,11 +137,32 @@ Rail transport, Roads and Road transport
-
+
Automatic reference class for TariffZoneRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of referenced entity.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
@@ -159,11 +201,27 @@ Rail transport, Roads and Road transport
Reference to a TYPE OF ZONE.
-
+
Automatic reference class for TypeOfZoneRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd b/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd
index 97bb08a02..bd348e086 100644
--- a/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd
+++ b/xsd/netex_framework/netex_genericFramework/netex_zone_version.xsd
@@ -325,11 +325,27 @@ Rail transport, Roads and Road transport
Identifier of a GROUP OF TARIFF ZONEs.
-
+
Automatic reference class for GroupOfTariffZonesRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_responsibility/netex_alternativeText_support.xsd b/xsd/netex_framework/netex_responsibility/netex_alternativeText_support.xsd
index e55128912..2b1b436a1 100644
--- a/xsd/netex_framework/netex_responsibility/netex_alternativeText_support.xsd
+++ b/xsd/netex_framework/netex_responsibility/netex_alternativeText_support.xsd
@@ -75,11 +75,27 @@ Rail transport, Roads and Road transport
Identifier of an ALTERNATIVE TEXT.
-
+
Automatic reference class for AlternativeTextRefStructure
+
+
+ Nature of last modification: new, revise, delete, unchanged.
+
+
+
+
+ Identifier of version of referenced entity. For use when reference is External and a specific version is required. Mutually exclusive with version
+
+
+
+
+ Location of the external entity. +v2.0
+
+
+
diff --git a/xsd/netex_framework/netex_responsibility/netex_entity_support.xsd b/xsd/netex_framework/netex_responsibility/netex_entity_support.xsd
index f4ad30bb1..a06fa9282 100644
--- a/xsd/netex_framework/netex_responsibility/netex_entity_support.xsd
+++ b/xsd/netex_framework/netex_responsibility/netex_entity_support.xsd
@@ -3879,59 +3879,68 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from VehicleEquipment
-
+
+
+
+
+
+
+ Type for all concrete EntityStructures that can be referenced from VehicleEquipment
+
+
+
-
+
Type for all concrete EntityStructures that can be referenced from RubbishDisposalEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PassengerBeaconEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from HelpPointEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PassengerSafetyEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from SanitaryEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PassengerEquipment
-
+
@@ -3945,62 +3954,62 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from AccessVehicleEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TimetabledPassingTime
-
+
-
+
Type for all concrete EntityStructures that can be referenced from EstimatedPassingTime
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ObservedPassingTime
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TargetPassingTime
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PassengerAtStopTime
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PassingTime
-
+
@@ -4009,180 +4018,180 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from RoutingConstraintZone
-
+
-
+
Type for all concrete EntityStructures that can be referenced from SimpleFeature
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ComplexFeature
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleTypeZoneRestriction
-
+
-
+
Type for all concrete EntityStructures that can be referenced from MobilityServiceConstraintZone
-
+
-
+
Type for all concrete EntityStructures that can be referenced from SeriesConstraint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TurnaroundTimeLimitTime
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleTypePreference
-
+
-
+
Type for all concrete EntityStructures that can be referenced from DistanceMatrixElement
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CompoundTrain
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ServiceCalendarFrame
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PoolOfVehicles
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ClassOfUse
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TypeOfOrganisationPart
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TypeOfPaymentMethod
-
+
-
+
Type for all concrete EntityStructures that can be referenced from AdministrativeZone
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TariffZone
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TransportAdministrativeZone
-
+
-
+
Type for all concrete EntityStructures that can be referenced from FareZone
-
+
-
+
Type for all concrete EntityStructures that can be referenced from AccessZone
-
+
-
+
Type for all concrete EntityStructures that can be referenced from GroupOfPoints
-
+
@@ -4253,11 +4262,11 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from Zone
-
+
@@ -4324,114 +4333,115 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from StopArea
-
+
-
+
Type for all concrete EntityStructures that can be referenced from Authority
-
+
-
+
Type for all concrete EntityStructures that can be referenced from AssistanceBookingService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TicketValidatorEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TicketingEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TrolleyStandEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from SeatingEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ShelterEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from WaitingRoomEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from WaitingEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from SiteEquipment
-
+
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleEntrance
-
+
-
+
Type for all concrete EntityStructures that can be referenced from Entrance
-
+
@@ -4441,7 +4451,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from LevelInStructure
@@ -4449,7 +4459,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from SiteStructure
@@ -4457,7 +4467,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from Level
@@ -4465,11 +4475,11 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from SiteComponent
-
+
@@ -4496,19 +4506,19 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from ServiceSite
-
+
-
+
Type for all concrete EntityStructures that can be referenced from Site
-
+
@@ -4542,11 +4552,11 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from SiteElement
-
+
@@ -4580,62 +4590,62 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from GroupOfSites
-
+
-
+
Type for all concrete EntityStructures that can be referenced from StopPlaceVehicleEntrance
-
+
-
+
Type for all concrete EntityStructures that can be referenced from StopPlaceEntrance
-
+
-
+
Type for all concrete EntityStructures that can be referenced from BoardingPosition
-
+
-
+
Type for all concrete EntityStructures that can be referenced from AccessSpace
-
+
-
+
Type for all concrete EntityStructures that can be referenced from Quay
-
+
-
+
Type for all concrete EntityStructures that can be referenced from StopPlaceSpace
-
+
@@ -4644,103 +4654,103 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from GroupOfStopPlaces
-
+
-
+
Type for all concrete EntityStructures that can be referenced from StopPlace
-
+
-
+
Type for all concrete EntityStructures that can be referenced from HeadingSign
-
+
-
+
Type for all concrete EntityStructures that can be referenced from GeneralSign
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PlaceSign
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleReleaseEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CycleStorageEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from RoughSurface
-
+
-
+
Type for all concrete EntityStructures that can be referenced from StaircaseEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TravelatorEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from EntranceEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from AccessEquipment
-
+
@@ -4754,15 +4764,15 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from TypeOfServiceFeature
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehiclePositionAlignment
@@ -4770,7 +4780,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from VehicleQuayAlignment
@@ -4778,35 +4788,35 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from VehicleStoppingPosition
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleStoppingPlace
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TypeOfParking
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ParkingBay
-
+
@@ -4814,18 +4824,18 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from ParkingArea
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ParkingProperties
@@ -4833,7 +4843,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from ParkingCapacity
@@ -4841,239 +4851,239 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from Parking
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CateringService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from RetailService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from MoneyService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from HireService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CommunicationService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from RechargingPointAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from RechargingStation
-
+
-
+
Type for all concrete EntityStructures that can be referenced from RechargingBay
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TaxiParkingArea
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TaxiStand
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TaxiRank
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CheckConstraintThroughput
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CheckConstraintDelay
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CheckConstraint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TypeOfCongestion
-
+
-
+
Type for all concrete EntityStructures that can be referenced from SiteNavigationPath
-
+
-
+
Type for all concrete EntityStructures that can be referenced from OffSitePathLink
-
+
-
+
Type for all concrete EntityStructures that can be referenced from SitePathLink
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PointOfInterestVehicleEntrance
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PointOfInterestClassification
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PointOfInterest
-
+
-
+
Type for all concrete EntityStructures that can be referenced from MeetingPointService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from LeftLuggageService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from LuggageService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from LostPropertyService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ComplaintsService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CustomerService
-
+
@@ -5081,27 +5091,27 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from AssistanceService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TicketingService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from LocalService
-
+
@@ -5118,105 +5128,105 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from HailAndRideArea
-
+
-
+
Type for all concrete EntityStructures that can be referenced from FlexibleArea
-
+
-
+
Type for all concrete EntityStructures that can be referenced from FlexibleQuay
-
+
-
+
Type for all concrete EntityStructures that can be referenced from FlexibleStopPlace
-
+
-
+
Type for all concrete EntityStructures that can be referenced from InfrastructureFrame
-
+
-
+
Type for all concrete EntityStructures that can be referenced from SiteFrame
-
+
-
+
Type for all concrete EntityStructures that can be referenced from DefaultConnection
-
+
-
+
Type for all concrete EntityStructures that can be referenced from SiteConnection
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PassengerBoardingPositionAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TrainStopAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from PassengerStopAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from StopAssignment
-
+
@@ -5229,57 +5239,57 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from FareSection
-
+
-
+
Type for all concrete EntityStructures that can be referenced from FarePointInPattern
-
+
-
+
Type for all concrete EntityStructures that can be referenced from BorderPoint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from FareScheduledStopPoint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from DefaultDeadRunRunTime
-
+
-
+
Type for all concrete EntityStructures that can be referenced from Headway
-
+
-
+
Type for all concrete EntityStructures that can be referenced from JourneyTiming
@@ -5310,32 +5320,32 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from TimingLinkInJourneyPattern
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TimingPointInJourneyPattern
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TypeOfJourneyPattern
-
+
-
+
Type for all concrete EntityStructures that can be referenced from LinkInJourneyPattern
@@ -5344,7 +5354,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from PointInJourneyPattern
@@ -5356,119 +5366,119 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from DeadRunJourneyPattern
-
+
-
+
Type for all concrete EntityStructures that can be referenced from JourneyPattern
-
+
-
+
Type for all concrete EntityStructures that can be referenced from StopPointInJourneyPattern
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ServiceJourneyPattern
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ServicePattern
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ServiceLink
-
+
-
+
Type for all concrete EntityStructures that can be referenced from Connection
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ScheduledStopPoint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TransferRestriction
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ServiceExclusion
-
+
-
+
Type for all concrete EntityStructures that can be referenced from JourneyPatternLayover
-
+
-
+
Type for all concrete EntityStructures that can be referenced from JourneyPatternRunTime
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TypeOfTimeDemandType
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TimeDemandProfile
@@ -5476,15 +5486,15 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from TimeDemandTypeAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TimeDemandType
@@ -5492,16 +5502,16 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from TypeOfPassengerInformationEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from LogicalDisplay
@@ -5509,51 +5519,51 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from PassengerInformationEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from DisplayAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CommonSection
-
+
-
+
Type for all concrete EntityStructures that can be referenced from InfrastructureLink
-
+
-
+
Type for all concrete EntityStructures that can be referenced from InfrastructurePoint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from FlexiblePointProperties
@@ -5561,7 +5571,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from FlexibleLinkProperties
@@ -5569,15 +5579,15 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from FlexibleLine
-
+
-
+
Type for all concrete EntityStructures that can be referenced from LineNetwork
@@ -5585,126 +5595,126 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from LineSection
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TypeOfActivation
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ActivationAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ActivationLink
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TrafficControlPoint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from BeaconPoint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ActivationPoint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ActivatedEquipment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CrewBase
-
+
-
+
Type for all concrete EntityStructures that can be referenced from Garage
-
+
-
+
Type for all concrete EntityStructures that can be referenced from GaragePoint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ParkingPoint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ReliefPoint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TypeOfLine
-
+
-
+
Type for all concrete EntityStructures that can be referenced from DestinationDisplayVariant
@@ -5712,7 +5722,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from DestinationDisplay
@@ -5720,15 +5730,15 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from Network
-
+
-
+
Type for all concrete EntityStructures that can be referenced from AllowedLineDirection
@@ -5736,7 +5746,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from Line
@@ -5745,68 +5755,68 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from GroupOfLines
-
+
-
+
Type for all concrete EntityStructures that can be referenced from OvertakingPossibility
-
+
-
+
Type for all concrete EntityStructures that can be referenced from MeetingRestriction
-
+
-
+
Type for all concrete EntityStructures that can be referenced from RestrictedManoeuvre
-
+
-
+
Type for all concrete EntityStructures that can be referenced from InfrastructureLinkRestriction
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleTypeAtPoint
-
+
-
+
Type for all concrete EntityStructures that can be referenced from NetworkRestriction
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ModeRestrictionAssessment
@@ -5814,7 +5824,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from PointOnRoute
@@ -5822,19 +5832,19 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from RouteLink
-
+
-
+
Type for all concrete EntityStructures that can be referenced from RoutePoint
-
+
@@ -5846,45 +5856,45 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from Route
-
+
-
+
Type for all concrete EntityStructures that can be referenced from Direction
-
+
-
+
Type for all concrete EntityStructures that can be referenced from GroupOfTimingLinks
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TimingLink
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TimingPoint
-
+
@@ -5895,15 +5905,15 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from TimingPattern
-
+
-
+
Type for all concrete EntityStructures that can be referenced from RouteInstruction
@@ -5911,102 +5921,102 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from MobilityJourneyFrame
-
+
-
+
Type for all concrete EntityStructures that can be referenced from MobilityServiceFrame
-
+
-
+
Type for all concrete EntityStructures that can be referenced from OnlineService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from OnlineServiceOperator
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TypeOfMobilityService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleRentalService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleSharingService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ChauffeuredVehicleService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TaxiService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CarPoolingService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehiclePoolingService
-
+
-
+
Type for all concrete EntityStructures that can be referenced from CommonVehicleService
-
+
@@ -6014,11 +6024,11 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from MobilityService
-
+
@@ -6027,198 +6037,198 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from GroupOfSingleJourneys
-
+
-
+
Type for all concrete EntityStructures that can be referenced from SingleJourney
-
+
-
+
Type for all concrete EntityStructures that can be referenced from SingleJourneyPath
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ParkingBayStatus
-
+
-
+
Type for all concrete EntityStructures that can be referenced from MonitoredVehicleSharingParkingBay
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleMeetingLink
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehiclePoolingPlaceAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleSharingPlaceAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from TaxiServicePlaceAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleServicePlaceAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehiclePoolingParkingBay
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleSharingParkingBay
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehiclePoolingParkingArea
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleSharingParkingArea
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehiclePoolingMeetingPlace
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleMeetingPlace
-
+
-
+
Type for all concrete EntityStructures that can be referenced from DynamicVehicleMeetingPointAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleMeetingPointAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from AdditionalDriverOption
-
+
-
+
Type for all concrete EntityStructures that can be referenced from RentalOption
-
+
-
+
Type for all concrete EntityStructures that can be referenced from RentalPenaltyPolicy
-
+
-
+
Type for all concrete EntityStructures that can be referenced from VehicleAccessCredentialsAssignment
-
+
-
+
Type for all concrete EntityStructures that can be referenced from ServiceAccessCode
-
+
-
+
Type for all concrete EntityStructures that can be referenced from IndividualPassengerInfo
@@ -6226,7 +6236,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from VehiclePoolingDriverInfo
@@ -6234,7 +6244,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from IndividualTraveller
@@ -6242,15 +6252,15 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from VehiclePoolerProfile
-
+
-
+
Type for all concrete EntityStructures that can be referenced from OccupancyView
@@ -6258,7 +6268,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from RechargingStep
@@ -6266,7 +6276,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from RechargingPlan
@@ -6274,7 +6284,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from DriverTripTime
@@ -6282,7 +6292,7 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from DriverTrip
@@ -6290,15 +6300,15 @@ Rail transport, Roads and Road transport
-
+
Type for all concrete EntityStructures that can be referenced from DutyPart
-
+