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 - + - + Type for all concrete EntityStructures that can be referenced from AccountableElement @@ -6307,7 +6317,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Duty @@ -6315,47 +6325,47 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from InterchangeRuleTiming - + - + Type for all concrete EntityStructures that can be referenced from InterchangeRule - + - + Type for all concrete EntityStructures that can be referenced from ServiceJourneyPatternInterchange - + - + Type for all concrete EntityStructures that can be referenced from ServiceJourneyInterchange - + - + Type for all concrete EntityStructures that can be referenced from DefaultInterchange - + - + Type for all concrete EntityStructures that can be referenced from Interchange @@ -6366,7 +6376,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from JourneyMeeting @@ -6374,16 +6384,16 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfFlexibleService - + - + Type for all concrete EntityStructures that can be referenced from FlexibleServiceProperties @@ -6391,56 +6401,56 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from RhythmicalJourneyGroup - + - + Type for all concrete EntityStructures that can be referenced from HeadwayJourneyGroup - + - + Type for all concrete EntityStructures that can be referenced from JourneyFrequencyGroup - + - + Type for all concrete EntityStructures that can be referenced from TemplateServiceJourney - + - + Type for all concrete EntityStructures that can be referenced from JourneyAccounting - + - + Type for all concrete EntityStructures that can be referenced from DatedSpecialService - + - + Type for all concrete EntityStructures that can be referenced from Call @@ -6451,72 +6461,72 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from DynamicStopAssignment - + - + Type for all concrete EntityStructures that can be referenced from TrainComponentLabelAssignment - + - + Type for all concrete EntityStructures that can be referenced from VehicleJourneyStopAssignment - + - + Type for all concrete EntityStructures that can be referenced from VehicleTypeStopAssignment - + - + Type for all concrete EntityStructures that can be referenced from TrainComponentStopAssignment - + - + Type for all concrete EntityStructures that can be referenced from RestrictedServiceFacilitySet - + - + Type for all concrete EntityStructures that can be referenced from DeckPlanAssignment - + - + Type for all concrete EntityStructures that can be referenced from TrainBlockPart - + - + Type for all concrete EntityStructures that can be referenced from BlockPart @@ -6525,15 +6535,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TrainBlock - + - + Type for all concrete EntityStructures that can be referenced from Block @@ -6542,15 +6552,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PurposeOfJourneyPartition - + - + Type for all concrete EntityStructures that can be referenced from JourneyPartCouple @@ -6558,7 +6568,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from CoupledJourney @@ -6566,15 +6576,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from JourneyPart - + - + Type for all concrete EntityStructures that can be referenced from ReliefOpportunity @@ -6582,7 +6592,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from CourseOfJourneys @@ -6590,7 +6600,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from VehicleServicePart @@ -6598,7 +6608,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from VehicleService @@ -6606,7 +6616,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from CompoundBlock @@ -6614,15 +6624,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TimingAlgorithmType - + - + Type for all concrete EntityStructures that can be referenced from TrainNumber @@ -6630,30 +6640,30 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from DeadRun - + - + Type for all concrete EntityStructures that can be referenced from VehicleJourney - + - + Type for all concrete EntityStructures that can be referenced from Journey - + @@ -6667,66 +6677,66 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from GroupOfServices - + - + Type for all concrete EntityStructures that can be referenced from SpecialService - + - + Type for all concrete EntityStructures that can be referenced from ServiceJourney - + - + Type for all concrete EntityStructures that can be referenced from ServiceFrame - + - + Type for all concrete EntityStructures that can be referenced from DriverScheduleFrame - + - + Type for all concrete EntityStructures that can be referenced from VehicleScheduleFrame - + - + Type for all concrete EntityStructures that can be referenced from TimetableFrame - + - + Type for all concrete EntityStructures that can be referenced from AccessibilityAssessment @@ -6734,91 +6744,91 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfPlug - + - + Type for all concrete EntityStructures that can be referenced from TypeOfBatteryChemistry - + - + Type for all concrete EntityStructures that can be referenced from BatteryEquipment - + - + Type for all concrete EntityStructures that can be referenced from RefuellingEquipment - + - + Type for all concrete EntityStructures that can be referenced from VehicleChargingEquipment - + - + Type for all concrete EntityStructures that can be referenced from TypeOfLocatableSpot - + - + Type for all concrete EntityStructures that can be referenced from LuggageSpot - + - + Type for all concrete EntityStructures that can be referenced from PassengerVehicleSpot - + - + Type for all concrete EntityStructures that can be referenced from PassengerSpot - + - + Type for all concrete EntityStructures that can be referenced from LocatableSpot - + - + Type for all concrete EntityStructures that can be referenced from OnboardSpace @@ -6834,7 +6844,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from SpotColumn @@ -6842,7 +6852,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from SpotRow @@ -6850,7 +6860,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from SchematicMap @@ -6858,31 +6868,31 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from RechargingEquipmentProfile - + - + Type for all concrete EntityStructures that can be referenced from TypeOfDriverPermit - + - + Type for all concrete EntityStructures that can be referenced from AcceptedDriverPermit - + - + Type for all concrete EntityStructures that can be referenced from VehicleEquipmentProfileMember @@ -6890,15 +6900,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PurposeOfEquipmentProfile - + - + Type for all concrete EntityStructures that can be referenced from VehicleEquipmentProfile @@ -6907,7 +6917,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from VehicleModel @@ -6915,23 +6925,23 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from FacilityRequirement - + - + Type for all concrete EntityStructures that can be referenced from VehicleManoeuvringRequirement - + - + Type for all concrete EntityStructures that can be referenced from PassengerVehicleCapacity @@ -6939,7 +6949,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PassengerCapacity @@ -6947,16 +6957,16 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PassengerCarryingRequirement - + - + Type for all concrete EntityStructures that can be referenced from VehicleRequirement @@ -6967,19 +6977,19 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from SimpleVehicleType - + - + Type for all concrete EntityStructures that can be referenced from VehicleType - + @@ -6987,7 +6997,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TransportType @@ -7001,15 +7011,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from DayTypeAssignment - + - + Type for all concrete EntityStructures that can be referenced from OperatingPeriod @@ -7018,7 +7028,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from OperatingDay @@ -7026,7 +7036,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from ServiceCalendar @@ -7034,11 +7044,11 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PlaceEquipment - + @@ -7048,6 +7058,8 @@ Rail transport, Roads and Road transport + + @@ -7064,36 +7076,36 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from EquipmentPlace - + - + Type for all concrete EntityStructures that can be referenced from EquipmentPosition - + - + Type for all concrete EntityStructures that can be referenced from TypeOfEquipment - + - + Type for all concrete EntityStructures that can be referenced from InstalledEquipment - + @@ -7109,6 +7121,8 @@ Rail transport, Roads and Road transport + + @@ -7139,7 +7153,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Equipment @@ -7170,11 +7184,13 @@ Rail transport, Roads and Road transport + + @@ -7210,20 +7226,20 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PostalAddress - + - + Type for all concrete EntityStructures that can be referenced from AddressablePlace - + @@ -7261,51 +7277,51 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Address - + - + Type for all concrete EntityStructures that can be referenced from LuggageSpotEquipment - + - + Type for all concrete EntityStructures that can be referenced from BedEquipment - + - + Type for all concrete EntityStructures that can be referenced from SeatEquipment - + - + Type for all concrete EntityStructures that can be referenced from SpotEquipment - + - + Type for all concrete EntityStructures that can be referenced from SpotAffinity @@ -7313,15 +7329,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from ServiceBookingArrangement - + - + Type for all concrete EntityStructures that can be referenced from BookingArrangement @@ -7330,33 +7346,33 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfProductCategory - + - + Type for all concrete EntityStructures that can be referenced from TypeOfService - + - + Type for all concrete EntityStructures that can be referenced from TypeOfFacility - + - + Type for all concrete EntityStructures that can be referenced from OnboardStay @@ -7364,7 +7380,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Accommodation @@ -7372,24 +7388,24 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from ServiceFacilitySet - + - + Type for all concrete EntityStructures that can be referenced from SiteFacilitySet - + - + Type for all concrete EntityStructures that can be referenced from FacilitySet @@ -7399,47 +7415,47 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TrailingElementType - + - + Type for all concrete EntityStructures that can be referenced from TractiveElementType - + - + Type for all concrete EntityStructures that can be referenced from UnpoweredTrain - + - + Type for all concrete EntityStructures that can be referenced from PoweredTrain - + - + Type for all concrete EntityStructures that can be referenced from TypeOfSecurityList - + - + Type for all concrete EntityStructures that can be referenced from SecurityListing @@ -7452,23 +7468,23 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Whitelist - + - + Type for all concrete EntityStructures that can be referenced from Blacklist - + - + Type for all concrete EntityStructures that can be referenced from SecurityList @@ -7477,23 +7493,23 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfDeckEntranceUsage - + - + Type for all concrete EntityStructures that can be referenced from TypeOfDeckEntrance - + - + Type for all concrete EntityStructures that can be referenced from DeckSpaceCapacity @@ -7501,7 +7517,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from DeckLevel @@ -7509,15 +7525,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from DeckWindow - + - + Type for all concrete EntityStructures that can be referenced from DeckEntranceCouple @@ -7525,7 +7541,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from DeckEntranceUsage @@ -7533,70 +7549,70 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from OtherDeckEntrance - + - + Type for all concrete EntityStructures that can be referenced from DeckVehicleEntrance - + - + Type for all concrete EntityStructures that can be referenced from PassengerEntrance - + - + Type for all concrete EntityStructures that can be referenced from DeckEntrance - + - + Type for all concrete EntityStructures that can be referenced from OtherDeckSpace - + - + Type for all concrete EntityStructures that can be referenced from PassengerSpace - + - + Type for all concrete EntityStructures that can be referenced from DeckSpace - + - + Type for all concrete EntityStructures that can be referenced from DeckComponent - + @@ -7605,7 +7621,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Deck @@ -7614,7 +7630,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from DeckPlan @@ -7622,15 +7638,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from AvailabilityCondition - + - + Type for all concrete EntityStructures that can be referenced from SensorInEntrance @@ -7638,7 +7654,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from SensorInSpot @@ -7646,49 +7662,49 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from EntranceSensor - + - + Type for all concrete EntityStructures that can be referenced from SpotSensor - + - + Type for all concrete EntityStructures that can be referenced from SensorEquipment - + - + Type for all concrete EntityStructures that can be referenced from ControlCentre - + - + Type for all concrete EntityStructures that can be referenced from OperatingDepartment - + - + Type for all concrete EntityStructures that can be referenced from OperationalContext @@ -7696,72 +7712,72 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from GroupOfOperators - + - + Type for all concrete EntityStructures that can be referenced from Operator - + - + Type for all concrete EntityStructures that can be referenced from TransportOrganisation - + - + Type for all concrete EntityStructures that can be referenced from TypeOfWheelchair - + - + Type for all concrete EntityStructures that can be referenced from TopographicProjection - + - + Type for all concrete EntityStructures that can be referenced from GroupOfPlaces - + - + Type for all concrete EntityStructures that can be referenced from TopographicPlace - + - + Type for all concrete EntityStructures that can be referenced from GroupOfTimebands - + - + Type for all concrete EntityStructures that can be referenced from Timeband @@ -7769,7 +7785,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from DayType @@ -7779,15 +7795,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from DeckNavigationPath - + - + Type for all concrete EntityStructures that can be referenced from DeckPlaceInSequence @@ -7795,47 +7811,47 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from DeckPathLink - + - + Type for all concrete EntityStructures that can be referenced from TypeOfModeOfOperation - + - + Type for all concrete EntityStructures that can be referenced from PersonalModeOfOperation - + - + Type for all concrete EntityStructures that can be referenced from AlternativeModeOfOperation - + - + Type for all concrete EntityStructures that can be referenced from ModeOfOperation - + @@ -7843,7 +7859,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Submode @@ -7852,7 +7868,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from OpenTransportMode @@ -7861,23 +7877,23 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from CycleModelProfile - + - + Type for all concrete EntityStructures that can be referenced from CarModelProfile - + - + Type for all concrete EntityStructures that can be referenced from VehicleModelProfile @@ -7886,25 +7902,25 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfDeliveryVariant - + - + Type for all concrete EntityStructures that can be referenced from TypeOfNotice - + - + Type for all concrete EntityStructures that can be referenced from DeliveryVariant @@ -7912,7 +7928,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Notice @@ -7920,16 +7936,16 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfRollingStock - + - + Type for all concrete EntityStructures that can be referenced from RollingStockInventory @@ -7937,32 +7953,32 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TrailingRollingStockItem - + - + Type for all concrete EntityStructures that can be referenced from TractiveRollingStockItem - + - + Type for all concrete EntityStructures that can be referenced from RollingStockItem - + - + Type for all concrete EntityStructures that can be referenced from Vehicle @@ -7972,7 +7988,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TrainComponent @@ -7980,7 +7996,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TrainElementType @@ -7990,7 +8006,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TrainInCompoundTrain @@ -7998,53 +8014,53 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Train - + - + Type for all concrete EntityStructures that can be referenced from GeneralOrganisation - + - + Type for all concrete EntityStructures that can be referenced from ManagementAgent - + - + Type for all concrete EntityStructures that can be referenced from ServicedOrganisation - + - + Type for all concrete EntityStructures that can be referenced from TravelAgent - + - + Type for all concrete EntityStructures that can be referenced from OtherOrganisation - + @@ -8052,23 +8068,23 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfFleet - + - + Type for all concrete EntityStructures that can be referenced from Fleet - + - + Type for all concrete EntityStructures that can be referenced from TypeOfValue @@ -8165,23 +8181,23 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from ValidityRuleParameter - + - + Type for all concrete EntityStructures that can be referenced from ValidityTrigger - + - + Type for all concrete EntityStructures that can be referenced from ValidityCondition @@ -8197,7 +8213,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Contract @@ -8205,7 +8221,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from ResponsibilityRole @@ -8213,24 +8229,24 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfValidity - + - + Type for all concrete EntityStructures that can be referenced from TypeOfFrame - + - + Type for all concrete EntityStructures that can be referenced from VersionFrame @@ -8252,7 +8268,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from AlternativeText @@ -8260,7 +8276,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from DataSource @@ -8268,7 +8284,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Version @@ -8276,15 +8292,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Branding - + - + Type for all concrete EntityStructures that can be referenced from OrganisationPart @@ -8296,7 +8312,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Organisation @@ -8312,16 +8328,16 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfResponsibilityRole - + - + Type for all concrete EntityStructures that can be referenced from ResponsibilitySet @@ -8329,23 +8345,23 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from CompositeFrame - + - + Type for all concrete EntityStructures that can be referenced from ResourceFrame - + - + Type for all concrete EntityStructures that can be referenced from GeneralFrameMember @@ -8353,24 +8369,24 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from GeneralFrame - + - + Type for all concrete EntityStructures that can be referenced from TypeOfLinkSequence - + - + Type for all concrete EntityStructures that can be referenced from LinkSequence @@ -8403,25 +8419,25 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfLink - + - + Type for all concrete EntityStructures that can be referenced from TypeOfPoint - + - + Type for all concrete EntityStructures that can be referenced from Link @@ -8440,7 +8456,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Point @@ -8467,7 +8483,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from AlternativeName @@ -8476,32 +8492,32 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfZone - + - + Type for all concrete EntityStructures that can be referenced from GeneralGroupOfEntities - + - + Type for all concrete EntityStructures that can be referenced from PurposeOfGrouping - + - + Type for all concrete EntityStructures that can be referenced from GroupOfEntities @@ -8521,6 +8537,7 @@ Rail transport, Roads and Road transport + @@ -8608,15 +8625,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from GroupOfTariffZones - + - + Type for all concrete EntityStructures that can be referenced from PathLinkInSequence @@ -8624,7 +8641,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PlaceInSequence @@ -8632,17 +8649,17 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from GenericNavigationPath - + - + Type for all concrete EntityStructures that can be referenced from PathInstruction @@ -8650,47 +8667,47 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from GenericPathLink - + - + Type for all concrete EntityStructures that can be referenced from GeneralSection - + - + Type for all concrete EntityStructures that can be referenced from Section - + - + Type for all concrete EntityStructures that can be referenced from TypeOfFeature - + - + Type for all concrete EntityStructures that can be referenced from Contact @@ -8698,76 +8715,76 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfOperation - + - + Type for all concrete EntityStructures that can be referenced from TypeOfOrganisation - + - + Type for all concrete EntityStructures that can be referenced from TypeOfCodespaceAssignment - + - + Type for all concrete EntityStructures that can be referenced from OrganisationalUnit - + - + Type for all concrete EntityStructures that can be referenced from Department - + - + Type for all concrete EntityStructures that can be referenced from TypeOfPlace - + - + Type for all concrete EntityStructures that can be referenced from TypeOfTransfer - + - + Type for all concrete EntityStructures that can be referenced from Access - + - + Type for all concrete EntityStructures that can be referenced from Transfer @@ -8778,11 +8795,11 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Place - + @@ -8832,15 +8849,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Layer - + - + Type for all concrete EntityStructures that can be referenced from LogEntry @@ -8858,57 +8875,57 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfProjection - + - + Type for all concrete EntityStructures that can be referenced from ComplexFeatureProjection - + - + Type for all concrete EntityStructures that can be referenced from LinkSequenceProjection - + - + Type for all concrete EntityStructures that can be referenced from ZoneProjection - + - + Type for all concrete EntityStructures that can be referenced from LinkProjection - + - + Type for all concrete EntityStructures that can be referenced from PointProjection - + - + Type for all concrete EntityStructures that can be referenced from Projection @@ -8921,7 +8938,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Assignment @@ -8972,210 +8989,210 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from QualityStructureFactorPrice - + - + Type for all concrete EntityStructures that can be referenced from FareQuotaFactor - + - + Type for all concrete EntityStructures that can be referenced from FareDemandFactor - + - + Type for all concrete EntityStructures that can be referenced from QualityStructureFactor - + - + Type for all concrete EntityStructures that can be referenced from TypeOfAccessRightAssignment - + - + Type for all concrete EntityStructures that can be referenced from TimeIntervalPrice - + - + Type for all concrete EntityStructures that can be referenced from TimeUnitPrice - + - + Type for all concrete EntityStructures that can be referenced from TimeStructureFactor - + - + Type for all concrete EntityStructures that can be referenced from TimeInterval - + - + Type for all concrete EntityStructures that can be referenced from TimeUnit - + - + Type for all concrete EntityStructures that can be referenced from TypeOfFareProduct - + - + Type for all concrete EntityStructures that can be referenced from ChargingMoment - + - + Type for all concrete EntityStructures that can be referenced from AccessRightInProduct - + - + Type for all concrete EntityStructures that can be referenced from CappingRulePrice - + - + Type for all concrete EntityStructures that can be referenced from FareProductPrice - + - + Type for all concrete EntityStructures that can be referenced from SupplementProduct - + - + Type for all concrete EntityStructures that can be referenced from PreassignedFareProduct - + - + Type for all concrete EntityStructures that can be referenced from AmountOfPriceUnitProduct - + - + Type for all concrete EntityStructures that can be referenced from CappingRule - + - + Type for all concrete EntityStructures that can be referenced from CappedDiscountRight - + - + Type for all concrete EntityStructures that can be referenced from UsageDiscountRight - + - + Type for all concrete EntityStructures that can be referenced from ThirdPartyProduct - + - + Type for all concrete EntityStructures that can be referenced from EntitlementProduct - + - + Type for all concrete EntityStructures that can be referenced from SaleDiscountRight - + - + Type for all concrete EntityStructures that can be referenced from FareProduct - + @@ -9185,11 +9202,11 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from ServiceAccessRight - + @@ -9201,59 +9218,59 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Subscribing - + - + Type for all concrete EntityStructures that can be referenced from PenaltyPolicy - + - + Type for all concrete EntityStructures that can be referenced from ChargingPolicy - + - + Type for all concrete EntityStructures that can be referenced from TypeOfConcession - + - + Type for all concrete EntityStructures that can be referenced from TypeOfUsageParameter - + - + Type for all concrete EntityStructures that can be referenced from UsageParameterPrice - + - + Type for all concrete EntityStructures that can be referenced from UsageParameter - + @@ -9289,49 +9306,49 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from FareStructureElementInSequence - + - + Type for all concrete EntityStructures that can be referenced from TypeOfFareStructureElement - + - + Type for all concrete EntityStructures that can be referenced from FareStructureElementPrice - + - + Type for all concrete EntityStructures that can be referenced from FareStructureElement - + - + Type for all concrete EntityStructures that can be referenced from TypeOfTariff - + - + Type for all concrete EntityStructures that can be referenced from Tariff @@ -9340,15 +9357,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PriceGroup - + - + Type for all concrete EntityStructures that can be referenced from FarePrice @@ -9372,7 +9389,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PriceableObject @@ -9446,127 +9463,127 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from GeographicalIntervalPrice - + - + Type for all concrete EntityStructures that can be referenced from GeographicalUnitPrice - + - + Type for all concrete EntityStructures that can be referenced from GeographicalStructureFactor - + - + Type for all concrete EntityStructures that can be referenced from GeographicalInterval - + - + Type for all concrete EntityStructures that can be referenced from GeographicalUnit - + - + Type for all concrete EntityStructures that can be referenced from ControllableElementPrice - + - + Type for all concrete EntityStructures that can be referenced from ControllableElementInSequence - + - + Type for all concrete EntityStructures that can be referenced from ControllableElement - + - + Type for all concrete EntityStructures that can be referenced from ValidableElementPrice - + - + Type for all concrete EntityStructures that can be referenced from ValidableElement - + - + Type for all concrete EntityStructures that can be referenced from LuggageAllowance - + - + Type for all concrete EntityStructures that can be referenced from FulfilmentMethodPrice - + - + Type for all concrete EntityStructures that can be referenced from GroupOfDistributionChannels - + - + Type for all concrete EntityStructures that can be referenced from FulfilmentMethod - + - + Type for all concrete EntityStructures that can be referenced from TypeOfPricingRule - + - + Type for all concrete EntityStructures that can be referenced from MonthValidityOffset @@ -9574,7 +9591,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PricingService @@ -9582,15 +9599,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from FareDayType - + - + Type for all concrete EntityStructures that can be referenced from RoundingStep @@ -9598,7 +9615,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Rounding @@ -9606,15 +9623,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PriceUnit - + - + Type for all concrete EntityStructures that can be referenced from PricingParameterSet @@ -9622,132 +9639,132 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Cancelling - + - + Type for all concrete EntityStructures that can be referenced from Reserving - + - + Type for all concrete EntityStructures that can be referenced from BookingPolicy - + - + Type for all concrete EntityStructures that can be referenced from PurchaseWindow - + - + Type for all concrete EntityStructures that can be referenced from TypeOfMachineReadability - + - + Type for all concrete EntityStructures that can be referenced from TypeOfTravelDocument - + - + Type for all concrete EntityStructures that can be referenced from DistanceMatrixElementPrice - + - + Type for all concrete EntityStructures that can be referenced from SalesOfferPackageEntitlementGiven - + - + Type for all concrete EntityStructures that can be referenced from SalesOfferPackageEntitlementRequired - + - + Type for all concrete EntityStructures that can be referenced from Transferability - + - + Type for all concrete EntityStructures that can be referenced from Replacing - + - + Type for all concrete EntityStructures that can be referenced from Refunding - + - + Type for all concrete EntityStructures that can be referenced from Exchanging - + - + Type for all concrete EntityStructures that can be referenced from Reselling - + - + Type for all concrete EntityStructures that can be referenced from TypeOfFareTable - + - + Type for all concrete EntityStructures that can be referenced from FareTableRow @@ -9755,7 +9772,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from FareTableColumn @@ -9763,7 +9780,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from Cell @@ -9773,32 +9790,33 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from StandardFareTable - + - + Type for all concrete EntityStructures that can be referenced from FareTable - + + - + Type for all concrete EntityStructures that can be referenced from EligibilityChangePolicy - + - + Type for all concrete EntityStructures that can be referenced from ResidentialQualification @@ -9806,155 +9824,155 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfProof - + - + Type for all concrete EntityStructures that can be referenced from CompanionProfile - + - + Type for all concrete EntityStructures that can be referenced from GroupTicket - + - + Type for all concrete EntityStructures that can be referenced from CommercialProfile - + - + Type for all concrete EntityStructures that can be referenced from UserProfile - + - + Type for all concrete EntityStructures that can be referenced from EntitlementGiven - + - + Type for all concrete EntityStructures that can be referenced from EntitlementRequired - + - + Type for all concrete EntityStructures that can be referenced from TypeOfSalesOfferPackage - + - + Type for all concrete EntityStructures that can be referenced from DistributionAssignment - + - + Type for all concrete EntityStructures that can be referenced from GroupOfSalesOfferPackages - + - + Type for all concrete EntityStructures that can be referenced from SalesOfferPackageSubstitution - + - + Type for all concrete EntityStructures that can be referenced from SalesOfferPackagePrice - + - + Type for all concrete EntityStructures that can be referenced from SalesOfferPackageElement - + - + Type for all concrete EntityStructures that can be referenced from SalesOfferPackage - + - + Type for all concrete EntityStructures that can be referenced from TypeOfFareStructureFactor - + - + Type for all concrete EntityStructures that can be referenced from FareInterval - + - + Type for all concrete EntityStructures that can be referenced from FareUnit - + - + Type for all concrete EntityStructures that can be referenced from FareStructureFactor - + @@ -9964,7 +9982,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from FareElementInSequence @@ -9975,7 +9993,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from ZoneInSeries @@ -9983,103 +10001,103 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from SeriesConstraintPrice - + - + Type for all concrete EntityStructures that can be referenced from MinimumStay - + - + Type for all concrete EntityStructures that can be referenced from Interchanging - + - + Type for all concrete EntityStructures that can be referenced from FrequencyOfUse - + - + Type for all concrete EntityStructures that can be referenced from Suspending - + - + Type for all concrete EntityStructures that can be referenced from UsageValidityPeriod - + - + Type for all concrete EntityStructures that can be referenced from StepLimit - + - + Type for all concrete EntityStructures that can be referenced from Routing - + - + Type for all concrete EntityStructures that can be referenced from RoundTrip - + - + Type for all concrete EntityStructures that can be referenced from ResidentialQualificationEligibility - + - + Type for all concrete EntityStructures that can be referenced from CommercialProfileEligibility - + - + Type for all concrete EntityStructures that can be referenced from UserProfileEligibility - + - + Type for all concrete EntityStructures that can be referenced from CustomerEligibility @@ -10089,15 +10107,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TravelDocumentSecurityListing - + - + Type for all concrete EntityStructures that can be referenced from TravelDocument @@ -10106,7 +10124,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from CustomerPaymentMeans @@ -10114,7 +10132,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from PassengerSpotAllocation @@ -10122,7 +10140,7 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from VehicleJourneySpotAllocation @@ -10130,51 +10148,51 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from OffenceDebit - + - + Type for all concrete EntityStructures that can be referenced from FareProductSaleDebit - + - + Type for all concrete EntityStructures that can be referenced from TripDebit - + - + Type for all concrete EntityStructures that can be referenced from BookingDebit - + - + Type for all concrete EntityStructures that can be referenced from OtherDebit - + - + Type for all concrete EntityStructures that can be referenced from FareDebit - + @@ -10182,64 +10200,64 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from SalesTransaction - + - + Type for all concrete EntityStructures that can be referenced from RetailDeviceSecurityListing - + - + Type for all concrete EntityStructures that can be referenced from TypeOfRetailDevice - + - + Type for all concrete EntityStructures that can be referenced from RetailDevice - + - + Type for all concrete EntityStructures that can be referenced from RetailConsortium - + - + Type for all concrete EntityStructures that can be referenced from MediumAccessDeviceSecurityListing - + - + Type for all concrete EntityStructures that can be referenced from TypeOfMediumAccessDevice - + - + Type for all concrete EntityStructures that can be referenced from MediumApplicationInstance @@ -10247,31 +10265,31 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from MobileDevice - + - + Type for all concrete EntityStructures that can be referenced from EmvCard - + - + Type for all concrete EntityStructures that can be referenced from Smartcard - + - + Type for all concrete EntityStructures that can be referenced from MediumAccessDevice @@ -10282,33 +10300,33 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from CustomerAccountStatus - + - + Type for all concrete EntityStructures that can be referenced from TypeOfCustomerAccount - + - + Type for all concrete EntityStructures that can be referenced from CustomerAccountSecurityListing - + - + Type for all concrete EntityStructures that can be referenced from CustomerAccount @@ -10316,44 +10334,44 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from TypeOfFareContractEntry - + - + Type for all concrete EntityStructures that can be referenced from FareContractEntry - + - + Type for all concrete EntityStructures that can be referenced from FareContractSecurityListing - + - + Type for all concrete EntityStructures that can be referenced from TypeOfFareContract - + - + Type for all concrete EntityStructures that can be referenced from FareContract @@ -10361,15 +10379,15 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from CustomerSecurityListing - + - + Type for all concrete EntityStructures that can be referenced from Customer @@ -10377,101 +10395,101 @@ Rail transport, Roads and Road transport - + Type for all concrete EntityStructures that can be referenced from CustomerPurchasePackagePrice - + - + Type for all concrete EntityStructures that can be referenced from CustomerPurchasePackageElement - + - + Type for all concrete EntityStructures that can be referenced from CustomerPurchasePackage - + - + Type for all concrete EntityStructures that can be referenced from OfferedTravelSpecification - + - + Type for all concrete EntityStructures that can be referenced from RequestedTravelSpecification - + - + Type for all concrete EntityStructures that can be referenced from TravelSpecification - + - + Type for all concrete EntityStructures that can be referenced from FarePriceFrame - + - + Type for all concrete EntityStructures that can be referenced from FareFrame - + - + Type for all concrete EntityStructures that can be referenced from SalesTransactionFrame - + - + Type for all concrete EntityStructures that can be referenced from ParkingPrice - + - + Type for all concrete EntityStructures that can be referenced from ParkingChargeBand - + - + Type for all concrete EntityStructures that can be referenced from ParkingTariff - + diff --git a/xsd/netex_framework/netex_responsibility/netex_relationship.xsd b/xsd/netex_framework/netex_responsibility/netex_relationship.xsd index 362d50ed7..04efc81d7 100644 --- a/xsd/netex_framework/netex_responsibility/netex_relationship.xsd +++ b/xsd/netex_framework/netex_responsibility/netex_relationship.xsd @@ -103,11 +103,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF VALUE. - + Automatic reference class for TypeOfValueRefStructure + + + 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_relationship_support.xsd b/xsd/netex_framework/netex_responsibility/netex_relationship_support.xsd index a00eae102..e0093720b 100644 --- a/xsd/netex_framework/netex_responsibility/netex_relationship_support.xsd +++ b/xsd/netex_framework/netex_responsibility/netex_relationship_support.xsd @@ -99,7 +99,7 @@ Rail transport, Roads and Road transport - Nature of last modification: new, revise, delete, unchanged; + Nature of last modification: new, revise, delete, unchanged. @@ -156,11 +156,27 @@ Rail transport, Roads and Road transport Identifier of VERSION. - + Automatic reference class for VersionRefStructure + + + 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 + + + @@ -181,11 +197,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for DataSourceRefStructure + + + 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 + + + @@ -201,7 +233,7 @@ Rail transport, Roads and Road transport - + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. @@ -209,7 +241,7 @@ Rail transport, Roads and Road transport - Nature of last modification: new, revise, delete, unchanged; + Nature of last modification: new, revise, delete, unchanged. diff --git a/xsd/netex_framework/netex_responsibility/netex_responsibilitySet_support.xsd b/xsd/netex_framework/netex_responsibility/netex_responsibilitySet_support.xsd index a89113a6e..98c984c6d 100644 --- a/xsd/netex_framework/netex_responsibility/netex_responsibilitySet_support.xsd +++ b/xsd/netex_framework/netex_responsibility/netex_responsibilitySet_support.xsd @@ -75,11 +75,27 @@ Rail transport, Roads and Road transport Identifier of a RESPONSIBILITY ROLE. - + Automatic reference class for ResponsibilityRoleRefStructure + + + 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 + + + @@ -113,11 +129,27 @@ Rail transport, Roads and Road transport Identifier of a CONTRACT. - + Automatic reference class for ContractRefStructure + + + 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_responsibility_support.xsd b/xsd/netex_framework/netex_responsibility/netex_responsibility_support.xsd index 52f3d55c3..5cf2cfef3 100644 --- a/xsd/netex_framework/netex_responsibility/netex_responsibility_support.xsd +++ b/xsd/netex_framework/netex_responsibility/netex_responsibility_support.xsd @@ -83,11 +83,27 @@ Rail transport, Roads and Road transport Identifier of a RESPONSIBILITY SET. - + Automatic reference class for ResponsibilitySetRefStructure + + + 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 + + + @@ -196,11 +212,27 @@ Rail transport, Roads and Road transport Identifier of an TYPE OF RESPONSIBILITY ROLE. - + Automatic reference class for TypeOfResponsibilityRoleRefStructure + + + 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 + + + @@ -239,11 +271,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for OrganisationRefStructure + + + 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 + + + @@ -263,6 +316,27 @@ Rail transport, Roads and Road transport Identifier of an ORGANISATION. + + + 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 + + + @@ -298,11 +372,27 @@ Rail transport, Roads and Road transport Identifier of an ORGANISATION PART. - + Automatic reference class for OrganisationPartRefStructure + + + 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 + + + @@ -324,11 +414,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for BrandingRefStructure + + + 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_responsibility/netex_validityCondition_support.xsd b/xsd/netex_framework/netex_responsibility/netex_validityCondition_support.xsd index cbcef466e..379567cf9 100644 --- a/xsd/netex_framework/netex_responsibility/netex_validityCondition_support.xsd +++ b/xsd/netex_framework/netex_responsibility/netex_validityCondition_support.xsd @@ -78,11 +78,27 @@ Rail transport, Roads and Road transport Identifier of a VALIDITY CONDITION. - + Automatic reference class for ValidityConditionRefStructure + + + 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 + + + @@ -238,11 +254,27 @@ Rail transport, Roads and Road transport Identifier of a VALIDITY TRIGGER. - + Automatic reference class for ValidityTriggerRefStructure + + + 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 + + + @@ -281,11 +313,27 @@ Rail transport, Roads and Road transport Identifier of a VALIDITY RULE PARAMETER. - + Automatic reference class for ValidityRuleParameterRefStructure + + + 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_versionFrame_support.xsd b/xsd/netex_framework/netex_responsibility/netex_versionFrame_support.xsd index 1ae62f088..433698274 100644 --- a/xsd/netex_framework/netex_responsibility/netex_versionFrame_support.xsd +++ b/xsd/netex_framework/netex_responsibility/netex_versionFrame_support.xsd @@ -70,11 +70,27 @@ Rail transport, Roads and Road transport - + Automatic reference class for VersionFrameRefStructure + + + 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 + + + @@ -142,11 +158,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF FRAME. - + Automatic reference class for TypeOfFrameRefStructure + + + 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 + + + @@ -173,11 +205,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF VALIDITY. - + Automatic reference class for TypeOfValidityRefStructure + + + 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_reusableComponents/netex_address_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_address_support.xsd index 12fb6048e..715762863 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_address_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_address_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of an ADDRESS. - + Automatic reference class for AddressRefStructure + + + 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 + + + @@ -112,11 +128,27 @@ Rail transport, Roads and Road transport Identifier of an AddressedPlace. - + Automatic reference class for AddressablePlaceRefStructure + + + 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 + + + @@ -143,6 +175,27 @@ Rail transport, Roads and Road transport Identifier of a ROAD ADDRESS. + + + 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 + + + @@ -168,11 +221,27 @@ Rail transport, Roads and Road transport Identifier of a POSTAL ADDRESS. - + Automatic reference class for PostalAddressRefStructure + + + 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_reusableComponents/netex_availabilityCondition_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_availabilityCondition_support.xsd index 1d55448ba..134d21cb7 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_availabilityCondition_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_availabilityCondition_support.xsd @@ -75,11 +75,27 @@ Rail transport, Roads and Road transport Identifier of an AVAILABILITY CONDITION. - + Automatic reference class for AvailabilityConditionRefStructure + + + 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_reusableComponents/netex_country_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_country_support.xsd index 792c1a8e0..d449150fd 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_country_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_country_support.xsd @@ -1383,7 +1383,13 @@ Rail transport, Roads and Road transport - + + + + Iso 3166-1 Two Character country code. + + + diff --git a/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd index e9b0c725b..3ae8599df 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_dayType_support.xsd @@ -91,11 +91,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for DayTypeRefStructure + + + 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 + + + @@ -134,11 +150,27 @@ Rail transport, Roads and Road transport Identifier of TIMEBANd. - + Automatic reference class for TimebandRefStructure + + + 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 + + + @@ -165,11 +197,27 @@ Rail transport, Roads and Road transport Identifier of GROUP OF TIMEBANDs. - + Automatic reference class for GroupOfTimebandsRefStructure + + + 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_reusableComponents/netex_deckPath_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_deckPath_support.xsd index d2f6e3587..e5944347e 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_deckPath_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_deckPath_support.xsd @@ -74,11 +74,27 @@ Rail transport, Roads and Road transport Identifier of a DECK PATH LINK. - + Automatic reference class for DeckPathLinkRefStructure + + + 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 + + + @@ -105,6 +121,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 + + + @@ -131,11 +168,27 @@ Rail transport, Roads and Road transport Identifier of a DECK PLACE IN SEQUENCE. - + Automatic reference class for DeckPlaceInSequenceRefStructure + + + 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 + + + @@ -174,11 +227,27 @@ Rail transport, Roads and Road transport Identifier of a DECK NAVIGATION PATH. - + Automatic reference class for DeckNavigationPathRefStructure + + + 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_reusableComponents/netex_deckPlan_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_support.xsd index 59c133f86..f5bb25e4c 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_deckPlan_support.xsd @@ -100,11 +100,27 @@ Identifier of a DECK PLAN. - + Automatic reference class for DeckPlanRefStructure + + + 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 + + + @@ -153,11 +169,27 @@ Identifier of a DECK. - + Automatic reference class for DeckRefStructure + + + 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 + + + @@ -184,11 +216,27 @@ Identifier of referenced entity. - + Automatic reference class for DeckComponentRefStructure + + + 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 + + + @@ -215,11 +263,27 @@ Identifier of a DECK SPACE. - + Automatic reference class for DeckSpaceRefStructure + + + 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 + + + @@ -246,11 +310,27 @@ Identifier of a PASSENGER SPACE. - + Automatic reference class for PassengerSpaceRefStructure + + + 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 + + + @@ -305,11 +385,27 @@ Identifier of a OTHER DECK SPACE. - + Automatic reference class for OtherDeckSpaceRefStructure + + + 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 + + + @@ -336,11 +432,27 @@ Identifier of a DECK ENTRANCE. - + Automatic reference class for DeckEntranceRefStructure + + + 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 + + + @@ -423,11 +535,27 @@ Identifier of a PASSENGER ENTRANCE. - + Automatic reference class for PassengerEntranceRefStructure + + + 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 + + + @@ -454,11 +582,27 @@ Identifier of a DECK VEHICLE ENTRANCE. - + Automatic reference class for DeckVehicleEntranceRefStructure + + + 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 + + + @@ -485,11 +629,27 @@ Identifier of a OTHER DECK ENTRANCE. - + Automatic reference class for OtherDeckEntranceRefStructure + + + 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 + + + @@ -516,11 +676,27 @@ Identifier of a DECK ENTRANCE USAGE. - + Automatic reference class for DeckEntranceUsageRefStructure + + + 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 + + + @@ -569,11 +745,27 @@ Identifier of a DECK ENTRANCE COUPLE. - + Automatic reference class for DeckEntranceCoupleRefStructure + + + 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 + + + @@ -600,11 +792,27 @@ Identifier of a DECK WINDOW. - + Automatic reference class for DeckWindowRefStructure + + + 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 + + + @@ -663,11 +871,27 @@ Identifier of a DECK LEVEL. - + Automatic reference class for DeckLevelRefStructure + + + 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 + + + @@ -694,11 +918,27 @@ Identifier of a DECK SPACE CAPACITY. - + Automatic reference class for DeckSpaceCapacityRefStructure + + + 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 + + + @@ -725,6 +965,27 @@ Reference to a TYPE OF DECK SPACE PROFILE. + + + 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 + + + @@ -751,11 +1012,27 @@ Reference to a TYPE OF DECK ENTRANCE. - + Automatic reference class for TypeOfDeckEntranceRefStructure + + + 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 + + + @@ -782,11 +1059,27 @@ Reference to a TYPE OF DECK VEHICLE ENTRANCE USAGE. - + Automatic reference class for TypeOfDeckEntranceUsageRefStructure + + + 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_reusableComponents/netex_equipmentVehiclePassenger_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_equipmentVehiclePassenger_support.xsd index ca1016379..758b4fd6d 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_equipmentVehiclePassenger_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_equipmentVehiclePassenger_support.xsd @@ -79,11 +79,27 @@ Rail transport, Roads and Road transport Identifier of a POINT. - + Automatic reference class for VehicleEquipmentRefStructure + + + 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 + + + @@ -110,11 +126,27 @@ Rail transport, Roads and Road transport Identifier of a POINT. - + Automatic reference class for AccessVehicleEquipmentRefStructure + + + 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 + + + @@ -141,6 +173,27 @@ Rail transport, Roads and Road transport Identifier of a POINT. + + + 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 + + + @@ -160,6 +213,27 @@ Rail transport, Roads and Road transport Identifier of a POINT. + + + 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 + + + @@ -198,11 +272,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF WHEELCHAIR. - + Automatic reference class for TypeOfWheelchairRefStructure + + + 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_reusableComponents/netex_equipment_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_equipment_support.xsd index 7c158aec5..18e7a59cf 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_equipment_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_equipment_support.xsd @@ -77,11 +77,27 @@ Rail transport, Roads and Road transport Identifier of an EQUIPMENT. - + Automatic reference class for EquipmentRefStructure + + + 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 + + + @@ -102,11 +118,27 @@ Rail transport, Roads and Road transport Identifier of an INSTALLED EQUIPMENT. - + Automatic reference class for InstalledEquipmentRefStructure + + + 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 + + + @@ -139,11 +171,27 @@ Rail transport, Roads and Road transport Reference to identifier of a TYPE OF EQUIPMENT. - + Automatic reference class for TypeOfEquipmentRefStructure + + + 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 + + + @@ -170,11 +218,27 @@ Rail transport, Roads and Road transport Identifier of an EQUIPMENT POSITION. - + Automatic reference class for EquipmentPositionRefStructure + + + 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 + + + @@ -201,11 +265,27 @@ Rail transport, Roads and Road transport Identifier of an EQUIPMENT PLACE. - + Automatic reference class for EquipmentPlaceRefStructure + + + 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 + + + @@ -232,11 +312,27 @@ Rail transport, Roads and Road transport Identifier of a POINT. - + Automatic reference class for PassengerEquipmentRefStructure + + + 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 + + + @@ -257,11 +353,27 @@ Rail transport, Roads and Road transport Identifier of a PLACE EQUIPMENT. - + Automatic reference class for PlaceEquipmentRefStructure + + + 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_reusableComponents/netex_facility_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_facility_support.xsd index 06eb36bbe..38ee4f70d 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_facility_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_facility_support.xsd @@ -880,6 +880,27 @@ Rail transport, Roads and Road transport Identifier of a FACILITY. + + + 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 + + + @@ -906,11 +927,27 @@ Rail transport, Roads and Road transport Identifier of a FACILITY. - + Automatic reference class for FacilitySetRefStructure + + + 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 + + + @@ -931,11 +968,27 @@ Rail transport, Roads and Road transport Identifier of a FACILITY. - + Automatic reference class for SiteFacilitySetRefStructure + + + 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 + + + @@ -968,11 +1021,27 @@ Rail transport, Roads and Road transport Identifier of a FACILITY SET. - + Automatic reference class for ServiceFacilitySetRefStructure + + + 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 + + + @@ -999,11 +1068,27 @@ Rail transport, Roads and Road transport Identifier of a FACILITY. - + Automatic reference class for AccommodationRefStructure + + + 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 + + + @@ -1024,11 +1109,27 @@ Rail transport, Roads and Road transport Identifier of a FACILITY. - + Automatic reference class for OnboardStayRefStructure + + + 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 + + + @@ -1073,11 +1174,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF FACILITY. - + Automatic reference class for TypeOfFacilityRefStructure + + + 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_reusableComponents/netex_modeOfOperation_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_modeOfOperation_support.xsd index a98c98804..1e505430e 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_modeOfOperation_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_modeOfOperation_support.xsd @@ -78,11 +78,27 @@ Rail transport, Roads and Road transport Identifier of a MODE OF OPERATION. - + Automatic reference class for ModeOfOperationRefStructure + + + 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,6 +125,27 @@ Rail transport, Roads and Road transport Identifier of a CONVENTIONAL MODE OF OPERATION. + + + 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 + + + @@ -135,6 +172,27 @@ Rail transport, Roads and Road transport Identifier of a SCHEDULED MODE OF OPERATION. + + + 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 + + + @@ -170,6 +228,27 @@ Rail transport, Roads and Road transport Identifier of a FLEXIBLE MODE OF OPERATION. + + + 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 + + + @@ -206,11 +285,27 @@ Rail transport, Roads and Road transport Identifier of a ALTERNATIVE MODE OF OPERATION. - + Automatic reference class for AlternativeModeOfOperationRefStructure + + + 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 + + + @@ -237,6 +332,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE RENTAL MODE OF OPERATION. + + + 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 + + + @@ -272,6 +388,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE SHARING MODE OF OPERATION. + + + 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 + + + @@ -308,6 +445,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE POOLING MODE OF OPERATION. + + + 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 + + + @@ -349,11 +507,27 @@ Rail transport, Roads and Road transport Identifier of a PERSONAL MODE OF OPERATION. - + Automatic reference class for PersonalModeOfOperationRefStructure + + + 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 + + + @@ -393,11 +567,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF MODE OF OPERATION. - + Automatic reference class for TypeOfModeOfOperationRefStructure + + + 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_reusableComponents/netex_mode_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_mode_support.xsd index 7291c84be..e6a3926d9 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_mode_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_mode_support.xsd @@ -339,11 +339,27 @@ Rail transport, Roads and Road transport Identifier of MODe. - + Automatic reference class for OpenTransportModeRefStructure + + + 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 + + + @@ -370,11 +386,27 @@ Rail transport, Roads and Road transport Identifier of SUBMODe. - + Automatic reference class for SubmodeRefStructure + + + 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_reusableComponents/netex_nm_chargingEquipmentProfile_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_nm_chargingEquipmentProfile_support.xsd index aaba834e8..d8895bcd4 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_nm_chargingEquipmentProfile_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_nm_chargingEquipmentProfile_support.xsd @@ -74,11 +74,27 @@ Rail transport, Roads and Road transport Identifier of a RECHARGING EQUIPMENT PROFILE. - + Automatic reference class for RechargingEquipmentProfileRefStructure + + + 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_reusableComponents/netex_nm_equipmentEnergy_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_nm_equipmentEnergy_support.xsd index d7bd20df5..d765daa13 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_nm_equipmentEnergy_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_nm_equipmentEnergy_support.xsd @@ -94,11 +94,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE CHARGING EQUIPMENT. - + Automatic reference class for VehicleChargingEquipmentRefStructure + + + 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 + + + @@ -125,11 +141,27 @@ Rail transport, Roads and Road transport Identifier of a REFUELLING EQUIPMENT. - + Automatic reference class for RefuellingEquipmentRefStructure + + + 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 + + + @@ -156,11 +188,27 @@ Rail transport, Roads and Road transport Identifier of a BATTERY EQUIPMENT. - + Automatic reference class for BatteryEquipmentRefStructure + + + 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 + + + @@ -187,11 +235,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF BATTERY CHEMISTRY. - + Automatic reference class for TypeOfBatteryChemistryRefStructure + + + 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 +282,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF PLUG. - + Automatic reference class for TypeOfPlugRefStructure + + + 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_reusableComponents/netex_nm_fleetEquipment_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_nm_fleetEquipment_support.xsd index 0e04cfc72..da3cb1d0e 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_nm_fleetEquipment_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_nm_fleetEquipment_support.xsd @@ -80,11 +80,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for VehicleModelProfileRefStructure + + + 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 CarModelProfileRefStructure + + + 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 + + + @@ -142,11 +174,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for CycleModelProfileRefStructure + + + 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_reusableComponents/netex_nm_fleet_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_support.xsd index c4fc558db..9842f0d14 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_nm_fleet_support.xsd @@ -91,11 +91,27 @@ Rail transport, Roads and Road transport Identifier of a FLEET. - + Automatic reference class for FleetRefStructure + + + 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 + + + @@ -122,11 +138,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF FLEET. - + Automatic reference class for TypeOfFleetRefStructure + + + 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_reusableComponents/netex_notice_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_notice_support.xsd index 90b9aef5e..daf81de91 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_notice_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_notice_support.xsd @@ -78,11 +78,27 @@ Rail transport, Roads and Road transport Identifier of a NOTICE. - + Automatic reference class for NoticeRefStructure + + + 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 + + + @@ -104,6 +120,27 @@ Rail transport, Roads and Road transport Identifier of a NOTICE ASSIGNMENT. + + + 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,11 +181,27 @@ Rail transport, Roads and Road transport Identifier of a NOTICE DELIVERY VARIANT. - + Automatic reference class for DeliveryVariantRefStructure + + + 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 + + + @@ -175,11 +228,27 @@ Rail transport, Roads and Road transport Identifier of a NOTICE. - + Automatic reference class for TypeOfNoticeRefStructure + + + 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 + + + @@ -206,11 +275,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF DELVIERY VARIANT. - + Automatic reference class for TypeOfDeliveryVariantRefStructure + + + 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_reusableComponents/netex_otherOrganisation_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_support.xsd index 51f762842..f291af070 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_otherOrganisation_support.xsd @@ -74,11 +74,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for OtherOrganisationRefStructure + + + 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 + + + @@ -105,11 +121,27 @@ Rail transport, Roads and Road transport Identifier of TRAVEL AGENT entity. - + Automatic reference class for TravelAgentRefStructure + + + 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 + + + @@ -152,11 +184,27 @@ Rail transport, Roads and Road transport Identifier of SERVICED ORGANISATION entity. - + Automatic reference class for ServicedOrganisationRefStructure + + + 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 + + + @@ -183,11 +231,27 @@ Rail transport, Roads and Road transport Identifier of MANAGEMENT AGENT entity. - + Automatic reference class for ManagementAgentRefStructure + + + 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 + + + @@ -214,11 +278,27 @@ Rail transport, Roads and Road transport Identifier of GENERAL ORGANISATION entity. - + Automatic reference class for GeneralOrganisationRefStructure + + + 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_reusableComponents/netex_schematicMap_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_schematicMap_support.xsd index 9dbfa811c..7898940d9 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_schematicMap_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_schematicMap_support.xsd @@ -75,11 +75,27 @@ Rail transport, Roads and Road transport Identifier of a SCHEMATIC MAP. - + Automatic reference class for SchematicMapRefStructure + + + 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 + + + @@ -106,6 +122,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 + + + diff --git a/xsd/netex_framework/netex_reusableComponents/netex_seatingPlan_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_seatingPlan_support.xsd index f46347e25..fc60b64f4 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_seatingPlan_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_seatingPlan_support.xsd @@ -102,11 +102,27 @@ Identifier of a SPOT ROW. - + Automatic reference class for SpotRowRefStructure + + + 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 + + + @@ -145,11 +161,27 @@ Identifier of a SPOT COLUMN. - + Automatic reference class for SpotColumnRefStructure + + + 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 +208,27 @@ Identifier of referenced entity. - + Automatic reference class for OnboardSpaceRefStructure + + + 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 + + + @@ -219,11 +267,27 @@ Identifier of referenced entity. - + Automatic reference class for LocatableSpotRefStructure + + + 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 + + + @@ -276,11 +340,27 @@ Identifier of a PASSENGER SPOT. - + Automatic reference class for PassengerSpotRefStructure + + + 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 + + + @@ -307,11 +387,27 @@ Identifier of a PASSENGER VEHICLE SPOT. - + Automatic reference class for PassengerVehicleSpotRefStructure + + + 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 + + + @@ -338,11 +434,27 @@ Identifier of a LUGGAGE SPOT. - + Automatic reference class for LuggageSpotRefStructure + + + 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 + + + @@ -369,11 +481,27 @@ Reference to a TYPE OF LOCATABLE SPOT. - + Automatic reference class for TypeOfLocatableSpotRefStructure + + + 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_reusableComponents/netex_securityList_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_securityList_support.xsd index 152977e73..41fb6b8ec 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_securityList_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_securityList_support.xsd @@ -92,11 +92,27 @@ Rail transport, Roads and Road transport Identifier of a SECURITY LIST.. - + Automatic reference class for SecurityListRefStructure + + + 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 a BLACKLIST. - + Automatic reference class for BlacklistRefStructure + + + 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 + + + @@ -178,11 +210,27 @@ Rail transport, Roads and Road transport Identifier of a WHITELIST. - + Automatic reference class for WhitelistRefStructure + + + 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 + + + @@ -222,11 +270,27 @@ Rail transport, Roads and Road transport Identifier of a SECURITY LISTING. - + Automatic reference class for SecurityListingRefStructure + + + 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 + + + @@ -265,11 +329,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF SECURITY LIST. - + Automatic reference class for TypeOfSecurityListRefStructure + + + 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_reusableComponents/netex_sensorEquipment_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_support.xsd index 4ac5767a2..06861f3f5 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_sensorEquipment_support.xsd @@ -82,11 +82,27 @@ Identifier of a SENSOR EQUIPMENT. - + Automatic reference class for SensorEquipmentRefStructure + + + 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 + + + @@ -123,11 +139,27 @@ Identifier of a SPOT SENSOR. - + Automatic reference class for SpotSensorRefStructure + + + 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 + + + @@ -154,11 +186,27 @@ Identifier of a ENTRANCE SENSOR. - + Automatic reference class for EntranceSensorRefStructure + + + 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 +233,27 @@ Identifier of a SENSOR IN SPOT. - + Automatic reference class for SensorInSpotRefStructure + + + 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 + + + @@ -216,11 +280,27 @@ Identifier of a SENSOR IN ENTRANCE. - + Automatic reference class for SensorInEntranceRefStructure + + + 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_reusableComponents/netex_serviceCalendar_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_serviceCalendar_support.xsd index 311088a58..f51364270 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_serviceCalendar_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_serviceCalendar_support.xsd @@ -76,11 +76,27 @@ Rail transport, Roads and Road transport Identifier of a SERVICE CALENDAR. - + Automatic reference class for ServiceCalendarRefStructure + + + 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 + + + @@ -107,11 +123,27 @@ Rail transport, Roads and Road transport Identifier of an OPERATING DAY. - + Automatic reference class for OperatingDayRefStructure + + + 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 + + + @@ -138,11 +170,27 @@ Rail transport, Roads and Road transport Identifier of an OPERATING PERIOD. - + Automatic reference class for OperatingPeriodRefStructure + + + 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 + + + @@ -169,6 +217,27 @@ Rail transport, Roads and Road transport Identifier of an OPERATING PERIOD. + + + 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 + + + @@ -195,11 +264,27 @@ Rail transport, Roads and Road transport Identifier of a DAY TYPE ASSIGNMENT. - + Automatic reference class for DayTypeAssignmentRefStructure + + + 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_reusableComponents/netex_serviceRestrictions_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_serviceRestrictions_support.xsd index fb5be38aa..2b63fd836 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_serviceRestrictions_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_serviceRestrictions_support.xsd @@ -103,11 +103,27 @@ Rail transport, Roads and Road transport Identifier of a CLASS OF USE. - + Automatic reference class for ClassOfUseRefStructure + + + 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 + + + @@ -697,11 +713,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF PAYMENT METHOD. - + Automatic reference class for TypeOfPaymentMethodRefStructure + + + 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 + + + @@ -800,11 +832,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF SERVICE. - + Automatic reference class for TypeOfServiceRefStructure + + + 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 + + + @@ -844,11 +892,27 @@ See ERA B.4 7037 Characteristic description code. Reference to a TYPE OF PRODUCT CATEGORY. - + Automatic reference class for TypeOfProductCategoryRefStructure + + + 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 + + + @@ -887,11 +951,27 @@ See ERA B.4 7037 Characteristic description code. Identifier of a BOOKING ARRANGEMENT. - + Automatic reference class for BookingArrangementRefStructure + + + 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 + + + @@ -918,11 +998,27 @@ See ERA B.4 7037 Characteristic description code. Identifier of a SERVICE BOOKING ARRANGEMENT. - + Automatic reference class for ServiceBookingArrangementRefStructure + + + 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_reusableComponents/netex_spotAffinity_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_spotAffinity_support.xsd index ec7f38926..c6f84b2ec 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_spotAffinity_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_spotAffinity_support.xsd @@ -81,11 +81,27 @@ Identifier of referenced entity. - + Automatic reference class for SpotAffinityRefStructure + + + 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_reusableComponents/netex_spotEquipment_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_support.xsd index 86128d05b..7c3faa392 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_spotEquipment_support.xsd @@ -79,11 +79,27 @@ Identifier of a SPOT EQUIPMENT. - + Automatic reference class for SpotEquipmentRefStructure + + + 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 + + + @@ -110,11 +126,27 @@ Identifier of a SEAT EQUIPMENT. - + Automatic reference class for SeatEquipmentRefStructure + + + 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 + + + @@ -141,11 +173,27 @@ Identifier of a BED EQUIPMENT. - + Automatic reference class for BedEquipmentRefStructure + + + 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 + + + @@ -188,11 +236,27 @@ Identifier of a LUGGAGE SPOT EQUIPMENT. - + Automatic reference class for LuggageSpotEquipmentRefStructure + + + 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_reusableComponents/netex_topographicPlace_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_topographicPlace_support.xsd index e1c9561c6..30582428b 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_topographicPlace_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_topographicPlace_support.xsd @@ -168,11 +168,27 @@ Rail transport, Roads and Road transport Identifier of a TOPOGRAPHIC PLACE. - + Automatic reference class for TopographicPlaceRefStructure + + + 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 + + + @@ -216,11 +232,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF PLACEs. - + Automatic reference class for GroupOfPlacesRefStructure + + + 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 + + + @@ -248,11 +280,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for TopographicProjectionRefStructure + + + 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_reusableComponents/netex_trainElementType_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_support.xsd index b74957d94..d2ab8b2d1 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_trainElementType_support.xsd @@ -80,11 +80,27 @@ Rail transport, Roads and Road transport Identifier of a POWERED TRAIN. - + Automatic reference class for PoweredTrainRefStructure + + + 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 a UNPOWERED TRAIN. - + Automatic reference class for UnpoweredTrainRefStructure + + + 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 + + + @@ -142,11 +174,27 @@ Rail transport, Roads and Road transport Identifier of a TRACTIVE ELEMENT TYPE. - + Automatic reference class for TractiveElementTypeRefStructure + + + 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 + + + @@ -173,11 +221,27 @@ Rail transport, Roads and Road transport Identifier of a TRAILING ELEMENT TYPE. - + Automatic reference class for TrailingElementTypeRefStructure + + + 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_reusableComponents/netex_trainElement_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_trainElement_support.xsd index 7ab1d6807..f58bdc587 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_trainElement_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_trainElement_support.xsd @@ -82,11 +82,27 @@ Rail transport, Roads and Road transport Identifier of a TRAIN. - + Automatic reference class for TrainRefStructure + + + 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,11 +134,27 @@ Rail transport, Roads and Road transport Identifier of a COMPOUND TRAIN. - + Automatic reference class for CompoundTrainRefStructure + + + 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 + + + @@ -149,11 +181,27 @@ Rail transport, Roads and Road transport Identifier of a TRAIN IN COMPOUND TRAIN. - + Automatic reference class for TrainInCompoundTrainRefStructure + + + 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 +233,27 @@ Rail transport, Roads and Road transport Identifier of a TRAIN ELEMENT TYPE. - + Automatic reference class for TrainElementTypeRefStructure + + + 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 + + + @@ -236,11 +300,27 @@ Rail transport, Roads and Road transport Identifier of TRAIN COMPONENT. - + Automatic reference class for TrainComponentRefStructure + + + 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_reusableComponents/netex_transportOrganisation_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd index 90b85d807..6952a71af 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_transportOrganisation_support.xsd @@ -67,7 +67,34 @@ Rail transport, Roads and Road transport Type for a reference to all TRANSPORT ORGANISATIONs. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -114,11 +141,27 @@ Rail transport, Roads and Road transport Identifier of an TRANSPORT ORGANISATION. - + Automatic reference class for TransportOrganisationRefStructure + + + 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 + + + @@ -133,7 +176,34 @@ Rail transport, Roads and Road transport Type for a reference to all TRANSPORT ORGANISATIONs. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -158,11 +228,27 @@ Rail transport, Roads and Road transport Identifier of an OPERATOR. - + Automatic reference class for OperatorRefStructure + + + 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,7 +262,34 @@ Rail transport, Roads and Road transport Type for a reference to all OPERATORss. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -201,7 +314,34 @@ 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 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 +356,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for AuthorityRefStructure + + + 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 + + + @@ -234,7 +390,34 @@ Rail transport, Roads and Road transport Type for a reference to all AUTHORITIES. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -281,11 +464,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF OPERATORs. - + Automatic reference class for GroupOfOperatorsRefStructure + + + 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 + + + @@ -312,11 +511,27 @@ Rail transport, Roads and Road transport Identifier of an OPERATIONAL CONTEXT. - + Automatic reference class for OperationalContextRefStructure + + + 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 + + + @@ -355,11 +570,27 @@ Rail transport, Roads and Road transport Identifier of an OPERATING DEPARTMENT. - + Automatic reference class for OperatingDepartmentRefStructure + + + 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 + + + @@ -386,11 +617,27 @@ Rail transport, Roads and Road transport Identifier of a CONTROL CENTRE. - + Automatic reference class for ControlCentreRefStructure + + + 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 + + + @@ -417,11 +664,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for TransportAdministrativeZoneRefStructure + + + 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_reusableComponents/netex_vehicleSeating_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_vehicleSeating_support.xsd index c83d0ca65..aa4aaf351 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_vehicleSeating_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_vehicleSeating_support.xsd @@ -80,6 +80,27 @@ Rail transport, Roads and Road transport Identifier of a PASSENGER SEAT + + + 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_reusableComponents/netex_vehicleType_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_support.xsd index 355457cea..01bc2986c 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_vehicleType_support.xsd @@ -116,11 +116,27 @@ Rail transport, Roads and Road transport Identifier of a TRANSPORT TYPE. - + Automatic reference class for TransportTypeRefStructure + + + 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 VEHICLE TYPE. - + Automatic reference class for VehicleTypeRefStructure + + + 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 a VEHICLE TYPE. - + Automatic reference class for SimpleVehicleTypeRefStructure + + + 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 Identifier of referenced entity. - + Automatic reference class for VehicleRequirementRefStructure + + + 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 Identifier of a PASSENGER CARRYING REQUIREMENT. - + Automatic reference class for PassengerCarryingRequirementRefStructure + + + 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 + + + @@ -295,11 +375,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE. - + Automatic reference class for PassengerCapacityRefStructure + + + 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 + + + @@ -326,11 +422,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE. - + Automatic reference class for PassengerVehicleCapacityRefStructure + + + 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 + + + @@ -357,11 +469,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for VehicleManoeuvringRequirementRefStructure + + + 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 + + + @@ -388,11 +516,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for FacilityRequirementRefStructure + + + 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 + + + @@ -419,11 +563,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE MODEL. - + Automatic reference class for VehicleModelRefStructure + + + 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 + + + @@ -462,11 +622,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE EQUIPMENT PROFILE. - + Automatic reference class for VehicleEquipmentProfileRefStructure + + + 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 + + + @@ -681,6 +857,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 + + + @@ -707,11 +904,27 @@ Rail transport, Roads and Road transport Reference to a PURPOSE OF EQUIPMENT PROFILE. - + Automatic reference class for PurposeOfEquipmentProfileRefStructure + + + 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 + + + @@ -750,11 +963,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE EQUIPMENT PROFILE MEMBER. - + Automatic reference class for VehicleEquipmentProfileMemberRefStructure + + + 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 + + + @@ -781,11 +1010,27 @@ Rail transport, Roads and Road transport Reference to an ACCEPTED DRIVER PERMIT. - + Automatic reference class for AcceptedDriverPermitRefStructure + + + 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 + + + @@ -812,11 +1057,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF DRIVER PERMIT. - + Automatic reference class for TypeOfDriverPermitRefStructure + + + 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_reusableComponents/netex_vehicle_support.xsd b/xsd/netex_framework/netex_reusableComponents/netex_vehicle_support.xsd index 0a5812a6d..8e11cb047 100644 --- a/xsd/netex_framework/netex_reusableComponents/netex_vehicle_support.xsd +++ b/xsd/netex_framework/netex_reusableComponents/netex_vehicle_support.xsd @@ -91,11 +91,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE. - + Automatic reference class for VehicleRefStructure + + + 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 + + + @@ -134,11 +150,27 @@ Rail transport, Roads and Road transport Identifier of a ROLLING STOCK ITEM. - + Automatic reference class for RollingStockItemRefStructure + + + 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 + + + @@ -165,11 +197,27 @@ Rail transport, Roads and Road transport Identifier of a TRACTIVE ROLLING STOCK ITEM. - + Automatic reference class for TractiveRollingStockItemRefStructure + + + 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 + + + @@ -196,11 +244,27 @@ Rail transport, Roads and Road transport Identifier of a TRAILING ROLLING STOCK ITEM. - + Automatic reference class for TrailingRollingStockItemRefStructure + + + 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 + + + @@ -239,11 +303,27 @@ Rail transport, Roads and Road transport Identifier of a ROLLING STOCK INVENTORY. - + Automatic reference class for RollingStockInventoryRefStructure + + + 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 + + + @@ -270,11 +350,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF ROLLING STOCK. - + Automatic reference class for TypeOfRollingStockRefStructure + + + 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_part_1/part1_frames/netex_infrastructureFrame_version.xsd b/xsd/netex_part_1/part1_frames/netex_infrastructureFrame_version.xsd index b0ccd1c53..c4e4a6bfa 100644 --- a/xsd/netex_part_1/part1_frames/netex_infrastructureFrame_version.xsd +++ b/xsd/netex_part_1/part1_frames/netex_infrastructureFrame_version.xsd @@ -80,11 +80,27 @@ Rail transport, Roads and Road transport Identifier of an INFRASTRUCTURE FRAME. - + Automatic reference class for InfrastructureFrameRefStructure + + + 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_part_1/part1_frames/netex_siteFrame_version.xsd b/xsd/netex_part_1/part1_frames/netex_siteFrame_version.xsd index 772340d7e..6488d7de2 100644 --- a/xsd/netex_part_1/part1_frames/netex_siteFrame_version.xsd +++ b/xsd/netex_part_1/part1_frames/netex_siteFrame_version.xsd @@ -91,11 +91,27 @@ Rail transport, Roads and Road transport - + Automatic reference class for SiteFrameRefStructure + + + 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_part_1/part1_ifopt/netex_assistanceBooking_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_assistanceBooking_support.xsd index 758a19541..5e229b64c 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_assistanceBooking_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_assistanceBooking_support.xsd @@ -82,11 +82,27 @@ Rail transport, Roads and Road transport Identifier of ASSISTANCE BOOKING SERVICE. - + Automatic reference class for AssistanceBookingServiceRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_checkConstraint_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_support.xsd index 85f2ff44d..951a7f325 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_checkConstraint_support.xsd @@ -80,11 +80,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF CONGESTION. - + Automatic reference class for TypeOfCongestionRefStructure + + + 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 a CHECK CONSTRAINT. - + Automatic reference class for CheckConstraintRefStructure + + + 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 + + + @@ -142,11 +174,27 @@ Rail transport, Roads and Road transport Identifier of a CHECK CONSTRAINT DELAY. - + Automatic reference class for CheckConstraintDelayRefStructure + + + 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 + + + @@ -173,11 +221,27 @@ Rail transport, Roads and Road transport Identifier of a CHECK CONSTRAINT THROUGHPUT. - + Automatic reference class for CheckConstraintThroughputRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_equipmentAccess_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentAccess_support.xsd index 8106721ab..07fc980d0 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentAccess_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentAccess_support.xsd @@ -90,11 +90,27 @@ Rail transport, Roads and Road transport Identifier of a ACCESS EQUIPMENT. - + Automatic reference class for AccessEquipmentRefStructure + + + 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 + + + @@ -121,11 +137,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING EQUIPMENT. - + Automatic reference class for EntranceEquipmentRefStructure + + + 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 + + + @@ -206,6 +238,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING EQUIPMENT. + + + 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 + + + @@ -232,6 +285,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING EQUIPMENT. + + + 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 + + + @@ -258,6 +332,27 @@ Rail transport, Roads and Road transport Identifier of a LIFT EQUIPMENT. + + + 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 + + + @@ -284,6 +379,27 @@ Rail transport, Roads and Road transport Identifier of a LIFT call EQUIPMENT. + + + 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 + + + @@ -310,6 +426,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING EQUIPMENT. + + + 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 + + + @@ -336,11 +473,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING EQUIPMENT. - + Automatic reference class for TravelatorEquipmentRefStructure + + + 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 + + + @@ -367,6 +520,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING EQUIPMENT. + + + 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 + + + @@ -393,11 +567,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING EQUIPMENT. - + Automatic reference class for StaircaseEquipmentRefStructure + + + 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 + + + @@ -424,11 +614,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING EQUIPMENT. - + Automatic reference class for RoughSurfaceRefStructure + + + 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 + + + @@ -455,6 +661,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING EQUIPMENT. + + + 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_part_1/part1_ifopt/netex_ifopt_equipmentParking_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentParking_support.xsd index 04966ba4e..d56f518d3 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentParking_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentParking_support.xsd @@ -84,11 +84,27 @@ Rail transport, Roads and Road transport Identifier of a CYCLE STORAGE EQUIPMENT. - + Automatic reference class for CycleStorageEquipmentRefStructure + + + 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 + + + @@ -146,11 +162,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE RELEASE EQUIPMENT. - + Automatic reference class for VehicleReleaseEquipmentRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_support.xsd index 15db73227..2998c4092 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentPassenger_support.xsd @@ -79,11 +79,27 @@ Rail transport, Roads and Road transport Identifier of a SANITARY FACILITY EQUIPMENT. - + Automatic reference class for SanitaryEquipmentRefStructure + + + 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 + + + @@ -110,11 +126,27 @@ Rail transport, Roads and Road transport Identifier of a PASSENGER SAFETY EQUIPMENT. - + Automatic reference class for PassengerSafetyEquipmentRefStructure + + + 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 + + + @@ -141,11 +173,27 @@ Rail transport, Roads and Road transport Identifier of a HELP POINT EQUIPMENT. - + Automatic reference class for HelpPointEquipmentRefStructure + + + 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 + + + @@ -172,11 +220,27 @@ Rail transport, Roads and Road transport Identifier of a BEACON EQUIPMENT. - + Automatic reference class for PassengerBeaconEquipmentRefStructure + + + 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 Identifier of a TICKETING EQUIPMENT. - + Automatic reference class for RubbishDisposalEquipmentRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_equipmentSigns_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentSigns_support.xsd index 186c81621..fb401db0d 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentSigns_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentSigns_support.xsd @@ -90,11 +90,27 @@ Rail transport, Roads and Road transport Identifier of a PLACE SIGN. - + Automatic reference class for PlaceSignRefStructure + + + 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 + + + @@ -121,11 +137,27 @@ Rail transport, Roads and Road transport Identifier of a GENERAL SIGN. - + Automatic reference class for GeneralSignRefStructure + + + 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 + + + @@ -152,11 +184,27 @@ Rail transport, Roads and Road transport Identifier of a HEADING SIGN. - + Automatic reference class for HeadingSignRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_equipmentTicketing_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentTicketing_support.xsd index cbebdc9d2..9ff6f89b9 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentTicketing_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentTicketing_support.xsd @@ -75,11 +75,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING EQUIPMENT. - + Automatic reference class for TicketingEquipmentRefStructure + + + 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,11 +134,27 @@ Rail transport, Roads and Road transport Identifier of a TICKET VALIDATOR. - + Automatic reference class for TicketValidatorEquipmentRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_equipmentWaiting_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentWaiting_support.xsd index 8accba5e7..e1f67d612 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentWaiting_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_equipmentWaiting_support.xsd @@ -79,11 +79,27 @@ Rail transport, Roads and Road transport Identifier of a SITE EQUIPMENT. - + Automatic reference class for SiteEquipmentRefStructure + + + 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 + + + @@ -110,11 +126,27 @@ Rail transport, Roads and Road transport Identifier of a WAITING EQUIPMENT. - + Automatic reference class for WaitingEquipmentRefStructure + + + 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 +168,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for WaitingRoomEquipmentRefStructure + + + 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 + + + @@ -167,6 +220,27 @@ Rail transport, Roads and Road transport Identifier of a LUGGAGE LOCKER EQUIPMENT. + + + 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 + + + @@ -231,11 +305,27 @@ Rail transport, Roads and Road transport Identifier of a SHELTER EQUIPMENT. - + Automatic reference class for ShelterEquipmentRefStructure + + + 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 + + + @@ -262,11 +352,27 @@ Rail transport, Roads and Road transport Identifier of a SEATING EQUIPMENT. - + Automatic reference class for SeatingEquipmentRefStructure + + + 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 + + + @@ -293,11 +399,27 @@ Rail transport, Roads and Road transport Identifier of a TROLLEY STAND EQUIPMENT. - + Automatic reference class for TrolleyStandEquipmentRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_flexibleStopPlace_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_flexibleStopPlace_support.xsd index 3455d4d08..3aedcc7e1 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 @@ -79,11 +79,27 @@ Rail transport, Roads and Road transport Identifier of a FLEXIBLE STOP PLACE. - + Automatic reference class for FlexibleStopPlaceRefStructure + + + 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 + + + @@ -122,11 +138,27 @@ Rail transport, Roads and Road transport Identifier of a FLIEXIBLE QUAY. - + Automatic reference class for FlexibleQuayRefStructure + + + 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 + + + @@ -153,11 +185,27 @@ Rail transport, Roads and Road transport Identifier of a FLEXIBLE AREa. - + Automatic reference class for FlexibleAreaRefStructure + + + 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 + + + @@ -184,11 +232,27 @@ Rail transport, Roads and Road transport Identifier of a HAIL AND RIDE AREA. - + Automatic reference class for HailAndRideAreaRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_localServiceCommercial_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_localServiceCommercial_support.xsd index e0aa83302..bc7379ffc 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_localServiceCommercial_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_localServiceCommercial_support.xsd @@ -78,11 +78,27 @@ Rail transport, Roads and Road transport Identifier of a COMMUNICATION SERVICE. - + Automatic reference class for CommunicationServiceRefStructure + + + 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 HIRE SERVICE. - + Automatic reference class for HireServiceRefStructure + + + 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 + + + @@ -161,11 +193,27 @@ Rail transport, Roads and Road transport Identifier of a MONEY SERVICE. - + Automatic reference class for MoneyServiceRefStructure + + + 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 + + + @@ -211,11 +259,27 @@ Rail transport, Roads and Road transport Identifier of a RETAIL SERVICE. - + Automatic reference class for RetailServiceRefStructure + + + 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 + + + @@ -263,11 +327,27 @@ Rail transport, Roads and Road transport Identifier of a CATERING SERVICE. - + Automatic reference class for CateringServiceRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_localService_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_localService_support.xsd index 151895b8d..c28c3b515 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_localService_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_localService_support.xsd @@ -69,11 +69,27 @@ Rail transport, Roads and Road transport Identifier of a POINT. - + Automatic reference class for LocalServiceRefStructure + + + 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 + + + @@ -106,11 +122,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING SERVICE. - + Automatic reference class for TicketingServiceRefStructure + + + 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 + + + @@ -137,11 +169,27 @@ Rail transport, Roads and Road transport Identifier of a ASSISTANCE SERVICE. - + Automatic reference class for AssistanceServiceRefStructure + + + 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 + + + @@ -168,11 +216,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER SERVICE. - + Automatic reference class for CustomerServiceRefStructure + + + 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 + + + @@ -199,11 +263,27 @@ Rail transport, Roads and Road transport Identifier of a COMPLAINTS SERVICE. - + Automatic reference class for ComplaintsServiceRefStructure + + + 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 + + + @@ -230,11 +310,27 @@ Rail transport, Roads and Road transport Identifier of a LOST PROPERTY SERVICE. - + Automatic reference class for LostPropertyServiceRefStructure + + + 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 + + + @@ -261,11 +357,27 @@ Rail transport, Roads and Road transport Identifier of a LUGGAGE SERVICE. - + Automatic reference class for LuggageServiceRefStructure + + + 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 + + + @@ -292,11 +404,27 @@ Rail transport, Roads and Road transport Identifier of a LEFT LUGGAGE SERVICE. - + Automatic reference class for LeftLuggageServiceRefStructure + + + 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 + + + @@ -323,11 +451,27 @@ Rail transport, Roads and Road transport Identifier of a MEETING POINT SERVICE. - + Automatic reference class for MeetingPointServiceRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_parking_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_parking_support.xsd index 134702e65..1a8d1d2ad 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_parking_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_parking_support.xsd @@ -107,11 +107,27 @@ Rail transport, Roads and Road transport Identifier of a PARKING. - + Automatic reference class for ParkingRefStructure + + + 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 + + + @@ -138,11 +154,27 @@ Rail transport, Roads and Road transport Identifier of a PARKING. - + Automatic reference class for ParkingCapacityRefStructure + + + 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 + + + @@ -168,11 +200,27 @@ Rail transport, Roads and Road transport Identifier of a PARKING PROPERTY. - + Automatic reference class for ParkingPropertiesRefStructure + + + 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 + + + @@ -199,6 +247,27 @@ Rail transport, Roads and Road transport Identifier of PARKING ENTRANCE. + + + 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 + + + @@ -215,7 +284,34 @@ 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 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 + + + + @@ -230,6 +326,27 @@ Rail transport, Roads and Road transport Identifier of PARKING ENTRANCE. + + + 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 + + + @@ -256,6 +373,27 @@ Rail transport, Roads and Road transport Identifier of a PARKING ENTRANCE FOR VEHICLES. + + + 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 + + + @@ -295,11 +433,27 @@ Rail transport, Roads and Road transport Identifier of a PARKING AREA. - + Automatic reference class for ParkingAreaRefStructure + + + 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 + + + @@ -338,11 +492,27 @@ Rail transport, Roads and Road transport Identifier of a PARKING BAY. - + Automatic reference class for ParkingBayRefStructure + + + 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 + + + @@ -672,11 +842,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF PARKING. - + Automatic reference class for TypeOfParkingRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_path_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_path_support.xsd index a41c53c97..a3a3ff1d6 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_path_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_path_support.xsd @@ -95,11 +95,27 @@ Rail transport, Roads and Road transport Identifier of a SITE PATH LINK. - + Automatic reference class for SitePathLinkRefStructure + + + 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 + + + @@ -131,6 +147,27 @@ Rail transport, Roads and Road transport Identifier of a SITE 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 + + + @@ -175,11 +212,27 @@ Rail transport, Roads and Road transport Identifier of a OFF SITE PATH LINK. - + Automatic reference class for OffSitePathLinkRefStructure + + + 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 + + + @@ -220,11 +273,27 @@ Rail transport, Roads and Road transport Identifier of a SITE NAVIGATION PATH. - + Automatic reference class for SiteNavigationPathRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_pointOfInterest_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_pointOfInterest_support.xsd index 66a0cab6b..01b3a1dc0 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 @@ -80,11 +80,27 @@ Rail transport, Roads and Road transport Identifier of a POINT OF INTEREST. - + Automatic reference class for PointOfInterestRefStructure + + + 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 + + + @@ -124,11 +140,27 @@ Rail transport, Roads and Road transport Identifier of a POINT OF INTEREST CLASSIFICATION. - + Automatic reference class for PointOfInterestClassificationRefStructure + + + 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 + + + @@ -161,6 +193,27 @@ Rail transport, Roads and Road transport Identifier of a POINT OF INTEREST CLASSIFICATION HIERARCHY. + + + 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 + + + @@ -239,6 +292,27 @@ Rail transport, Roads and Road transport Identifier of POINT OF INTEREST SPACE. + + + 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 + + + @@ -265,6 +339,27 @@ Rail transport, Roads and Road transport Identifier of an ENTRANCE. + + + 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 + + + @@ -291,11 +386,27 @@ Rail transport, Roads and Road transport Identifier of an VEHICLE ENTRANCE. - + Automatic reference class for PointOfInterestVehicleEntranceRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_serviceFeature_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_serviceFeature_support.xsd index 8577a896b..b4bb624b2 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_serviceFeature_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_serviceFeature_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF Service FEATURE. - + Automatic reference class for TypeOfServiceFeatureRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_site_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_site_support.xsd index fb171d3d5..aeabbf534 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 @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF SITEs. - + Automatic reference class for GroupOfSitesRefStructure + + + 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,11 +134,27 @@ Rail transport, Roads and Road transport Identifier of a SITE COMPONENT. - + Automatic reference class for SiteElementRefStructure + + + 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 + + + @@ -149,11 +181,27 @@ Rail transport, Roads and Road transport Identifier of a PLACE. - + Automatic reference class for SiteRefStructure + + + 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 + + + @@ -192,11 +240,27 @@ Rail transport, Roads and Road transport Identifier of a SERVICE SITE. - + Automatic reference class for ServiceSiteRefStructure + + + 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 + + + @@ -223,11 +287,27 @@ Rail transport, Roads and Road transport Identifier of a SITE COMPONENT. - + Automatic reference class for SiteComponentRefStructure + + + 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 +334,27 @@ Rail transport, Roads and Road transport Identifier of a LEVEL. - + Automatic reference class for LevelRefStructure + + + 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 + + + @@ -285,11 +381,27 @@ Rail transport, Roads and Road transport Identifier of a SITE STRUCTURE. - + Automatic reference class for SiteStructureRefStructure + + + 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 + + + @@ -328,11 +440,27 @@ Rail transport, Roads and Road transport Identifier of a LEVEL IN STRUCTURE. - + Automatic reference class for LevelInStructureRefStructure + + + 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 + + + @@ -359,11 +487,27 @@ Rail transport, Roads and Road transport Identifier of an ENTRANCE. - + Automatic reference class for EntranceRefStructure + + + 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 + + + @@ -402,11 +546,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE ENTRANCE. - + Automatic reference class for VehicleEntranceRefStructure + + + 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 + + + @@ -428,11 +588,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for AccessZoneRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_stopPlace_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_stopPlace_support.xsd index 91e93e050..362cba64f 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 @@ -87,11 +87,27 @@ Rail transport, Roads and Road transport Identifier of a STOP PLACE. - + Automatic reference class for StopPlaceRefStructure + + + 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 + + + @@ -130,11 +146,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF STOP PLACEs. - + Automatic reference class for GroupOfStopPlacesRefStructure + + + 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,11 +182,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for StopPlaceSpaceRefStructure + + + 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 + + + @@ -181,11 +234,27 @@ Rail transport, Roads and Road transport Identifier of a QUAY. - + Automatic reference class for QuayRefStructure + + + 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 + + + @@ -224,11 +293,27 @@ Rail transport, Roads and Road transport Identifier of an ACCESS SPACE. - + Automatic reference class for AccessSpaceRefStructure + + + 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 + + + @@ -267,11 +352,27 @@ Rail transport, Roads and Road transport Identifier of a BOARDING POSITION. - + Automatic reference class for BoardingPositionRefStructure + + + 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 + + + @@ -298,11 +399,27 @@ Rail transport, Roads and Road transport Identifier of a STOP PLACE ENTRANCE. - + Automatic reference class for StopPlaceEntranceRefStructure + + + 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 + + + @@ -329,11 +446,27 @@ Rail transport, Roads and Road transport Identifier of a STOP PLACE VEHICLE ENTRANCE. - + Automatic reference class for StopPlaceVehicleEntranceRefStructure + + + 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_part_1/part1_ifopt/netex_ifopt_vehicleStopping_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_ifopt_vehicleStopping_support.xsd index f1a4f293a..afdb372b7 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_ifopt_vehicleStopping_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_ifopt_vehicleStopping_support.xsd @@ -78,11 +78,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE STOPPING PLACE. - + Automatic reference class for VehicleStoppingPlaceRefStructure + + + 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 VEHICLE STOPPING POSITION. - + Automatic reference class for VehicleStoppingPositionRefStructure + + + 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 VEHICLE QUAY ALIGNMENT. - + Automatic reference class for VehicleQuayAlignmentRefStructure + + + 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 VEHICLE POSITION ALIGNMENT. - + Automatic reference class for VehiclePositionAlignmentRefStructure + + + 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_part_1/part1_ifopt/netex_rechargingPointAssignment_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_support.xsd index 5e89eecf6..fdd708f4f 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_rechargingPointAssignment_support.xsd @@ -79,11 +79,27 @@ Rail transport, Roads and Road transport Identifier of a RECHARGING BAY. - + Automatic reference class for RechargingBayRefStructure + + + 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 + + + @@ -110,11 +126,27 @@ Rail transport, Roads and Road transport Identifier of a RECHARGING STATION. - + Automatic reference class for RechargingStationRefStructure + + + 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 + + + @@ -141,11 +173,27 @@ Rail transport, Roads and Road transport Identifier of a RECHARGING POINT ASSIGNMENT. - + Automatic reference class for RechargingPointAssignmentRefStructure + + + 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_part_1/part1_ifopt/netex_taxiPlace_support.xsd b/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_support.xsd index f8c45ab7d..f851c2319 100644 --- a/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_support.xsd +++ b/xsd/netex_part_1/part1_ifopt/netex_taxiPlace_support.xsd @@ -93,11 +93,27 @@ Rail transport, Roads and Road transport Identifier of a TAXI RANK. - + Automatic reference class for TaxiRankRefStructure + + + 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 + + + @@ -124,11 +140,27 @@ Rail transport, Roads and Road transport Identifier of TAXI STAND. - + Automatic reference class for TaxiStandRefStructure + + + 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 + + + @@ -156,11 +188,27 @@ Rail transport, Roads and Road transport Identifier of a TAXI PARKING AREA. - + Automatic reference class for TaxiParkingAreaRefStructure + + + 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_part_1/part1_networkDescription/netex_activation_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_activation_support.xsd index 7156d49c3..ff6ee74d6 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_activation_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_activation_support.xsd @@ -83,11 +83,27 @@ Rail transport, Roads and Road transport Identifier of an ACTIVATED EQUIPMENT. - + Automatic reference class for ActivatedEquipmentRefStructure + + + 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 + + + @@ -114,11 +130,27 @@ Rail transport, Roads and Road transport Identifier of an ACTIVATION POINT. - + Automatic reference class for ActivationPointRefStructure + + + 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 + + + @@ -145,11 +177,27 @@ Rail transport, Roads and Road transport Identifier of BEACON POINT. - + Automatic reference class for BeaconPointRefStructure + + + 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 +224,27 @@ Rail transport, Roads and Road transport Identifier of a TRAFFIC CONTROL POINT. - + Automatic reference class for TrafficControlPointRefStructure + + + 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 + + + @@ -207,11 +271,27 @@ Rail transport, Roads and Road transport Identifier of an ACTIVATION LINK. - + Automatic reference class for ActivationLinkRefStructure + + + 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 +348,27 @@ Rail transport, Roads and Road transport Identifier of an ACTIVATION ASSIGNMENT. - + Automatic reference class for ActivationAssignmentRefStructure + + + 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 +411,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF ACTIVATION. - + Automatic reference class for TypeOfActivationRefStructure + + + 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_part_1/part1_networkDescription/netex_flexibleNetwork_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_flexibleNetwork_support.xsd index b5f06a756..3c2611eff 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_flexibleNetwork_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_flexibleNetwork_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of a LINE. - + Automatic reference class for FlexibleLineRefStructure + + + 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 + + + @@ -174,11 +190,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for FlexibleLinkPropertiesRefStructure + + + 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 + + + @@ -205,11 +237,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for FlexiblePointPropertiesRefStructure + + + 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_part_1/part1_networkDescription/netex_lineNetwork_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_lineNetwork_support.xsd index 078fd87e8..21cc1dd0d 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_lineNetwork_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_lineNetwork_support.xsd @@ -84,6 +84,27 @@ Rail transport, Roads and Road transport Identifier of a LINE 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 + + + @@ -140,11 +161,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF ENTITies. - + Automatic reference class for LineSectionRefStructure + + + 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 + + + @@ -197,11 +234,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for LineNetworkRefStructure + + + 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_part_1/part1_networkDescription/netex_line_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_line_support.xsd index b6be1105f..8e8696ee6 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_line_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_line_support.xsd @@ -52,11 +52,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF LINEs. - + Automatic reference class for GroupOfLinesRefStructure + + + 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 a LINE. - + Automatic reference class for LineRefStructure + + + 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 + + + @@ -203,11 +235,27 @@ Rail transport, Roads and Road transport Identifier of an ALLOWED LINE DIRECTION. - + Automatic reference class for AllowedLineDirectionRefStructure + + + 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 + + + @@ -234,11 +282,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for NetworkRefStructure + + + 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 + + + @@ -277,11 +341,27 @@ Rail transport, Roads and Road transport Identifier of a DESTINATION DISPLAY. - + Automatic reference class for DestinationDisplayRefStructure + + + 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 + + + @@ -320,11 +400,27 @@ Rail transport, Roads and Road transport Identifier of a DESTINATION DISPLAY. - + Automatic reference class for DestinationDisplayVariantRefStructure + + + 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 + + + @@ -375,11 +471,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF LINe. - + Automatic reference class for TypeOfLineRefStructure + + + 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_part_1/part1_networkDescription/netex_networkInfrastructure_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_networkInfrastructure_support.xsd index bdc89e6eb..04c8dc991 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_networkInfrastructure_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_networkInfrastructure_support.xsd @@ -82,11 +82,27 @@ Rail transport, Roads and ROAD transport Identifier of referenced entity. - + Automatic reference class for InfrastructurePointRefStructure + + + 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 + + + @@ -113,6 +129,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 + + + @@ -139,6 +176,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 + + + @@ -165,6 +223,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 + + + @@ -193,11 +272,27 @@ Rail transport, Roads and ROAD transport Identifier of referenced entity. - + Automatic reference class for InfrastructureLinkRefStructure + + + 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 + + + @@ -224,6 +319,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 + + + @@ -280,6 +396,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 + + + @@ -336,6 +473,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 + + + diff --git a/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_support.xsd index 274f40506..a2e3f38ee 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_networkRestriction_support.xsd @@ -87,11 +87,27 @@ Rail transport, Roads and ROAD transport Relative order of element. - + Automatic reference class for NetworkRestrictionRefStructure + + + 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,11 +134,27 @@ Rail transport, Roads and ROAD transport Identifier of referenced entity. - + Automatic reference class for VehicleTypeAtPointRefStructure + + + 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 + + + @@ -149,11 +181,27 @@ Rail transport, Roads and ROAD transport Identifier of referenced entity. - + Automatic reference class for InfrastructureLinkRestrictionRefStructure + + + 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 + + + @@ -180,11 +228,27 @@ Rail transport, Roads and ROAD transport Identifier of referenced entity. - + Automatic reference class for RestrictedManoeuvreRefStructure + + + 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 + + + @@ -211,11 +275,27 @@ Rail transport, Roads and ROAD transport Identifier of referenced entity. - + Automatic reference class for MeetingRestrictionRefStructure + + + 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 + + + @@ -242,11 +322,27 @@ Rail transport, Roads and ROAD transport Identifier of referenced entity. - + Automatic reference class for OvertakingPossibilityRefStructure + + + 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_part_1/part1_networkDescription/netex_routeInstruction_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_routeInstruction_support.xsd index 8fab0c326..51d851079 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_routeInstruction_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_routeInstruction_support.xsd @@ -82,11 +82,27 @@ Rail transport, Roads and Road transport Identifier of a ROUTE INSTRUCTION. - + Automatic reference class for RouteInstructionRefStructure + + + 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_part_1/part1_networkDescription/netex_route_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_route_support.xsd index 88f0e4217..c8e8e60d6 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_route_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_route_support.xsd @@ -98,11 +98,27 @@ Rail transport, Roads and Road transport Reference to a DIRECTION. - + Automatic reference class for DirectionRefStructure + + + 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 + + + @@ -129,11 +145,27 @@ Rail transport, Roads and Road transport Identifier of a ROUTE. - + Automatic reference class for RouteRefStructure + + + 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 + + + @@ -172,11 +204,27 @@ Rail transport, Roads and Road transport Identifier of a ROUTE POINT. - + Automatic reference class for RoutePointRefStructure + + + 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 + + + @@ -203,11 +251,27 @@ Rail transport, Roads and Road transport Identifier of a ROUTE LINK. - + Automatic reference class for RouteLinkRefStructure + + + 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 Identifier of a POINT IN SEQUENCE. - + Automatic reference class for PointOnRouteRefStructure + + + 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 + + + @@ -295,11 +375,27 @@ Rail transport, Roads and Road transport Identifier of a POINT IN SEQUENCE. - + Automatic reference class for ModeRestrictionAssessmentRefStructure + + + 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_part_1/part1_networkDescription/netex_timingPattern_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_timingPattern_support.xsd index 5fc2dd2f0..0e6dd9105 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_timingPattern_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_timingPattern_support.xsd @@ -84,11 +84,27 @@ Rail transport, Roads and Road transport Identifier of a TIMING PATTERN. - + Automatic reference class for TimingPatternRefStructure + + + 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 + + + @@ -115,11 +131,27 @@ Rail transport, Roads and Road transport Identifier of a TIMING POINT. - + Automatic reference class for TimingPointRefStructure + + + 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 +191,27 @@ Rail transport, Roads and Road transport Identifier of a TIMING LINK. - + Automatic reference class for TimingLinkRefStructure + + + 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 + + + @@ -220,11 +268,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF TIMING LINKs. - + Automatic reference class for GroupOfTimingLinksRefStructure + + + 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_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_support.xsd b/xsd/netex_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_support.xsd index 1218c5e1e..0e89523c1 100644 --- a/xsd/netex_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_support.xsd +++ b/xsd/netex_part_1/part1_networkDescription/netex_vehicleAndCrewPoint_support.xsd @@ -82,11 +82,27 @@ Rail transport, Roads and Road transport Identifier of a RELIEF POINT. - + Automatic reference class for ReliefPointRefStructure + + + 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 + + + @@ -113,11 +129,27 @@ Rail transport, Roads and Road transport Identifier of a PARKING POINT. - + Automatic reference class for ParkingPointRefStructure + + + 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 + + + @@ -145,11 +177,27 @@ Rail transport, Roads and Road transport Identifier of a GARAGE POINT. - + Automatic reference class for GaragePointRefStructure + + + 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 +224,27 @@ Rail transport, Roads and Road transport Identifier of GARAGE. - + Automatic reference class for GarageRefStructure + + + 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 + + + @@ -232,11 +296,27 @@ Rail transport, Roads and Road transport Identifier of a CREW BASE. - + Automatic reference class for CrewBaseRefStructure + + + 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_part_1/part1_tacticalPlanning/netex_commonSection_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_commonSection_support.xsd index 526e75c52..3f13e937c 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_commonSection_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_commonSection_support.xsd @@ -74,11 +74,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for CommonSectionRefStructure + + + 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_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd index 5baa05db1..22f81ecf3 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_fareZone_support.xsd @@ -87,11 +87,27 @@ Rail transport, Roads and Road transport Identifier of FARE SCHEDULED STOP POINT. - + Automatic reference class for FareScheduledStopPointRefStructure + + + 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 + + + @@ -130,11 +146,27 @@ Rail transport, Roads and Road transport Reference to a BORDER POINT. - + Automatic reference class for BorderPointRefStructure + + + 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 + + + @@ -161,11 +193,27 @@ Rail transport, Roads and Road transport Identifier of a FARE POINT IN JOURNEY PATTERN. - + Automatic reference class for FarePointInPatternRefStructure + + + 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 + + + @@ -203,11 +251,27 @@ Rail transport, Roads and Road transport Identifier of a FARE SECTION. - + Automatic reference class for FareSectionRefStructure + + + 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 + + + @@ -229,11 +293,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for FareZoneRefStructure + + + 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_part_1/part1_tacticalPlanning/netex_journeyPatternTimings_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPatternTimings_support.xsd index cf09da7f6..8dfe324e7 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPatternTimings_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPatternTimings_support.xsd @@ -83,6 +83,27 @@ Rail transport, Roads and Road transport Identifier of a JOURNEY PATTERN WAIT TIME. + + + 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 a JOURNEY PATTERN RUN TIME. - + Automatic reference class for JourneyPatternRunTimeRefStructure + + + 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 Identifier of a JOURNEY PATTERN LAYOVER. - + Automatic reference class for JourneyPatternLayoverRefStructure + + + 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,6 +224,27 @@ Rail transport, Roads and Road transport Identifier of a JOURNEY PATTERN HEADWAY. + + + 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_part_1/part1_tacticalPlanning/netex_journeyPattern_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPattern_support.xsd index dcb05f203..1420d18a8 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPattern_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyPattern_support.xsd @@ -94,11 +94,27 @@ Rail transport, Roads and Road transport Identifier of a JOURNEY PATTERN. - + Automatic reference class for JourneyPatternRefStructure + + + 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 + + + @@ -125,11 +141,27 @@ Rail transport, Roads and Road transport Identifier of a DEAD RUN JOURNEY PATTERN. - + Automatic reference class for DeadRunJourneyPatternRefStructure + + + 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 + + + @@ -156,11 +188,27 @@ Rail transport, Roads and Road transport Identifier of a POINT IN JOURNEY PATTERN. - + Automatic reference class for PointInJourneyPatternRefStructure + + + 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 + + + @@ -187,11 +235,27 @@ Rail transport, Roads and Road transport Identifier of a LINK IN JOURNEY PATTERN. - + Automatic reference class for LinkInJourneyPatternRefStructure + + + 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 +282,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF JOURNEY PATTERN. - + Automatic reference class for TypeOfJourneyPatternRefStructure + + + 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 + + + @@ -250,11 +330,27 @@ Rail transport, Roads and Road transport Identifier of a TIMING POINT. - + Automatic reference class for TimingPointInJourneyPatternRefStructure + + + 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 + + + @@ -281,11 +377,27 @@ Rail transport, Roads and Road transport Identifier of a TIMING LINK. - + Automatic reference class for TimingLinkInJourneyPatternRefStructure + + + 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_part_1/part1_tacticalPlanning/netex_journeyTiming_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyTiming_support.xsd index 9defd9705..df9f4306c 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyTiming_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_journeyTiming_support.xsd @@ -82,11 +82,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for JourneyTimingRefStructure + + + 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 + + + @@ -127,11 +143,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for HeadwayRefStructure + + + 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 +200,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for TurnaroundTimeLimitTimeRefStructure + + + 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 + + + @@ -195,11 +248,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for DefaultDeadRunRunTimeRefStructure + + + 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 + + + @@ -231,6 +300,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 + + + diff --git a/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_support.xsd index 18f4384f3..68392538c 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_passengerInformationEquipment_support.xsd @@ -74,11 +74,11 @@ Rail transport, Roads and Road transport - + Relative oOrder of ASSIGNMENT. @@ -89,11 +89,27 @@ Rail transport, Roads and Road transport Identifier of DISPLAY ASSIGNMENT. - + Automatic reference class for DisplayAssignmentRefStructure + + + 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 + + + @@ -130,11 +146,27 @@ Rail transport, Roads and Road transport Identifier of PASSENGER INFORMATION EQUIPMENT. - + Automatic reference class for PassengerInformationEquipmentRefStructure + + + 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 + + + @@ -161,11 +193,27 @@ Rail transport, Roads and Road transport Identifier of a LOGICAL DISPLAY. - + Automatic reference class for LogicalDisplayRefStructure + + + 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 + + + @@ -192,11 +240,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF PASSENGER INFORMATION EQUIPMENT. - + Automatic reference class for TypeOfPassengerInformationEquipmentRefStructure + + + 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_part_1/part1_tacticalPlanning/netex_routingConstraint_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_routingConstraint_support.xsd index 1afa5a3a6..40128b6e0 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_routingConstraint_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_routingConstraint_support.xsd @@ -83,11 +83,27 @@ Rail transport, Roads and Road transport Identifier of a SERVICE EXCLUSION. - + Automatic reference class for ServiceExclusionRefStructure + + + 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 + + + @@ -114,11 +130,27 @@ Rail transport, Roads and Road transport Identifier of a TRANSFER RESTRICTION. - + Automatic reference class for TransferRestrictionRefStructure + + + 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,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for RoutingConstraintZoneRefStructure + + + 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_part_1/part1_tacticalPlanning/netex_servicePattern_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_support.xsd index f14bd755d..e289ec470 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_servicePattern_support.xsd @@ -94,11 +94,27 @@ Rail transport, Roads and Road transport Identifier of SCHEDULED STOP POINT. - + Automatic reference class for ScheduledStopPointRefStructure + + + 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 + + + @@ -137,11 +153,27 @@ Rail transport, Roads and Road transport Identifier of CONNECTION link. - + Automatic reference class for ConnectionRefStructure + + + 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 + + + @@ -168,11 +200,27 @@ Rail transport, Roads and Road transport Identifier of a SERVICE LINK. - + Automatic reference class for ServiceLinkRefStructure + + + 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 + + + @@ -229,11 +277,27 @@ Rail transport, Roads and Road transport Identifier of referenced to a SERVICE PATTERN. - + Automatic reference class for ServicePatternRefStructure + + + 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 + + + @@ -260,11 +324,27 @@ Rail transport, Roads and Road transport Identifier of referenced to a SERVICE JOURNEY PATTERN. - + Automatic reference class for ServiceJourneyPatternRefStructure + + + 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 +395,27 @@ Rail transport, Roads and Road transport Identifier of referenced to a SERVICE JOURNEY PATTERN. - + Automatic reference class for StopPointInJourneyPatternRefStructure + + + 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 + + + @@ -346,6 +442,27 @@ Rail transport, Roads and Road transport Identifier of referenced to a SERVICE JOURNEY PATTERN. + + + 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 + + + @@ -374,11 +491,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for StopAreaRefStructure + + + 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_part_1/part1_tacticalPlanning/netex_siteConnection_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_siteConnection_support.xsd index 8af985715..4ab79b408 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_siteConnection_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_siteConnection_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of SITE CONNECTION link. - + Automatic reference class for SiteConnectionRefStructure + + + 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 + + + @@ -112,11 +128,27 @@ Rail transport, Roads and Road transport Identifier of DEFAULT TRANSFER. - + Automatic reference class for DefaultConnectionRefStructure + + + 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_part_1/part1_tacticalPlanning/netex_stopAssignment_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_support.xsd index 34eed654a..0f013df5a 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_stopAssignment_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of a STOP ASSIGNMENT. - + Automatic reference class for StopAssignmentRefStructure + + + 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 + + + @@ -112,11 +128,27 @@ Rail transport, Roads and Road transport Identifier of a PASSENGER STOP ASSIGNMENT. - + Automatic reference class for PassengerStopAssignmentRefStructure + + + 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 + + + @@ -143,11 +175,27 @@ Rail transport, Roads and Road transport DEPRECATED - Use PASSENGER BOARDING POSITION ASSIGNMENT. - + Automatic reference class for TrainStopAssignmentRefStructure + + + 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 + + + @@ -174,11 +222,27 @@ Rail transport, Roads and Road transport Identifier of a PASSENGER BOARDING POSITION ASSIGNMENT. - + Automatic reference class for PassengerBoardingPositionAssignmentRefStructure + + + 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 + + + @@ -205,6 +269,27 @@ Rail transport, Roads and Road transport Identifier of a PASSENGER STOP ASSIGNMENT. + + + 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_part_1/part1_tacticalPlanning/netex_timeDemandType_support.xsd b/xsd/netex_part_1/part1_tacticalPlanning/netex_timeDemandType_support.xsd index 70cb932ee..cc1fbd429 100644 --- a/xsd/netex_part_1/part1_tacticalPlanning/netex_timeDemandType_support.xsd +++ b/xsd/netex_part_1/part1_tacticalPlanning/netex_timeDemandType_support.xsd @@ -94,11 +94,27 @@ Rail transport, Roads and Road transport Identifier of a TIME DEMAND TYPE. - + Automatic reference class for TimeDemandTypeRefStructure + + + 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 + + + @@ -125,11 +141,27 @@ Rail transport, Roads and Road transport Identifier of a TIME DEMAND ASSIGNMENT. - + Automatic reference class for TimeDemandTypeAssignmentRefStructure + + + 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 + + + @@ -156,11 +188,27 @@ Rail transport, Roads and Road transport Identifier of a TIME DEMAND PROFILE. - + Automatic reference class for TimeDemandProfileRefStructure + + + 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 + + + @@ -193,11 +241,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF TIME DEMAND TYPE. - + Automatic reference class for TypeOfTimeDemandTypeRefStructure + + + 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 + + + @@ -229,11 +293,27 @@ Rail transport, Roads and Road transport Identifier of VEHICLE TYPE PREFERENCE. - + Automatic reference class for VehicleTypePreferenceRefStructure + + + 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_part_2/part2_frames/netex_serviceFrame_version.xsd b/xsd/netex_part_2/part2_frames/netex_serviceFrame_version.xsd index 26f22745a..36b083f57 100644 --- a/xsd/netex_part_2/part2_frames/netex_serviceFrame_version.xsd +++ b/xsd/netex_part_2/part2_frames/netex_serviceFrame_version.xsd @@ -76,11 +76,27 @@ Rail transport, Roads and Road transport Identifier of a SERVICE FRAME. - + Automatic reference class for ServiceFrameRefStructure + + + 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_part_2/part2_frames/netex_timetableFrame_support.xsd b/xsd/netex_part_2/part2_frames/netex_timetableFrame_support.xsd index e3e52fd4a..bbdd2d163 100644 --- a/xsd/netex_part_2/part2_frames/netex_timetableFrame_support.xsd +++ b/xsd/netex_part_2/part2_frames/netex_timetableFrame_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of a TIMETABLE FRAME. - + Automatic reference class for TimetableFrameRefStructure + + + 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 + + + @@ -108,11 +124,27 @@ Rail transport, Roads and Road transport - + Automatic reference class for VehicleScheduleFrameRefStructure + + + 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 +167,27 @@ Rail transport, Roads and Road transport - + Automatic reference class for DriverScheduleFrameRefStructure + + + 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_part_2/part2_journeyTimes/netex_call_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_call_support.xsd index a82c2bca6..26c5ca54c 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_call_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_call_support.xsd @@ -90,11 +90,27 @@ Rail transport, Roads and Road transport Identifier of an AddressedPlace. - + Automatic reference class for CallRefStructure + + + 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_part_2/part2_journeyTimes/netex_coupledJourney_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_coupledJourney_support.xsd index a7ed92c24..1eab47aa0 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_coupledJourney_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_coupledJourney_support.xsd @@ -84,11 +84,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF ENTITies. - + Automatic reference class for JourneyPartRefStructure + + + 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 + + + @@ -127,11 +143,27 @@ Rail transport, Roads and Road transport Identifier of a COUPLED JOURNEY. - + Automatic reference class for CoupledJourneyRefStructure + + + 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 + + + @@ -158,11 +190,27 @@ Rail transport, Roads and Road transport Identifier of JOURNEY PART COUPLE. - + Automatic reference class for JourneyPartCoupleRefStructure + + + 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 + + + @@ -225,11 +273,27 @@ Rail transport, Roads and Road transport Reference to a PURPOSE OF JOURNEY PARTITION. - + Automatic reference class for PurposeOfJourneyPartitionRefStructure + + + 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 + + + @@ -269,11 +333,27 @@ Rail transport, Roads and Road transport Identifier of a BLOCK. - + Automatic reference class for BlockRefStructure + + + 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 + + + @@ -300,11 +380,27 @@ Rail transport, Roads and Road transport Identifier of a TRAIN BLOCK. - + Automatic reference class for TrainBlockRefStructure + + + 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 + + + @@ -332,11 +428,27 @@ Rail transport, Roads and Road transport Identifier of a BLOCK PART. - + Automatic reference class for BlockPartRefStructure + + + 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 + + + @@ -363,11 +475,27 @@ Rail transport, Roads and Road transport Identifier of a TRAIN BLOCK PART. - + Automatic reference class for TrainBlockPartRefStructure + + + 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_part_2/part2_journeyTimes/netex_datedVehicleJourney_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_datedVehicleJourney_support.xsd index 017b8b577..51f14703e 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_datedVehicleJourney_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_datedVehicleJourney_support.xsd @@ -81,6 +81,27 @@ Rail transport, Roads and Road transport Identifier of DATED VEHICLE JOURNEY. + + + 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 + + + @@ -107,6 +128,27 @@ Rail transport, Roads and Road transport Identifier of NORMAL DATED VEHICLE JOURNEY. + + + 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 + + + @@ -157,11 +199,27 @@ Rail transport, Roads and Road transport Identifier of a DATED SPECIAL SERVICE. - + Automatic reference class for DatedSpecialServiceRefStructure + + + 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_part_2/part2_journeyTimes/netex_deckEntranceAssignment_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_support.xsd index a115f2baa..3db5c9a47 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_deckEntranceAssignment_support.xsd @@ -94,6 +94,27 @@ Identifier of a DECK ENTRANCE ASSIGNMENT. + + + 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 + + + @@ -132,11 +153,27 @@ Identifier of a TRAIN COMPONENT STOP ASSIGNMENT. - + Automatic reference class for TrainComponentStopAssignmentRefStructure + + + 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_part_2/part2_journeyTimes/netex_deckPlanAssignment_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_support.xsd index 85064ba11..7dc26b644 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_deckPlanAssignment_support.xsd @@ -97,11 +97,27 @@ Identifier of a DECK PLAN ASSIGNMENT. - + Automatic reference class for DeckPlanAssignmentRefStructure + + + 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_part_2/part2_journeyTimes/netex_flexibleService_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_flexibleService_support.xsd index b692a22f4..59277c941 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_flexibleService_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_flexibleService_support.xsd @@ -82,11 +82,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for FlexibleServicePropertiesRefStructure + + + 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 + + + @@ -113,6 +129,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 + + + @@ -139,11 +176,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF FLEXIBLE SERVICE. - + Automatic reference class for TypeOfFlexibleServiceRefStructure + + + 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_part_2/part2_journeyTimes/netex_interchange_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_interchange_support.xsd index 806043a04..fa7cb77d2 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_interchange_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_interchange_support.xsd @@ -83,11 +83,27 @@ Rail transport, Roads and Road transport Identifier of a JOURNEY MEETING. - + Automatic reference class for JourneyMeetingRefStructure + + + 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 + + + @@ -137,11 +153,27 @@ Rail transport, Roads and Road transport Identifier of an INTERCHANGe. - + Automatic reference class for InterchangeRefStructure + + + 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 + + + @@ -168,11 +200,27 @@ Rail transport, Roads and Road transport Identifier of a DEFAULT INTERCHANGe. - + Automatic reference class for DefaultInterchangeRefStructure + + + 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 + + + @@ -199,11 +247,27 @@ Rail transport, Roads and Road transport Identifier of a SERVICE JOURNEY INTERCHANGe. - + Automatic reference class for ServiceJourneyInterchangeRefStructure + + + 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 + + + @@ -230,11 +294,27 @@ Rail transport, Roads and Road transport Identifier of a SERVICE JOURNEY INTERCHANGe. - + Automatic reference class for ServiceJourneyPatternInterchangeRefStructure + + + 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 + + + @@ -261,11 +341,27 @@ Rail transport, Roads and Road transport Identifier of an INTERCHANGe. - + Automatic reference class for InterchangeRuleRefStructure + + + 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 + + + @@ -319,11 +415,27 @@ Rail transport, Roads and Road transport Identifier of an INTERCHANGe. - + Automatic reference class for InterchangeRuleTimingRefStructure + + + 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_part_2/part2_journeyTimes/netex_journeyAccounting_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_journeyAccounting_support.xsd index 120b12406..3c7a5468c 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_journeyAccounting_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_journeyAccounting_support.xsd @@ -107,11 +107,27 @@ Rail transport, Roads and Road transport Identifier of JOURNEY ACCOUNTING. - + Automatic reference class for JourneyAccountingRefStructure + + + 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 + + + @@ -138,6 +154,27 @@ Rail transport, Roads and Road transport Identifier of Supplier CONTRACT. + + + 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_part_2/part2_journeyTimes/netex_journey_facility_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_journey_facility_support.xsd index e8cba8b29..6ae459ee8 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_journey_facility_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_journey_facility_support.xsd @@ -133,11 +133,27 @@ Identifier of a restricted SERVICE FACILITY SET. - + Automatic reference class for RestrictedServiceFacilitySetRefStructure + + + 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_part_2/part2_journeyTimes/netex_passengerAtStopTime_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_passengerAtStopTime_support.xsd index 6024c110d..c782f04ba 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_passengerAtStopTime_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_passengerAtStopTime_support.xsd @@ -80,11 +80,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for PassengerAtStopTimeRefStructure + + + 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_part_2/part2_journeyTimes/netex_passingTimes_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_passingTimes_support.xsd index 0ecf16c6b..755a19626 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_passingTimes_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_passingTimes_support.xsd @@ -83,11 +83,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for PassingTimeRefStructure + + + 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 + + + @@ -114,11 +130,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for TargetPassingTimeRefStructure + + + 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 + + + @@ -145,11 +177,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for ObservedPassingTimeRefStructure + + + 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 +224,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for EstimatedPassingTimeRefStructure + + + 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 + + + @@ -207,11 +271,27 @@ Rail transport, Roads and Road transport Identifier of referenced entity. - + Automatic reference class for TimetabledPassingTimeRefStructure + + + 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_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd index 384679649..fcece3f92 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_serviceJourney_support.xsd @@ -99,11 +99,27 @@ Rail transport, Roads and Road transport Identifier of a SERVICE JOURNEY. - + Automatic reference class for ServiceJourneyRefStructure + + + 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 + + + @@ -130,11 +146,27 @@ Rail transport, Roads and Road transport Identifier of a SPECIAL SERVICE. - + Automatic reference class for SpecialServiceRefStructure + + + 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 + + + @@ -173,11 +205,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF Services. - + Automatic reference class for GroupOfServicesRefStructure + + + 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_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd index 3526f6aaa..25e69b46c 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyFrequency_support.xsd @@ -100,11 +100,27 @@ Rail transport, Roads and Road transport Identifier of a TEMPLATE VEHICLE JOURNEY. - + Automatic reference class for TemplateServiceJourneyRefStructure + + + 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 + + + @@ -131,11 +147,27 @@ Rail transport, Roads and Road transport Reference to a JOURNEY FREQUENCY GROUP. - + Automatic reference class for JourneyFrequencyGroupRefStructure + + + 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 + + + @@ -184,11 +216,27 @@ Rail transport, Roads and Road transport Reference to a HEADWAY JOURNEY GROUP. - + Automatic reference class for HeadwayJourneyGroupRefStructure + + + 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 + + + @@ -215,11 +263,27 @@ Rail transport, Roads and Road transport Reference to a RHYTHMICAL JOURNEY GROUP. - + Automatic reference class for RhythmicalJourneyGroupRefStructure + + + 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_part_2/part2_journeyTimes/netex_vehicleJourneyStopAssignment_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyStopAssignment_support.xsd index 837dcbd1b..1c45f4289 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyStopAssignment_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourneyStopAssignment_support.xsd @@ -80,11 +80,27 @@ Rail transport, Roads and Road transport Identifier of referenced a VEHICLE TYPE STOP ASSIGNMENT. - + Automatic reference class for VehicleTypeStopAssignmentRefStructure + + + 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 a PASSENGER STOP ASSIGNMENT. - + Automatic reference class for VehicleJourneyStopAssignmentRefStructure + + + 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 + + + @@ -142,11 +174,27 @@ Rail transport, Roads and Road transport Identifier of a TRAIN COMPONENT NUMBER ASSIGNNMENT. - + Automatic reference class for TrainComponentLabelAssignmentRefStructure + + + 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 +233,27 @@ Rail transport, Roads and Road transport Identifier of a PASSENGER STOP ASSIGNMENT. - + Automatic reference class for DynamicStopAssignmentRefStructure + + + 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_part_2/part2_journeyTimes/netex_vehicleJourney_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_support.xsd index 47a6773bc..76b3eb27b 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleJourney_support.xsd @@ -87,11 +87,27 @@ Rail transport, Roads and Road transport Identifier of a JOURNEY. - + Automatic reference class for JourneyRefStructure + + + 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 + + + @@ -119,11 +135,27 @@ Rail transport, Roads and Road transport Identifier of VEHICLE JOURNEY. - + Automatic reference class for VehicleJourneyRefStructure + + + 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 + + + @@ -162,11 +194,27 @@ Rail transport, Roads and Road transport Identifier of a DEAD RUN. - + Automatic reference class for DeadRunRefStructure + + + 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 + + + @@ -216,11 +264,27 @@ Rail transport, Roads and Road transport Identifier of a TRAIN NUMBER. - + Automatic reference class for TrainNumberRefStructure + + + 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 + + + @@ -259,11 +323,27 @@ Rail transport, Roads and Road transport Reference to a TIMING ALGORITHM TYPE. - + Automatic reference class for TimingAlgorithmTypeRefStructure + + + 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_part_2/part2_journeyTimes/netex_vehicleService_support.xsd b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleService_support.xsd index 2e81502e5..54399e76b 100644 --- a/xsd/netex_part_2/part2_journeyTimes/netex_vehicleService_support.xsd +++ b/xsd/netex_part_2/part2_journeyTimes/netex_vehicleService_support.xsd @@ -82,11 +82,27 @@ Rail transport, Roads and Road transport Identifier of a COMPOUND BLOCK. - + Automatic reference class for CompoundBlockRefStructure + + + 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 + + + @@ -113,11 +129,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE SERVICE. - + Automatic reference class for VehicleServiceRefStructure + + + 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,11 +176,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE SERVICE PART. - + Automatic reference class for VehicleServicePartRefStructure + + + 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 + + + @@ -175,6 +223,27 @@ Rail transport, Roads and Road transport Identifier of a DRIVER. + + + 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 + + + @@ -201,11 +270,27 @@ Rail transport, Roads and Road transport Identifier of a COURSE OF JOURNEYS. - + Automatic reference class for CourseOfJourneysRefStructure + + + 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 + + + @@ -232,11 +317,27 @@ Rail transport, Roads and Road transport Identifier of a RELIEF OPPORTUNITY. - + Automatic reference class for ReliefOpportunityRefStructure + + + 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_part_2/part2_occupancy/netex_oc_occupancy_version.xsd b/xsd/netex_part_2/part2_occupancy/netex_oc_occupancy_version.xsd index f6909c95b..a4a1b8a68 100644 --- a/xsd/netex_part_2/part2_occupancy/netex_oc_occupancy_version.xsd +++ b/xsd/netex_part_2/part2_occupancy/netex_oc_occupancy_version.xsd @@ -202,11 +202,27 @@ More accurate data can be provided by the individual occupancies or capacities b Identifier of referenced entity. - + Automatic reference class for OccupancyViewRefStructure + + + 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_part_2/part2_vehicleService/netex_duty_support.xsd b/xsd/netex_part_2/part2_vehicleService/netex_duty_support.xsd index fd37fd296..4c0d439ee 100644 --- a/xsd/netex_part_2/part2_vehicleService/netex_duty_support.xsd +++ b/xsd/netex_part_2/part2_vehicleService/netex_duty_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of a Duty. - + Automatic reference class for DutyRefStructure + + + 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 + + + @@ -113,11 +129,27 @@ Rail transport, Roads and Road transport Identifier of an ACCOUNTABLE ELEMENT. - + Automatic reference class for AccountableElementRefStructure + + + 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,11 +176,27 @@ Rail transport, Roads and Road transport Identifier of a BLOCK PART. - + Automatic reference class for DutyPartRefStructure + + + 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 +224,27 @@ Rail transport, Roads and Road transport Identifier of a DRIVER TRIP. - + Automatic reference class for DriverTripRefStructure + + + 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 + + + @@ -207,11 +271,27 @@ Rail transport, Roads and Road transport Identifier of a DRIVER TRIP TIME. - + Automatic reference class for DriverTripTimeRefStructure + + + 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_part_2/part2_vehicleService/netex_vehicleRechargingPlan_support.xsd b/xsd/netex_part_2/part2_vehicleService/netex_vehicleRechargingPlan_support.xsd index 73557e9ee..a3f2d1057 100644 --- a/xsd/netex_part_2/part2_vehicleService/netex_vehicleRechargingPlan_support.xsd +++ b/xsd/netex_part_2/part2_vehicleService/netex_vehicleRechargingPlan_support.xsd @@ -79,11 +79,27 @@ Rail transport, Roads and Road transport Identifier of a RECHARGING PLAN. - + Automatic reference class for RechargingPlanRefStructure + + + 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 + + + @@ -110,11 +126,27 @@ Rail transport, Roads and Road transport Identifier of a RECHARGING STEP. - + Automatic reference class for RechargingStepRefStructure + + + 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_part_3/part3_PiQuery/netex_piRequest_support.xsd b/xsd/netex_part_3/part3_PiQuery/netex_piRequest_support.xsd index 91a96f42c..7c507678c 100644 --- a/xsd/netex_part_3/part3_PiQuery/netex_piRequest_support.xsd +++ b/xsd/netex_part_3/part3_PiQuery/netex_piRequest_support.xsd @@ -85,6 +85,27 @@ Rail transport, Roads and Road transport Identifier of a PASSENGER INFORMATION REQUEST. + + + 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 + + + @@ -111,6 +132,27 @@ Rail transport, Roads and Road transport Identifier of a TRIP PLAN REQUEST. + + + 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 + + + @@ -137,6 +179,27 @@ Rail transport, Roads and Road transport Identifier of a SCHEDULE REQUEST. + + + 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 + + + @@ -163,6 +226,27 @@ Rail transport, Roads and Road transport Identifier of a STOP EVENT REQUEST. + + + 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 + + + @@ -189,6 +273,27 @@ Rail transport, Roads and Road transport Identifier of a STOP FINDER REQUEST. + + + 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 + + + @@ -215,6 +320,27 @@ Rail transport, Roads and Road transport Identifier of a FARE REQUEST. + + + 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 + + + @@ -241,6 +367,27 @@ Rail transport, Roads and Road transport Identifier of a SINGLE TRIP FARE REQUEST. + + + 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 + + + @@ -267,6 +414,27 @@ Rail transport, Roads and Road transport Identifier of a REPEATED TRIP FARE REQUEST. + + + 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_part_3/part3_fares/netex_accessRightParameter_support.xsd b/xsd/netex_part_3/part3_fares/netex_accessRightParameter_support.xsd index dd23d71cb..843930931 100644 --- a/xsd/netex_part_3/part3_fares/netex_accessRightParameter_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_accessRightParameter_support.xsd @@ -78,6 +78,27 @@ Rail transport, Roads and Road transport Identifier of an ACCESS RIGHT PARAMETER ASSIGNMENT. + + + 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 + + + @@ -123,6 +144,27 @@ Rail transport, Roads and Road transport Identifier of a VALIDITY PARAMETER. + + + 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 +186,27 @@ Rail transport, Roads and Road transport Identifier of a GENERIC PARAMETER. + + + 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 + + + @@ -165,6 +228,27 @@ Rail transport, Roads and Road transport Identifier of a CONTROL PARAMETER. + + + 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 + + + @@ -186,6 +270,27 @@ Rail transport, Roads and Road transport Identifier of a DEVICE PARAMETER. + + + 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 + + + @@ -224,11 +329,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF ACCESS RIGHT ASSIGNMENT. - + Automatic reference class for TypeOfAccessRightAssignmentRefStructure + + + 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_part_3/part3_fares/netex_calculationParameters_support.xsd b/xsd/netex_part_3/part3_fares/netex_calculationParameters_support.xsd index 2458d5e00..068ab26c0 100644 --- a/xsd/netex_part_3/part3_fares/netex_calculationParameters_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_calculationParameters_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of a PRICING PARAMETERS. - + Automatic reference class for PricingParameterSetRefStructure + + + 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 + + + @@ -124,11 +140,27 @@ Rail transport, Roads and Road transport Identifier of a PRICE UNIT. - + Automatic reference class for PriceUnitRefStructure + + + 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 + + + @@ -155,11 +187,27 @@ Rail transport, Roads and Road transport Identifier of a ROUNDING. - + Automatic reference class for RoundingRefStructure + + + 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 + + + @@ -186,11 +234,27 @@ Rail transport, Roads and Road transport Identifier of a ROUNDING STEP. - + Automatic reference class for RoundingStepRefStructure + + + 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 + + + @@ -230,11 +294,27 @@ Rail transport, Roads and Road transport Identifier of a FARE DAY TYPE. - + Automatic reference class for FareDayTypeRefStructure + + + 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 + + + @@ -261,11 +341,27 @@ Rail transport, Roads and Road transport Identifier of a PRICING SERVICE. - + Automatic reference class for PricingServiceRefStructure + + + 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 + + + @@ -292,6 +388,27 @@ Rail transport, Roads and Road transport Identifier of a PRICING RULE. + + + 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 + + + @@ -318,6 +435,27 @@ Rail transport, Roads and Road transport Identifier of a DISCOUNTING RULE. + + + 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 + + + @@ -344,6 +482,27 @@ Rail transport, Roads and Road transport Identifier of a LIMITING RULE. + + + 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 + + + @@ -370,11 +529,27 @@ Rail transport, Roads and Road transport Identifier of a MONTH VALIDITY OFFSET. - + Automatic reference class for MonthValidityOffsetRefStructure + + + 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 + + + @@ -437,11 +612,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF PRICING RULE. - + Automatic reference class for TypeOfPricingRuleRefStructure + + + 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_part_3/part3_fares/netex_distanceMatrixElement_support.xsd b/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_support.xsd index 6359a3da6..342f7ac48 100644 --- a/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_distanceMatrixElement_support.xsd @@ -95,6 +95,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF DISTANCE MATRIX ELEMENTs. + + + 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 + + + @@ -145,11 +166,27 @@ Rail transport, Roads and Road transport Identifier of a PRICEABLE ELEMENT. - + Automatic reference class for DistanceMatrixElementRefStructure + + + 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 +255,27 @@ Rail transport, Roads and Road transport Identifier of a DISTANCE MATRIX ELEMENT PRICE. - + Automatic reference class for DistanceMatrixElementPriceRefStructure + + + 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_part_3/part3_fares/netex_farePrice_support.xsd b/xsd/netex_part_3/part3_fares/netex_farePrice_support.xsd index 49c9e513e..7b755c837 100644 --- a/xsd/netex_part_3/part3_fares/netex_farePrice_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_farePrice_support.xsd @@ -95,11 +95,27 @@ Rail transport, Roads and Road transport Identifier of a PRICEABLE ELEMENT. - + Automatic reference class for PriceableObjectRefStructure + + + 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 + + + @@ -126,11 +142,27 @@ Rail transport, Roads and Road transport Identifier of a FARE PRICE. - + Automatic reference class for FarePriceRefStructure + + + 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 + + + @@ -163,11 +195,27 @@ Rail transport, Roads and Road transport Identifier of a PRICE GROUP. - + Automatic reference class for PriceGroupRefStructure + + + 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_part_3/part3_fares/netex_fareProduct_support.xsd b/xsd/netex_part_3/part3_fares/netex_fareProduct_support.xsd index 08afce466..448b2ebab 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareProduct_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareProduct_support.xsd @@ -116,11 +116,27 @@ Rail transport, Roads and Road transport Identifier of a SERVICE ACCESS RIGHT. - + Automatic reference class for ServiceAccessRightRefStructure + + + 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 + + + @@ -167,11 +183,27 @@ Rail transport, Roads and Road transport Identifier of a FARE PRODUCT. - + Automatic reference class for FareProductRefStructure + + + 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 + + + @@ -198,11 +230,27 @@ Rail transport, Roads and Road transport Identifier of a SALES DISCOUNT RIGHT. - + Automatic reference class for SaleDiscountRightRefStructure + + + 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 + + + @@ -240,11 +288,27 @@ Rail transport, Roads and Road transport Identifier of a ENTITLEMENT PRODUCT. - + Automatic reference class for EntitlementProductRefStructure + + + 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 + + + @@ -283,11 +347,27 @@ Rail transport, Roads and Road transport Identifier of a THIRD PARTY PRODUCT. - + Automatic reference class for ThirdPartyProductRefStructure + + + 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 + + + @@ -327,11 +407,27 @@ Rail transport, Roads and Road transport Identifier of a USAGE DISCOUNT RIGHT. - + Automatic reference class for UsageDiscountRightRefStructure + + + 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 + + + @@ -368,11 +464,27 @@ Rail transport, Roads and Road transport Identifier of a CAPPED DISCOUNT RIGHT. - + Automatic reference class for CappedDiscountRightRefStructure + + + 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 + + + @@ -399,11 +511,27 @@ Rail transport, Roads and Road transport Identifier of a CAPPING RULE. - + Automatic reference class for CappingRuleRefStructure + + + 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 + + + @@ -453,11 +581,27 @@ Rail transport, Roads and Road transport Identifier of an AMOUNT OF PRICE UNIT PRODUCT. - + Automatic reference class for AmountOfPriceUnitProductRefStructure + + + 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 + + + @@ -496,11 +640,27 @@ Rail transport, Roads and Road transport Identifier of a PREASSIGNED FARE PRODUCT. - + Automatic reference class for PreassignedFareProductRefStructure + + + 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 + + + @@ -544,11 +704,27 @@ Rail transport, Roads and Road transport Identifier of a SUPPLEMENT PRODUCT. - + Automatic reference class for SupplementProductRefStructure + + + 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 + + + @@ -597,11 +773,27 @@ Rail transport, Roads and Road transport Identifier of a FARE PRODUCT PRICE. - + Automatic reference class for FareProductPriceRefStructure + + + 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 + + + @@ -628,11 +820,27 @@ Rail transport, Roads and Road transport Identifier of a CAPPING RULE PRICE. - + Automatic reference class for CappingRulePriceRefStructure + + + 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 + + + @@ -676,11 +884,27 @@ Rail transport, Roads and Road transport Identifier of an ACCESS RIGHT IN PRODUCT. - + Automatic reference class for AccessRightInProductRefStructure + + + 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 + + + @@ -701,11 +925,27 @@ Rail transport, Roads and Road transport Reference to a CHARGING METHOd. - + Automatic reference class for ChargingMomentRefStructure + + + 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 + + + @@ -815,11 +1055,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF FARE PRODUCT. - + Automatic reference class for TypeOfFareProductRefStructure + + + 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_part_3/part3_fares/netex_fareSeries_support.xsd b/xsd/netex_part_3/part3_fares/netex_fareSeries_support.xsd index 36b818960..6dee26e36 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareSeries_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareSeries_support.xsd @@ -113,11 +113,27 @@ Identifier of a SERIES CONSTRAINT. - + Automatic reference class for SeriesConstraintRefStructure + + + 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 + + + @@ -177,11 +193,27 @@ Identifier of a SERIES CONSTRAINT PRICE. - + Automatic reference class for SeriesConstraintPriceRefStructure + + + 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 + + + @@ -208,11 +240,27 @@ Identifier of a ZONE IN SERIES. - + Automatic reference class for ZoneInSeriesRefStructure + + + 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_part_3/part3_fares/netex_fareStructureElement_support.xsd b/xsd/netex_part_3/part3_fares/netex_fareStructureElement_support.xsd index 6279b2999..b7c7312c7 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareStructureElement_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareStructureElement_support.xsd @@ -99,11 +99,27 @@ Rail transport, Roads and Road transport Identifier of a TARIFF. - + Automatic reference class for TariffRefStructure + + + 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 + + + @@ -198,11 +214,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF TARIFF. - + Automatic reference class for TypeOfTariffRefStructure + + + 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 + + + @@ -241,11 +273,27 @@ Rail transport, Roads and Road transport Identifier of a FARE STRUCTURE ELEMENT. - + Automatic reference class for FareStructureElementRefStructure + + + 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 + + + @@ -272,11 +320,27 @@ Rail transport, Roads and Road transport Identifier of a FARE STRUCTURE ELEMENT PRICE. - + Automatic reference class for FareStructureElementPriceRefStructure + + + 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 +379,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF FARE STRUCTURE ELEMENT. - + Automatic reference class for TypeOfFareStructureElementRefStructure + + + 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 + + + @@ -335,11 +415,27 @@ Rail transport, Roads and Road transport Identifier of a FARE STRUCTURE ELEMENT IN SEQUENCE. - + Automatic reference class for FareStructureElementInSequenceRefStructure + + + 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_part_3/part3_fares/netex_fareStructure_support.xsd b/xsd/netex_part_3/part3_fares/netex_fareStructure_support.xsd index 343ca1370..a57353db0 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareStructure_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareStructure_support.xsd @@ -101,11 +101,27 @@ Rail transport, Roads and Road transport -v2.0 - + Automatic reference class for FareElementInSequenceRefStructure + + + 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 + + + @@ -132,11 +148,27 @@ Rail transport, Roads and Road transport Identifier of a FARE STRUCTURE FACTOR. - + Automatic reference class for FareStructureFactorRefStructure + + + 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 + + + @@ -163,11 +195,27 @@ Rail transport, Roads and Road transport Identifier of a FARE UNIT. - + Automatic reference class for FareUnitRefStructure + + + 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 + + + @@ -194,11 +242,27 @@ Rail transport, Roads and Road transport Identifier of a FARE INTERVAL. - + Automatic reference class for FareIntervalRefStructure + + + 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 + + + @@ -225,11 +289,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF FARE STRUCTURE FACTOR. - + Automatic reference class for TypeOfFareStructureFactorRefStructure + + + 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_part_3/part3_fares/netex_fareTable_support.xsd b/xsd/netex_part_3/part3_fares/netex_fareTable_support.xsd index cf83a5f48..eba15e749 100644 --- a/xsd/netex_part_3/part3_fares/netex_fareTable_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_fareTable_support.xsd @@ -94,11 +94,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF ENTITies. - + Automatic reference class for FareTableRefStructure + + + 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 + + + @@ -137,11 +153,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF ENTITies. - + Automatic reference class for StandardFareTableRefStructure + + + 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 + + + @@ -175,11 +207,27 @@ Rail transport, Roads and Road transport Identifier of a FARE TABLE COLUMN. - + Automatic reference class for CellRefStructure + + + 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 + + + @@ -206,11 +254,27 @@ Rail transport, Roads and Road transport Identifier of a FARE TABLE COLUMN. - + Automatic reference class for FareTableColumnRefStructure + + + 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 + + + @@ -242,11 +306,27 @@ Rail transport, Roads and Road transport Identifier of a FARE TABLE COLUMN. - + Automatic reference class for FareTableRowRefStructure + + + 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 + + + @@ -273,11 +353,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF FARE TABLE. - + Automatic reference class for TypeOfFareTableRefStructure + + + 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_part_3/part3_fares/netex_geographicStructureFactor_support.xsd b/xsd/netex_part_3/part3_fares/netex_geographicStructureFactor_support.xsd index 69fb21c42..ff0144f5c 100644 --- a/xsd/netex_part_3/part3_fares/netex_geographicStructureFactor_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_geographicStructureFactor_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of a GEOGRAPHICAL UNIT. - + Automatic reference class for GeographicalUnitRefStructure + + + 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 + + + @@ -112,11 +128,27 @@ Rail transport, Roads and Road transport Identifier of a GEOGRAPHICAL INTERVAL. - + Automatic reference class for GeographicalIntervalRefStructure + + + 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 + + + @@ -143,11 +175,27 @@ Rail transport, Roads and Road transport Identifier of a GEOGRAPHICAL STRUCTURE FACTOR. - + Automatic reference class for GeographicalStructureFactorRefStructure + + + 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 + + + @@ -174,11 +222,27 @@ Rail transport, Roads and Road transport Identifier of a GEOGRAPHICAL UNIT PRICE. - + Automatic reference class for GeographicalUnitPriceRefStructure + + + 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 + + + @@ -205,11 +269,27 @@ Rail transport, Roads and Road transport Identifier of a GEOGRAPHICAL INTERVAL PRICE. - + Automatic reference class for GeographicalIntervalPriceRefStructure + + + 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_part_3/part3_fares/netex_qualityStructureFactor_support.xsd b/xsd/netex_part_3/part3_fares/netex_qualityStructureFactor_support.xsd index 03d3c74c2..c7901b1ca 100644 --- a/xsd/netex_part_3/part3_fares/netex_qualityStructureFactor_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_qualityStructureFactor_support.xsd @@ -83,11 +83,27 @@ Rail transport, Roads and Road transport Identifier of a QUALITY STRUCTURE FACTOR. - + Automatic reference class for QualityStructureFactorRefStructure + + + 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 + + + @@ -114,11 +130,27 @@ Rail transport, Roads and Road transport Identifier of a FARE DEMAND FACTOR. - + Automatic reference class for FareDemandFactorRefStructure + + + 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 + + + @@ -168,11 +200,27 @@ Rail transport, Roads and Road transport Identifier of a FARE QUOTA FACTOR. - + Automatic reference class for FareQuotaFactorRefStructure + + + 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 + + + @@ -199,11 +247,27 @@ Rail transport, Roads and Road transport Identifier of a QUALITY STRUCTURE FACTOR PRICE. - + Automatic reference class for QualityStructureFactorPriceRefStructure + + + 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 + + + @@ -230,6 +294,27 @@ Rail transport, Roads and Road transport Identifier of a START TIME AT STOP POINT. + + + 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_part_3/part3_fares/netex_salesDistribution_support.xsd b/xsd/netex_part_3/part3_fares/netex_salesDistribution_support.xsd index 382f7a4c4..deb21e27a 100644 --- a/xsd/netex_part_3/part3_fares/netex_salesDistribution_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_salesDistribution_support.xsd @@ -97,11 +97,27 @@ Rail transport, Roads and Road transport Identifier of a FULFILMENT METHOD. - + Automatic reference class for FulfilmentMethodRefStructure + + + 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 + + + @@ -166,6 +182,27 @@ Rail transport, Roads and Road transport Identifier of a DISTRIBUTION CHANNEL. + + + 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 + + + @@ -203,6 +240,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF VALUE. + + + 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 + + + @@ -229,11 +287,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF DISTRIBUTION CHANNELs. - + Automatic reference class for GroupOfDistributionChannelsRefStructure + + + 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 + + + @@ -270,11 +344,27 @@ Rail transport, Roads and Road transport Identifier of a FULFILMENT METHOD PRICE. - + Automatic reference class for FulfilmentMethodPriceRefStructure + + + 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_part_3/part3_fares/netex_salesDistribution_version.xsd b/xsd/netex_part_3/part3_fares/netex_salesDistribution_version.xsd index f385ea20f..d409be9cd 100644 --- a/xsd/netex_part_3/part3_fares/netex_salesDistribution_version.xsd +++ b/xsd/netex_part_3/part3_fares/netex_salesDistribution_version.xsd @@ -231,6 +231,32 @@ Rail transport, Roads and Road transport Name of member class if homogeneous. + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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_part_3/part3_fares/netex_salesOfferPackageEntitlement_support.xsd b/xsd/netex_part_3/part3_fares/netex_salesOfferPackageEntitlement_support.xsd index 31f629fd1..6d89d72cd 100644 --- a/xsd/netex_part_3/part3_fares/netex_salesOfferPackageEntitlement_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_salesOfferPackageEntitlement_support.xsd @@ -75,11 +75,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for SalesOfferPackageEntitlementRequiredRefStructure + + + 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 + + + @@ -106,11 +127,27 @@ Rail transport, Roads and Road transport Identifier of a SALES OFFER ENTITLEMENT GIVEN parameter. - + Automatic reference class for SalesOfferPackageEntitlementGivenRefStructure + + + 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_part_3/part3_fares/netex_salesOfferPackage_support.xsd b/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_support.xsd index 9b25a81bd..536c5d5d7 100644 --- a/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_salesOfferPackage_support.xsd @@ -97,11 +97,27 @@ Rail transport, Roads and Road transport Identifier of a SALES OFFER PACKAGE. - + Automatic reference class for SalesOfferPackageRefStructure + + + 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 + + + @@ -128,11 +144,27 @@ Rail transport, Roads and Road transport Identifier of a SALES OFFER PACKAGE ELEMENT. - + Automatic reference class for SalesOfferPackageElementRefStructure + + + 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 +191,27 @@ Rail transport, Roads and Road transport Identifier of a SALES OFFER PACKAGE PRICE. - + Automatic reference class for SalesOfferPackagePriceRefStructure + + + 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 + + + @@ -190,11 +238,27 @@ Rail transport, Roads and Road transport Identifier of a SALES OFFER PACKAGE SUBSTITUTION. - + Automatic reference class for SalesOfferPackageSubstitutionRefStructure + + + 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 +297,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF SALES OFFER PACKAGEs. - + Automatic reference class for GroupOfSalesOfferPackagesRefStructure + + + 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 + + + @@ -259,6 +339,27 @@ Rail transport, Roads and Road transport Identifier of a SALES NOTICE ASSIGNMENT. + + + 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 + + + @@ -285,11 +386,27 @@ Rail transport, Roads and Road transport Identifier of a DISTRIBUTION ASSIGNMENT. - + Automatic reference class for DistributionAssignmentRefStructure + + + 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 + + + @@ -328,11 +445,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF SALES OFFER PACKAGE. - + Automatic reference class for TypeOfSalesOfferPackageRefStructure + + + 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_part_3/part3_fares/netex_timeStructureFactor_support.xsd b/xsd/netex_part_3/part3_fares/netex_timeStructureFactor_support.xsd index 2d78c358e..5bd97b010 100644 --- a/xsd/netex_part_3/part3_fares/netex_timeStructureFactor_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_timeStructureFactor_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of a TIME UNIT. - + Automatic reference class for TimeUnitRefStructure + + + 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 + + + @@ -124,11 +140,27 @@ Rail transport, Roads and Road transport Identifier of a TIME INTERVAL. - + Automatic reference class for TimeIntervalRefStructure + + + 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 + + + @@ -155,11 +187,27 @@ Rail transport, Roads and Road transport Identifier of a TIME STRUCTURE FACTOR. - + Automatic reference class for TimeStructureFactorRefStructure + + + 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 + + + @@ -186,11 +234,27 @@ Rail transport, Roads and Road transport Identifier of a TIME UNIT PRICE. - + Automatic reference class for TimeUnitPriceRefStructure + + + 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 + + + @@ -217,11 +281,27 @@ Rail transport, Roads and Road transport Identifier of a TIME INTERVAL PRICE. - + Automatic reference class for TimeIntervalPriceRefStructure + + + 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_part_3/part3_fares/netex_trip_support.xsd b/xsd/netex_part_3/part3_fares/netex_trip_support.xsd index 96fa30c17..d0a0ff659 100644 --- a/xsd/netex_part_3/part3_fares/netex_trip_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_trip_support.xsd @@ -92,6 +92,27 @@ Rail transport, Roads and Road transport Identifier of a TRIP PATTERN. + + + 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 + + + @@ -118,6 +139,27 @@ Rail transport, Roads and Road transport Identifier of a TRIP. + + + 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 + + + @@ -138,7 +180,34 @@ Rail transport, Roads and Road transport Type for Reference to a LEG. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -158,7 +227,34 @@ Rail transport, Roads and Road transport Type for Reference to a RIDE LEG. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -184,7 +280,34 @@ Rail transport, Roads and Road transport Type for Reference to a PT RIDE LEG. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -204,7 +327,34 @@ Rail transport, Roads and Road transport Type for Reference to a ALTERNATIVE MODE LEG. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -224,7 +374,34 @@ Rail transport, Roads and Road transport Type for Reference to a PRIVATE LEG. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -244,7 +421,34 @@ Rail transport, Roads and Road transport Type for Reference to a TRANSFER LEG. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -264,7 +468,34 @@ Rail transport, Roads and Road transport Type for Reference to a PT CONNECTION LEG. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -284,7 +515,34 @@ Rail transport, Roads and Road transport Type for Reference to a ACCESS LEG. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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 + + + + @@ -304,7 +562,34 @@ Rail transport, Roads and Road transport Type for Reference to a RIDE PART. - + + + + Name of Class of the referenced entity. Allows reflection. Fixed for each entity type. + + + + + 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_part_3/part3_fares/netex_typeOfTravelDocument_support.xsd b/xsd/netex_part_3/part3_fares/netex_typeOfTravelDocument_support.xsd index ed5b35a14..913bc9412 100644 --- a/xsd/netex_part_3/part3_fares/netex_typeOfTravelDocument_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_typeOfTravelDocument_support.xsd @@ -93,11 +93,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF TRAVEL DOCUMENT. - + Automatic reference class for TypeOfTravelDocumentRefStructure + + + 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 TYPE OF MACHINE READABILITY. - + Automatic reference class for TypeOfMachineReadabilityRefStructure + + + 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_part_3/part3_fares/netex_usageParameterAfterSales_support.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterAfterSales_support.xsd index 8f873db13..373de9388 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterAfterSales_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterAfterSales_support.xsd @@ -113,11 +113,27 @@ Rail transport, Roads and Road transport Identifier of a RESELLING USAGE PARAMETER. - + Automatic reference class for ResellingRefStructure + + + 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 + + + @@ -186,11 +202,27 @@ Rail transport, Roads and Road transport Identifier of a EXCHANGING USAGE PARAMETER. - + Automatic reference class for ExchangingRefStructure + + + 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 + + + @@ -235,11 +267,27 @@ Rail transport, Roads and Road transport Identifier of a REFUNDING USAGE PARAMETER. - + Automatic reference class for RefundingRefStructure + + + 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 + + + @@ -354,11 +402,27 @@ Rail transport, Roads and Road transport Identifier of a REPLACING USAGE PARAMETER. - + Automatic reference class for ReplacingRefStructure + + + 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 + + + @@ -385,11 +449,27 @@ Rail transport, Roads and Road transport Identifier of a TRANSFERABILITY USAGE PARAMETER. - + Automatic reference class for TransferabilityRefStructure + + + 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_part_3/part3_fares/netex_usageParameterBooking_support.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterBooking_support.xsd index ce006293c..020a0c38c 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterBooking_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterBooking_support.xsd @@ -97,11 +97,27 @@ Rail transport, Roads and Road transport Identifier of a PURCHASE WINDOW PARAMETER. - + Automatic reference class for PurchaseWindowRefStructure + + + 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 + + + @@ -158,11 +174,27 @@ Rail transport, Roads and Road transport Identifier of a BOOKING POLICY USAGE PARAMETER. - + Automatic reference class for BookingPolicyRefStructure + + + 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,27 @@ Rail transport, Roads and Road transport Identifier of a RESERVING USAGE PARAMETER. - + Automatic reference class for ReservingRefStructure + + + 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 + + + @@ -220,11 +268,27 @@ Rail transport, Roads and Road transport Identifier of a CANCELLING USAGEPARAMETER. - + Automatic reference class for CancellingRefStructure + + + 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_part_3/part3_fares/netex_usageParameterCharging_support.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterCharging_support.xsd index 14d9780ed..e83afcbd1 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterCharging_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterCharging_support.xsd @@ -93,11 +93,27 @@ Rail transport, Roads and Road transport Identifier of a CHARGING POLICY PARAMETER. - + Automatic reference class for ChargingPolicyRefStructure + + + 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 + + + @@ -201,11 +217,27 @@ Rail transport, Roads and Road transport Identifier of a PENALTY POLICY PARAMETER. - + Automatic reference class for PenaltyPolicyRefStructure + + + 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 + + + @@ -257,11 +289,27 @@ Rail transport, Roads and Road transport Identifier of a SUBSCRIBING usage parameter. - + Automatic reference class for SubscribingRefStructure + + + 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_part_3/part3_fares/netex_usageParameterEligibility_support.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterEligibility_support.xsd index 2294283e7..e179f1cc3 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterEligibility_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterEligibility_support.xsd @@ -164,11 +164,27 @@ Rail transport, Roads and Road transport Identifier of a USER PROFILE usage parameter - + Automatic reference class for UserProfileRefStructure + + + 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 + + + @@ -195,11 +211,27 @@ Rail transport, Roads and Road transport Identifier of a COMMERCIAL PROFILE usage parameter - + Automatic reference class for CommercialProfileRefStructure + + + 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 + + + @@ -237,11 +269,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP TICKET usage parameter - + Automatic reference class for GroupTicketRefStructure + + + 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 + + + @@ -321,11 +369,27 @@ Rail transport, Roads and Road transport Identifier of a COMPANION PROFILE usage parameter - + Automatic reference class for CompanionProfileRefStructure + + + 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 + + + @@ -419,11 +483,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for TypeOfProofRefStructure + + + 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 + + + @@ -445,11 +530,27 @@ Rail transport, Roads and Road transport Identifier of a RESIDENTIAL QUALIFICATION usage parameter - + Automatic reference class for ResidentialQualificationRefStructure + + + 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 + + + @@ -483,11 +584,27 @@ Rail transport, Roads and Road transport Identifier of an ELIGIBILITY CHANGE POLICY usage parameter. - + Automatic reference class for EligibilityChangePolicyRefStructure + + + 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_part_3/part3_fares/netex_usageParameterEntitlement_support.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterEntitlement_support.xsd index 036a20f9c..3fd23aa4b 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterEntitlement_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterEntitlement_support.xsd @@ -94,11 +94,27 @@ Rail transport, Roads and Road transport Identifier of a ENTITLEMENT REQUIRED PARAMETER. - + Automatic reference class for EntitlementRequiredRefStructure + + + 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 + + + @@ -137,11 +153,27 @@ Rail transport, Roads and Road transport Identifier of a ENTITLEMENT GIVEN PARAMETER. - + Automatic reference class for EntitlementGivenRefStructure + + + 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_part_3/part3_fares/netex_usageParameterLuggage_support.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterLuggage_support.xsd index 53d9dcb45..674cf805e 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterLuggage_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterLuggage_support.xsd @@ -90,11 +90,27 @@ Rail transport, Roads and Road transport Identifier of a LUGGAGE ALLOWANCE PARAMETER. - + Automatic reference class for LuggageAllowanceRefStructure + + + 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_part_3/part3_fares/netex_usageParameterTravel_support.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameterTravel_support.xsd index 3f4ba0fc8..dacd97fe5 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameterTravel_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameterTravel_support.xsd @@ -138,11 +138,27 @@ Rail transport, Roads and Road transport Identifier of a ROUND TRIP PARAMETER. - + Automatic reference class for RoundTripRefStructure + + + 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 +218,27 @@ Rail transport, Roads and Road transport Identifier of a ROUTING PARAMETER. - + Automatic reference class for RoutingRefStructure + + + 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 +265,27 @@ Rail transport, Roads and Road transport Identifier of a STEP LIMIT PARAMETER. - + Automatic reference class for StepLimitRefStructure + + + 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 + + + @@ -278,11 +326,27 @@ Rail transport, Roads and Road transport Identifier of a USAGE VALIDITY PERIOD. - + Automatic reference class for UsageValidityPeriodRefStructure + + + 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 + + + @@ -468,11 +532,27 @@ Rail transport, Roads and Road transport Identifier of a SUSPENDING. - + Automatic reference class for SuspendingRefStructure + + + 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 + + + @@ -569,11 +649,27 @@ Rail transport, Roads and Road transport Identifier of a FREQUENCY OF USE. - + Automatic reference class for FrequencyOfUseRefStructure + + + 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 + + + @@ -611,11 +707,27 @@ Rail transport, Roads and Road transport Identifier of a INTERCHANGING. - + Automatic reference class for InterchangingRefStructure + + + 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 + + + @@ -680,11 +792,27 @@ Rail transport, Roads and Road transport Identifier of a MINIMUM STAY PARAMETER. - + Automatic reference class for MinimumStayRefStructure + + + 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_part_3/part3_fares/netex_usageParameter_support.xsd b/xsd/netex_part_3/part3_fares/netex_usageParameter_support.xsd index 744307ccc..8bfe40623 100644 --- a/xsd/netex_part_3/part3_fares/netex_usageParameter_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_usageParameter_support.xsd @@ -94,11 +94,27 @@ Rail transport, Roads and Road transport Identifier of a USAGE PARAMETER. - + Automatic reference class for UsageParameterRefStructure + + + 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 + + + @@ -137,11 +153,27 @@ Rail transport, Roads and Road transport Identifier of a USAGE PARAMETER PRICE. - + Automatic reference class for UsageParameterPriceRefStructure + + + 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 + + + @@ -168,11 +200,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF USAGE PARAMETER. - + Automatic reference class for TypeOfUsageParameterRefStructure + + + 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 + + + @@ -199,11 +247,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF CONCESSION. - + Automatic reference class for TypeOfConcessionRefStructure + + + 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_part_3/part3_fares/netex_validableElement_support.xsd b/xsd/netex_part_3/part3_fares/netex_validableElement_support.xsd index 963ec383d..c4375f2e8 100644 --- a/xsd/netex_part_3/part3_fares/netex_validableElement_support.xsd +++ b/xsd/netex_part_3/part3_fares/netex_validableElement_support.xsd @@ -82,11 +82,27 @@ Rail transport, Roads and Road transport Identifier of a VALIDABLE ELEMENT. - + Automatic reference class for ValidableElementRefStructure + + + 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 + + + @@ -113,11 +129,27 @@ Rail transport, Roads and Road transport Identifier of a VALIDABLE ELEMENT PRICE. - + Automatic reference class for ValidableElementPriceRefStructure + + + 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,11 +176,27 @@ Rail transport, Roads and Road transport Identifier of a CONTROLLABLE ELEMENT. - + Automatic reference class for ControllableElementRefStructure + + + 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 + + + @@ -175,11 +223,27 @@ Rail transport, Roads and Road transport Identifier of an CONTROLLABLE ELEMENT IN SEQUENCE. - + Automatic reference class for ControllableElementInSequenceRefStructure + + + 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 + + + @@ -206,11 +270,27 @@ Rail transport, Roads and Road transport Identifier of a CONTROLLABLE ELEMENT PRICE. - + Automatic reference class for ControllableElementPriceRefStructure + + + 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_part_3/part3_frames/netex_fareFrame_version.xsd b/xsd/netex_part_3/part3_frames/netex_fareFrame_version.xsd index d7b8ed236..d66cf00d6 100644 --- a/xsd/netex_part_3/part3_frames/netex_fareFrame_version.xsd +++ b/xsd/netex_part_3/part3_frames/netex_fareFrame_version.xsd @@ -87,11 +87,27 @@ Rail transport, Roads and Road transport Identifier of a FARE FRAME. - + Automatic reference class for FareFrameRefStructure + + + 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 + + + @@ -222,11 +238,27 @@ Rail transport, Roads and Road transport Identifier of a FARE FRAME. - + Automatic reference class for FarePriceFrameRefStructure + + + 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_part_3/part3_frames/netex_salesTransactionFrame_version.xsd b/xsd/netex_part_3/part3_frames/netex_salesTransactionFrame_version.xsd index df7d0730e..1f1fa65a6 100644 --- a/xsd/netex_part_3/part3_frames/netex_salesTransactionFrame_version.xsd +++ b/xsd/netex_part_3/part3_frames/netex_salesTransactionFrame_version.xsd @@ -94,11 +94,27 @@ Rail transport, Roads and Road transport Identifier of a SALES TRANSACTION FRAME. - + Automatic reference class for SalesTransactionFrameRefStructure + + + 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_part_3/part3_parkingTariff/netex_parkingTariff_support.xsd b/xsd/netex_part_3/part3_parkingTariff/netex_parkingTariff_support.xsd index 0910030d2..1ee5457f7 100644 --- a/xsd/netex_part_3/part3_parkingTariff/netex_parkingTariff_support.xsd +++ b/xsd/netex_part_3/part3_parkingTariff/netex_parkingTariff_support.xsd @@ -84,11 +84,27 @@ Rail transport, Roads and Road transport Identifier of a PARKING TARIFF. - + Automatic reference class for ParkingTariffRefStructure + + + 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 + + + @@ -115,11 +131,27 @@ Rail transport, Roads and Road transport Identifier of a PARKING TARIFF CHARGE BAND. - + Automatic reference class for ParkingChargeBandRefStructure + + + 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 + + + @@ -146,11 +178,27 @@ Rail transport, Roads and Road transport Identifier of a PARKING TARIFF PRICE. - + Automatic reference class for ParkingPriceRefStructure + + + 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_part_3/part3_salesTransactions/netex_customerEligibility_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_customerEligibility_support.xsd index f666de346..136b9fd1d 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_customerEligibility_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_customerEligibility_support.xsd @@ -93,11 +93,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER ELIGIBILITY. - + Automatic reference class for CustomerEligibilityRefStructure + + + 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 + + + @@ -124,11 +140,27 @@ Rail transport, Roads and Road transport Identifier of a USER PROFILE ELIGIBILITY. - + Automatic reference class for UserProfileEligibilityRefStructure + + + 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 + + + @@ -155,11 +187,27 @@ Rail transport, Roads and Road transport Identifier of a COMMERCIAL PROFILE ELIGIBILITY. - + Automatic reference class for CommercialProfileEligibilityRefStructure + + + 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 + + + @@ -186,11 +234,27 @@ Rail transport, Roads and Road transport Identifier of a RESIDENTIAL QUALIFICATION ELIGIBILITY. - + Automatic reference class for ResidentialQualificationEligibilityRefStructure + + + 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_part_3/part3_salesTransactions/netex_customerPaymentMeans_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_customerPaymentMeans_support.xsd index 5dd9a5b59..7f6219f51 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_customerPaymentMeans_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_customerPaymentMeans_support.xsd @@ -92,11 +92,27 @@ Rail transport, Roads and Road transport Identifier of CUSTOMER PAYMENT MEANS . - + Automatic reference class for CustomerPaymentMeansRefStructure + + + 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_part_3/part3_salesTransactions/netex_customerPurchasePackage_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_support.xsd index 33a2ce3f8..e5ad4c5e8 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_customerPurchasePackage_support.xsd @@ -101,11 +101,27 @@ Rail transport, Roads and Road transport Identifier of a TRAVEL SPECIFICATION. - + Automatic reference class for TravelSpecificationRefStructure + + + 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 + + + @@ -132,11 +148,27 @@ Rail transport, Roads and Road transport Identifier of a REQUESTED TRAVEL SPECIFICATION. - + Automatic reference class for RequestedTravelSpecificationRefStructure + + + 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 + + + @@ -163,11 +195,27 @@ Rail transport, Roads and Road transport Identifier of a OFFERED TRAVEL SPECIFICATION. - + Automatic reference class for OfferedTravelSpecificationRefStructure + + + 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,6 +237,27 @@ Rail transport, Roads and Road transport Identifier of a SPECIFIC PARAMETER. + + + 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 + + + @@ -227,11 +296,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER PURCHASE PACKAGE. - + Automatic reference class for CustomerPurchasePackageRefStructure + + + 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 + + + @@ -258,11 +343,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER PURCHASE PACKAGE ELEMENT. - + Automatic reference class for CustomerPurchasePackageElementRefStructure + + + 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 + + + @@ -353,11 +454,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER PURCHASE PACKAGE PRICE. - + Automatic reference class for CustomerPurchasePackagePriceRefStructure + + + 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 + + + @@ -396,6 +513,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF CUSTOMER PURCHASE PACKAGEs. + + + 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 + + + @@ -417,6 +555,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER PURCHASE PARAMETER. + + + 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 + + + @@ -438,6 +597,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER PURCHASE PACKAGE ELEMENT ACCESS. + + + 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_part_3/part3_salesTransactions/netex_fareDebit_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_fareDebit_support.xsd index 4adeac76d..4a9ab4e3e 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_fareDebit_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_fareDebit_support.xsd @@ -93,11 +93,27 @@ Rail transport, Roads and Road transport Identifier of a FARE DEBIT. - + Automatic reference class for FareDebitRefStructure + + + 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 + + + @@ -124,11 +140,27 @@ Rail transport, Roads and Road transport Identifier of an OTHER DEBIT. - + Automatic reference class for OtherDebitRefStructure + + + 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 + + + @@ -155,11 +187,27 @@ Rail transport, Roads and Road transport Identifier of a BOOKING DEBIT. - + Automatic reference class for BookingDebitRefStructure + + + 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 + + + @@ -186,11 +234,27 @@ Rail transport, Roads and Road transport Identifier of a TRIP DEBIT. - + Automatic reference class for TripDebitRefStructure + + + 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 + + + @@ -217,11 +281,27 @@ Rail transport, Roads and Road transport Identifier of a FARE PRODUCT SALES DEBIT. - + Automatic reference class for FareProductSaleDebitRefStructure + + + 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 + + + @@ -248,11 +328,27 @@ Rail transport, Roads and Road transport Identifier of a OFFENCE DEBIT. - + Automatic reference class for OffenceDebitRefStructure + + + 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_part_3/part3_salesTransactions/netex_mediumApplication_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_mediumApplication_support.xsd index 31c20970f..6d6cf1c8e 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_mediumApplication_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_mediumApplication_support.xsd @@ -92,11 +92,27 @@ Rail transport, Roads and Road transport Identifier of MEDIUM ACCESS DEVICE. - + Automatic reference class for MediumAccessDeviceRefStructure + + + 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 + + + @@ -123,11 +139,27 @@ Rail transport, Roads and Road transport Identifier of SMARTCARD. - + Automatic reference class for SmartcardRefStructure + + + 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 + + + @@ -154,11 +186,27 @@ Rail transport, Roads and Road transport Identifier of EMV CARD. - + Automatic reference class for EmvCardRefStructure + + + 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 +233,27 @@ Rail transport, Roads and Road transport Identifier of MOBILE DEVICE. - + Automatic reference class for MobileDeviceRefStructure + + + 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 + + + @@ -228,11 +292,27 @@ Rail transport, Roads and Road transport Identifier of MEDIUM APPLICATION INSTANCE. - + Automatic reference class for MediumApplicationInstanceRefStructure + + + 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 + + + @@ -259,11 +339,27 @@ Rail transport, Roads and Road transport Reference to a TYPE OF MEDIUM ACCESS DEVICE. - + Automatic reference class for TypeOfMediumAccessDeviceRefStructure + + + 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,11 +398,27 @@ Rail transport, Roads and Road transport Identifier of a MEDIUM ACCESS DEVICE SECURITY LISTING.. - + Automatic reference class for MediumAccessDeviceSecurityListingRefStructure + + + 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_part_3/part3_salesTransactions/netex_retailConsortium_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_retailConsortium_support.xsd index 229bf1543..c23da70ab 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_retailConsortium_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_retailConsortium_support.xsd @@ -94,11 +94,27 @@ Rail transport, Roads and Road transport Identifier of a RETAIL CONSORTIUM. - + Automatic reference class for RetailConsortiumRefStructure + + + 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 + + + @@ -137,11 +153,27 @@ Rail transport, Roads and Road transport Identifier of a RETAIL DEVICE. - + Automatic reference class for RetailDeviceRefStructure + + + 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 + + + @@ -180,11 +212,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF RETAIL DEVICE. - + Automatic reference class for TypeOfRetailDeviceRefStructure + + + 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 + + + @@ -223,11 +271,27 @@ Rail transport, Roads and Road transport Identifier of a RETAIL DEVICE SECURITY LISTING.. - + Automatic reference class for RetailDeviceSecurityListingRefStructure + + + 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_part_3/part3_salesTransactions/netex_salesContract_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_salesContract_support.xsd index 985b4c4ff..2737aaad6 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_salesContract_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_salesContract_support.xsd @@ -109,11 +109,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER. - + Automatic reference class for CustomerRefStructure + + + 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 + + + @@ -174,11 +190,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER SECURITY LISTING.. - + Automatic reference class for CustomerSecurityListingRefStructure + + + 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 +250,27 @@ Rail transport, Roads and Road transport Identifier of a FARE CONTRACT. - + Automatic reference class for FareContractRefStructure + + + 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 + + + @@ -261,11 +309,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF FARE CONTRACT. - + Automatic reference class for TypeOfFareContractRefStructure + + + 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 + + + @@ -281,11 +345,27 @@ Rail transport, Roads and Road transport Identifier of a FARE CONTRACT SECURITY LISTING.. - + Automatic reference class for FareContractSecurityListingRefStructure + + + 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 + + + @@ -335,11 +415,27 @@ Rail transport, Roads and Road transport Identifier of a FARE CONTRACT ENTRY. - + Automatic reference class for FareContractEntryRefStructure + + + 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 + + + @@ -378,11 +474,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF FARE CONTRACT ENTRY. - + Automatic reference class for TypeOfFareContractEntryRefStructure + + + 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 + + + @@ -421,11 +533,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER ACCOUNT. - + Automatic reference class for CustomerAccountRefStructure + + + 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 + + + @@ -453,11 +581,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER ACCOUNT SECURITY LISTING.. - + Automatic reference class for CustomerAccountSecurityListingRefStructure + + + 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 + + + @@ -507,11 +651,27 @@ Rail transport, Roads and Road transport Identifier of a TYPE OF CUSTOMER ACCOUNT . - + Automatic reference class for TypeOfCustomerAccountRefStructure + + + 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 + + + @@ -550,11 +710,27 @@ Rail transport, Roads and Road transport Identifier of a CUSTOMER ACCOUNT STATUS . - + Automatic reference class for CustomerAccountStatusRefStructure + + + 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_part_3/part3_salesTransactions/netex_salesTransaction_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_salesTransaction_support.xsd index 0d32940d9..c17e3dca7 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_salesTransaction_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_salesTransaction_support.xsd @@ -104,11 +104,27 @@ Rail transport, Roads and Road transport Identifier of a SALES TRANSACTION. - + Automatic reference class for SalesTransactionRefStructure + + + 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_part_3/part3_salesTransactions/netex_spotAllocation_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_spotAllocation_support.xsd index 26098983b..05fe71ab1 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_spotAllocation_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_spotAllocation_support.xsd @@ -90,11 +90,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE JOURNEY SPOT ALLOCATION. - + Automatic reference class for VehicleJourneySpotAllocationRefStructure + + + 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 + + + @@ -133,11 +149,27 @@ Rail transport, Roads and Road transport Identifier of a PASSENGER SPOT ALLOCATION. - + Automatic reference class for PassengerSpotAllocationRefStructure + + + 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,6 +208,27 @@ Rail transport, Roads and Road transport Identifier of a SPOT ALLOCATION METHOD. + + + 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_part_3/part3_salesTransactions/netex_travelDocument_support.xsd b/xsd/netex_part_3/part3_salesTransactions/netex_travelDocument_support.xsd index 6db94f3db..043fef585 100644 --- a/xsd/netex_part_3/part3_salesTransactions/netex_travelDocument_support.xsd +++ b/xsd/netex_part_3/part3_salesTransactions/netex_travelDocument_support.xsd @@ -85,11 +85,27 @@ Rail transport, Roads and Road transport Identifier of a TRAVEL DOCUMENT. - + Automatic reference class for TravelDocumentRefStructure + + + 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 + + + @@ -128,11 +144,27 @@ Rail transport, Roads and Road transport Identifier of a TRAVEL DOCUMENT SECURITY LISTING.. - + Automatic reference class for TravelDocumentSecurityListingRefStructure + + + 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_part_5/part5_fm/netex_nm_accessCredentialsAssignment_support.xsd b/xsd/netex_part_5/part5_fm/netex_nm_accessCredentialsAssignment_support.xsd index 1147a450b..0fcb37d20 100644 --- a/xsd/netex_part_5/part5_fm/netex_nm_accessCredentialsAssignment_support.xsd +++ b/xsd/netex_part_5/part5_fm/netex_nm_accessCredentialsAssignment_support.xsd @@ -93,11 +93,27 @@ Rail transport, Roads and Road transport Identifier of SERVICE ACCESS CODE. - + Automatic reference class for ServiceAccessCodeRefStructure + + + 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 VEHICLE ACCESS CREDENTIALS ASSIGNMENT. - + Automatic reference class for VehicleAccessCredentialsAssignmentRefStructure + + + 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_part_5/part5_fm/netex_nm_individualTraveller_support.xsd b/xsd/netex_part_5/part5_fm/netex_nm_individualTraveller_support.xsd index ecad81e21..477e31d16 100644 --- a/xsd/netex_part_5/part5_fm/netex_nm_individualTraveller_support.xsd +++ b/xsd/netex_part_5/part5_fm/netex_nm_individualTraveller_support.xsd @@ -92,11 +92,27 @@ Rail transport, Roads and Road transport Identifier of INDIVIDUAL TRAVELLER. - + Automatic reference class for IndividualTravellerRefStructure + + + 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 VEHICLE POOLING DRIVER INFO. - + Automatic reference class for VehiclePoolingDriverInfoRefStructure + + + 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,27 @@ Rail transport, Roads and Road transport Identifier of INDIVIDUAL PASSENGER INFO. - + Automatic reference class for IndividualPassengerInfoRefStructure + + + 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_part_5/part5_fm/netex_nm_usageParameterEligibility_support.xsd b/xsd/netex_part_5/part5_fm/netex_nm_usageParameterEligibility_support.xsd index 73d67cb11..a78b0d97f 100644 --- a/xsd/netex_part_5/part5_fm/netex_nm_usageParameterEligibility_support.xsd +++ b/xsd/netex_part_5/part5_fm/netex_nm_usageParameterEligibility_support.xsd @@ -80,11 +80,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE POOLER PROFILE usage parameter - + Automatic reference class for VehiclePoolerProfileRefStructure + + + 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_part_5/part5_fm/netex_nm_usageParameterRental_support.xsd b/xsd/netex_part_5/part5_fm/netex_nm_usageParameterRental_support.xsd index 75b645eb2..f64730e04 100644 --- a/xsd/netex_part_5/part5_fm/netex_nm_usageParameterRental_support.xsd +++ b/xsd/netex_part_5/part5_fm/netex_nm_usageParameterRental_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of a RENTAL PENALTY POLICY PARAMETER. - + Automatic reference class for RentalPenaltyPolicyRefStructure + + + 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 + + + @@ -131,11 +147,27 @@ Rail transport, Roads and Road transport Identifier of a RENTAL OPTION PARAMETER. - + Automatic reference class for RentalOptionRefStructure + + + 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 + + + @@ -162,11 +194,27 @@ Rail transport, Roads and Road transport Identifier of a ADDITIONAL DRIVER OPTION PARAMETER. - + Automatic reference class for AdditionalDriverOptionRefStructure + + + 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_part_5/part5_frames/netex_nm_mobilityJourneyFrame_version.xsd b/xsd/netex_part_5/part5_frames/netex_nm_mobilityJourneyFrame_version.xsd index c9d89a5ef..620b6c844 100644 --- a/xsd/netex_part_5/part5_frames/netex_nm_mobilityJourneyFrame_version.xsd +++ b/xsd/netex_part_5/part5_frames/netex_nm_mobilityJourneyFrame_version.xsd @@ -85,11 +85,27 @@ Rail transport, Roads and Road transport - + Automatic reference class for MobilityJourneyFrameRefStructure + + + 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_part_5/part5_frames/netex_nm_mobilityServiceFrame_version.xsd b/xsd/netex_part_5/part5_frames/netex_nm_mobilityServiceFrame_version.xsd index ac8eebb4b..e87d5e510 100644 --- a/xsd/netex_part_5/part5_frames/netex_nm_mobilityServiceFrame_version.xsd +++ b/xsd/netex_part_5/part5_frames/netex_nm_mobilityServiceFrame_version.xsd @@ -89,11 +89,27 @@ Rail transport, Roads and Road transport - + Automatic reference class for MobilityServiceFrameRefStructure + + + 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_part_5/part5_nd/netex_nm_mobilityServiceConstraintZone_support.xsd b/xsd/netex_part_5/part5_nd/netex_nm_mobilityServiceConstraintZone_support.xsd index 1759a8715..3c764e0f7 100644 --- a/xsd/netex_part_5/part5_nd/netex_nm_mobilityServiceConstraintZone_support.xsd +++ b/xsd/netex_part_5/part5_nd/netex_nm_mobilityServiceConstraintZone_support.xsd @@ -97,11 +97,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for MobilityServiceConstraintZoneRefStructure + + + 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 + + + @@ -129,7 +150,34 @@ 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 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 + + + + @@ -139,11 +187,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for VehicleTypeZoneRestrictionRefStructure + + + 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 + + + @@ -203,7 +272,34 @@ 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 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 + + + + @@ -213,11 +309,32 @@ Rail transport, Roads and Road transport - + Automatic reference class for PoolOfVehiclesRefStructure + + + 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_part_5/part5_nd/netex_nm_vehicleMeetingPlace_support.xsd b/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPlace_support.xsd index 4af253120..ad39c6103 100644 --- a/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPlace_support.xsd +++ b/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPlace_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of VEHICLE MEETING PLACE. - + Automatic reference class for VehicleMeetingPlaceRefStructure + + + 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 + + + @@ -112,11 +128,27 @@ Rail transport, Roads and Road transport Identifier of VEHICLE POOLING MEETING PLACE. - + Automatic reference class for VehiclePoolingMeetingPlaceRefStructure + + + 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,11 +176,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE SHARING PARKING AREA. - + Automatic reference class for VehicleSharingParkingAreaRefStructure + + + 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 + + + @@ -175,11 +223,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE POOLING PARKING AREA. - + Automatic reference class for VehiclePoolingParkingAreaRefStructure + + + 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 + + + @@ -206,11 +270,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE SHARING PARKING BAY. - + Automatic reference class for VehicleSharingParkingBayRefStructure + + + 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 + + + @@ -237,11 +317,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE POOLING PARKING BAY. - + Automatic reference class for VehiclePoolingParkingBayRefStructure + + + 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_part_5/part5_nd/netex_nm_vehicleMeetingPointAssignment_support.xsd b/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPointAssignment_support.xsd index 0ae2e1c13..1c653f744 100644 --- a/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPointAssignment_support.xsd +++ b/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPointAssignment_support.xsd @@ -91,11 +91,27 @@ Rail transport, Roads and Road transport Identifier of VEHICLE MEETING POINT ASSIGNMENT. - + Automatic reference class for VehicleMeetingPointAssignmentRefStructure + + + 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 DYNAMIC VEHICLE MEETING POINT ASSIGNMENT. - + Automatic reference class for DynamicVehicleMeetingPointAssignmentRefStructure + + + 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_part_5/part5_nd/netex_nm_vehicleMeetingPoint_support.xsd b/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPoint_support.xsd index 83a5975f0..b59798e01 100644 --- a/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPoint_support.xsd +++ b/xsd/netex_part_5/part5_nd/netex_nm_vehicleMeetingPoint_support.xsd @@ -92,6 +92,27 @@ Rail transport, Roads and Road transport Identifier of VEHICLE MEETING POINT. + + + 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 + + + @@ -119,11 +140,27 @@ Rail transport, Roads and Road transport Identifier of a VEHICLE MEETING LINK. - + Automatic reference class for VehicleMeetingLinkRefStructure + + + 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_part_5/part5_nd/netex_nm_vehicleParkingAreaInformation_support.xsd b/xsd/netex_part_5/part5_nd/netex_nm_vehicleParkingAreaInformation_support.xsd index 7a101c026..1e5943919 100644 --- a/xsd/netex_part_5/part5_nd/netex_nm_vehicleParkingAreaInformation_support.xsd +++ b/xsd/netex_part_5/part5_nd/netex_nm_vehicleParkingAreaInformation_support.xsd @@ -83,11 +83,27 @@ Rail transport, Roads and Road transport Identifier of a MONITORED VEHICLE SHARING PARKING BAY. - + Automatic reference class for MonitoredVehicleSharingParkingBayRefStructure + + + 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 + + + @@ -114,11 +130,27 @@ Rail transport, Roads and Road transport Reference to a PARKING BAY STATUS. - + Automatic reference class for ParkingBayStatusRefStructure + + + 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 + + + @@ -157,6 +189,27 @@ Rail transport, Roads and Road transport Reference to a RENTAL AVAILABILITY. + + + 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 + + + @@ -183,6 +236,27 @@ Rail transport, Roads and Road transport Reference to a PARKING BAY CONDITION. + + + 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_part_5/part5_nd/netex_nm_vehicleServicePlaceAssignment_support.xsd b/xsd/netex_part_5/part5_nd/netex_nm_vehicleServicePlaceAssignment_support.xsd index 099fab543..e20b6dbc7 100644 --- a/xsd/netex_part_5/part5_nd/netex_nm_vehicleServicePlaceAssignment_support.xsd +++ b/xsd/netex_part_5/part5_nd/netex_nm_vehicleServicePlaceAssignment_support.xsd @@ -92,11 +92,27 @@ Rail transport, Roads and Road transport Identifier of VEHICLE SERVICE PLACE ASSIGNMENT. - + Automatic reference class for VehicleServicePlaceAssignmentRefStructure + + + 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 TAXI SERVICE PLACE ASSIGNMENT. - + Automatic reference class for TaxiServicePlaceAssignmentRefStructure + + + 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 + + + @@ -178,11 +210,27 @@ Rail transport, Roads and Road transport Identifier of VEHICLE SHARING PLACE ASSIGNMENT. - + Automatic reference class for VehicleSharingPlaceAssignmentRefStructure + + + 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 + + + @@ -221,11 +269,27 @@ Rail transport, Roads and Road transport Identifier of VEHICLE POOLING PLACE ASSIGNMENT. - + Automatic reference class for VehiclePoolingPlaceAssignmentRefStructure + + + 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_part_5/part5_rc/netex_nm_mobilityService_support.xsd b/xsd/netex_part_5/part5_rc/netex_nm_mobilityService_support.xsd index 30649b13a..75fb2e6e3 100644 --- a/xsd/netex_part_5/part5_rc/netex_nm_mobilityService_support.xsd +++ b/xsd/netex_part_5/part5_rc/netex_nm_mobilityService_support.xsd @@ -81,11 +81,27 @@ Rail transport, Roads and Road transport Identifier of a POINT. - + Automatic reference class for MobilityServiceRefStructure + + + 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 + + + @@ -130,11 +146,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING SERVICE. - + Automatic reference class for CommonVehicleServiceRefStructure + + + 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 + + + @@ -161,11 +193,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING SERVICE. - + Automatic reference class for VehiclePoolingServiceRefStructure + + + 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 + + + @@ -192,11 +240,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING SERVICE. - + Automatic reference class for CarPoolingServiceRefStructure + + + 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 + + + @@ -223,11 +287,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING SERVICE. - + Automatic reference class for TaxiServiceRefStructure + + + 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 +334,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING SERVICE. - + Automatic reference class for ChauffeuredVehicleServiceRefStructure + + + 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 + + + @@ -285,11 +381,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING SERVICE. - + Automatic reference class for VehicleSharingServiceRefStructure + + + 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 + + + @@ -316,11 +428,27 @@ Rail transport, Roads and Road transport Identifier of a TICKETING SERVICE. - + Automatic reference class for VehicleRentalServiceRefStructure + + + 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 + + + @@ -347,11 +475,27 @@ Rail transport, Roads and Road transport Identifier of a MOBILITY SERVICE. - + Automatic reference class for TypeOfMobilityServiceRefStructure + + + 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_part_5/part5_rc/netex_nm_onlineService_support.xsd b/xsd/netex_part_5/part5_rc/netex_nm_onlineService_support.xsd index edab908c0..ee01ab5b0 100644 --- a/xsd/netex_part_5/part5_rc/netex_nm_onlineService_support.xsd +++ b/xsd/netex_part_5/part5_rc/netex_nm_onlineService_support.xsd @@ -90,11 +90,27 @@ Rail transport, Roads and Road transport Identifier of an ONLINE SERVICE OPERATOR. - + Automatic reference class for OnlineServiceOperatorRefStructure + + + 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 + + + @@ -133,11 +149,27 @@ Rail transport, Roads and Road transport Identifier of an ONLINE SERVICE. - + Automatic reference class for OnlineServiceRefStructure + + + 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_part_5/part5_sj/netex_nm_singleJourneyPath_support.xsd b/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyPath_support.xsd index e15e4230e..e7da582d7 100644 --- a/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyPath_support.xsd +++ b/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyPath_support.xsd @@ -92,11 +92,27 @@ Rail transport, Roads and Road transport Identifier of SINGLE JOURNEY PATH. - + Automatic reference class for SingleJourneyPathRefStructure + + + 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,6 +151,27 @@ Rail transport, Roads and Road transport Identifier of POINT IN SINGLE JOURNEY PATH. + + + 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_part_5/part5_sj/netex_nm_singleJourneyService_support.xsd b/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_support.xsd index 6e93d5f2f..65d5214de 100644 --- a/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_support.xsd +++ b/xsd/netex_part_5/part5_sj/netex_nm_singleJourneyService_support.xsd @@ -92,11 +92,27 @@ Rail transport, Roads and Road transport Identifier of SINGLE JOURNEY. - + Automatic reference class for SingleJourneyRefStructure + + + 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 + + + @@ -124,11 +140,27 @@ Rail transport, Roads and Road transport Identifier of a GROUP OF SINGLE JOURNEYs. - + Automatic reference class for GroupOfSingleJourneysRefStructure + + + 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/ynotation/netex_subThing_support.xsd b/xsd/ynotation/netex_subThing_support.xsd index b31afe57f..b9c515cfe 100644 --- a/xsd/ynotation/netex_subThing_support.xsd +++ b/xsd/ynotation/netex_subThing_support.xsd @@ -18,6 +18,27 @@ Identifier of referenced ANCESTOR A + + + 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 + + + @@ -44,6 +65,27 @@ Identifier of referenced ANCESTOR B + + + 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 + + + @@ -70,6 +112,27 @@ Identifier of referenced SUB A + + + 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 + + + @@ -96,6 +159,27 @@ Identifier of referenced SUB SUB A + + + 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 + + + @@ -122,6 +206,27 @@ Identifier of referenced SUB AB + + + 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 + + + @@ -148,6 +253,27 @@ Identifier of referenced SUB AC + + + 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 + + + @@ -174,6 +300,27 @@ Identifier of referenced SUB ABC + + + 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 + + + @@ -200,6 +347,27 @@ Identifier of referenced SUB SUB ABC + + + 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/ynotation/netex_thing_support.xsd b/xsd/ynotation/netex_thing_support.xsd index 0be8d8ead..6908d9b47 100644 --- a/xsd/ynotation/netex_thing_support.xsd +++ b/xsd/ynotation/netex_thing_support.xsd @@ -18,6 +18,27 @@ Identifier of referenced THING + + + 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 + + + @@ -69,6 +90,27 @@ Identifier of referenced SOMETHING ELSE. + + + 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 + + + @@ -111,6 +153,27 @@ Identifier of referenced SOMETHING ELSE. + + + 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 + + +