Skip to content

Commit 6fd399c

Browse files
authored
Revert order of EmbeddedDataSpecification attributes in the schemas (#587)
Previously we mistakenly thought that attribute `dataSpecification` of class `EmbeddedDataSpecification` was optional and we did a bugfix for this in [aas-core-meta#328]. However, we later discovered that this was a mistake in a graphic of the specification and `data_specification` was indeed mandatory (see discussion in [aas-core-meta#326]). Therefore we reverted the added `Optional` in the type hint in [aas-core-meta#329]. Sadly, the issue was not finished with this, as we forgot to also revert the order of the attributes that had changed due to the fact that optional attributes need to be defined behind mandatory attributes. This had been found in #477 with regards to V3.0 and had been fixed for v3.0 in [aas-core-meta#353]. Unfortunately we forgot to adapt this change also for V3.1. So now, another issue was filed in #585, notifying us of the changed order of attributes in V3.1. Finally, [aas-core-meta#371] reverts the order of the attributes of `Embedded_data_specification` for V3.1 as well and we propagate the changes to the schema files here. [aas-core-meta#326]: aas-core-works/aas-core-meta#326 [aas-core-meta#328]: aas-core-works/aas-core-meta#328 [aas-core-meta#329]: aas-core-works/aas-core-meta#329 [aas-core-meta#353]: aas-core-works/aas-core-meta#353 [aas-core-meta#371]: aas-core-works/aas-core-meta#371 Fixes #585
1 parent ecac1bd commit 6fd399c

File tree

811 files changed

+7774
-7102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

811 files changed

+7774
-7102
lines changed

schemas/json/aas.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -503,16 +503,16 @@
503503
"EmbeddedDataSpecification": {
504504
"type": "object",
505505
"properties": {
506-
"dataSpecificationContent": {
507-
"$ref": "#/definitions/DataSpecificationContent_choice"
508-
},
509506
"dataSpecification": {
510507
"$ref": "#/definitions/Reference"
508+
},
509+
"dataSpecificationContent": {
510+
"$ref": "#/definitions/DataSpecificationContent_choice"
511511
}
512512
},
513513
"required": [
514-
"dataSpecificationContent",
515-
"dataSpecification"
514+
"dataSpecification",
515+
"dataSpecificationContent"
516516
]
517517
},
518518
"Entity": {

schemas/rdf/examples/generated/AdministrativeInformation/maximal.ttl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99
rdf:type aas:AdministrativeInformation ;
1010
<https://admin-shell.io/aas/3/1/HasDataSpecification/embeddedDataSpecifications> [
1111
rdf:type aas:EmbeddedDataSpecification ;
12+
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
13+
rdf:type aas:Reference ;
14+
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
15+
<https://admin-shell.io/aas/3/1/Reference/keys> [
16+
rdf:type aas:Key ;
17+
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
18+
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
19+
] ;
20+
] ;
1221
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecificationContent> [
1322
rdf:type aas:DataSpecificationIec61360 ;
1423
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/preferredName> [
@@ -23,15 +32,6 @@
2332
] ;
2433
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/value> "something_bebf64f0"^^xs:string ;
2534
] ;
26-
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
27-
rdf:type aas:Reference ;
28-
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
29-
<https://admin-shell.io/aas/3/1/Reference/keys> [
30-
rdf:type aas:Key ;
31-
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
32-
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
33-
] ;
34-
] ;
3535
] ;
3636
<https://admin-shell.io/aas/3/1/AdministrativeInformation/version> "1230"^^xs:string ;
3737
<https://admin-shell.io/aas/3/1/AdministrativeInformation/revision> "0"^^xs:string ;

schemas/rdf/examples/generated/AdministrativeInformation/revisionOverPatternExamples/four_digits.ttl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99
rdf:type aas:AdministrativeInformation ;
1010
<https://admin-shell.io/aas/3/1/HasDataSpecification/embeddedDataSpecifications> [
1111
rdf:type aas:EmbeddedDataSpecification ;
12+
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
13+
rdf:type aas:Reference ;
14+
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
15+
<https://admin-shell.io/aas/3/1/Reference/keys> [
16+
rdf:type aas:Key ;
17+
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
18+
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
19+
] ;
20+
] ;
1221
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecificationContent> [
1322
rdf:type aas:DataSpecificationIec61360 ;
1423
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/preferredName> [
@@ -23,15 +32,6 @@
2332
] ;
2433
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/value> "something_bebf64f0"^^xs:string ;
2534
] ;
26-
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
27-
rdf:type aas:Reference ;
28-
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
29-
<https://admin-shell.io/aas/3/1/Reference/keys> [
30-
rdf:type aas:Key ;
31-
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
32-
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
33-
] ;
34-
] ;
3535
] ;
3636
<https://admin-shell.io/aas/3/1/AdministrativeInformation/version> "1230"^^xs:string ;
3737
<https://admin-shell.io/aas/3/1/AdministrativeInformation/revision> "1230"^^xs:string ;

schemas/rdf/examples/generated/AdministrativeInformation/revisionOverPatternExamples/fuzzed_01.ttl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99
rdf:type aas:AdministrativeInformation ;
1010
<https://admin-shell.io/aas/3/1/HasDataSpecification/embeddedDataSpecifications> [
1111
rdf:type aas:EmbeddedDataSpecification ;
12+
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
13+
rdf:type aas:Reference ;
14+
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
15+
<https://admin-shell.io/aas/3/1/Reference/keys> [
16+
rdf:type aas:Key ;
17+
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
18+
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
19+
] ;
20+
] ;
1221
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecificationContent> [
1322
rdf:type aas:DataSpecificationIec61360 ;
1423
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/preferredName> [
@@ -23,15 +32,6 @@
2332
] ;
2433
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/value> "something_bebf64f0"^^xs:string ;
2534
] ;
26-
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
27-
rdf:type aas:Reference ;
28-
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
29-
<https://admin-shell.io/aas/3/1/Reference/keys> [
30-
rdf:type aas:Key ;
31-
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
32-
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
33-
] ;
34-
] ;
3535
] ;
3636
<https://admin-shell.io/aas/3/1/AdministrativeInformation/version> "1230"^^xs:string ;
3737
<https://admin-shell.io/aas/3/1/AdministrativeInformation/revision> "59"^^xs:string ;

schemas/rdf/examples/generated/AdministrativeInformation/revisionOverPatternExamples/fuzzed_02.ttl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99
rdf:type aas:AdministrativeInformation ;
1010
<https://admin-shell.io/aas/3/1/HasDataSpecification/embeddedDataSpecifications> [
1111
rdf:type aas:EmbeddedDataSpecification ;
12+
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
13+
rdf:type aas:Reference ;
14+
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
15+
<https://admin-shell.io/aas/3/1/Reference/keys> [
16+
rdf:type aas:Key ;
17+
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
18+
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
19+
] ;
20+
] ;
1221
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecificationContent> [
1322
rdf:type aas:DataSpecificationIec61360 ;
1423
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/preferredName> [
@@ -23,15 +32,6 @@
2332
] ;
2433
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/value> "something_bebf64f0"^^xs:string ;
2534
] ;
26-
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
27-
rdf:type aas:Reference ;
28-
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
29-
<https://admin-shell.io/aas/3/1/Reference/keys> [
30-
rdf:type aas:Key ;
31-
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
32-
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
33-
] ;
34-
] ;
3535
] ;
3636
<https://admin-shell.io/aas/3/1/AdministrativeInformation/version> "1230"^^xs:string ;
3737
<https://admin-shell.io/aas/3/1/AdministrativeInformation/revision> "116"^^xs:string ;

schemas/rdf/examples/generated/AdministrativeInformation/revisionOverPatternExamples/fuzzed_03.ttl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99
rdf:type aas:AdministrativeInformation ;
1010
<https://admin-shell.io/aas/3/1/HasDataSpecification/embeddedDataSpecifications> [
1111
rdf:type aas:EmbeddedDataSpecification ;
12+
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
13+
rdf:type aas:Reference ;
14+
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
15+
<https://admin-shell.io/aas/3/1/Reference/keys> [
16+
rdf:type aas:Key ;
17+
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
18+
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
19+
] ;
20+
] ;
1221
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecificationContent> [
1322
rdf:type aas:DataSpecificationIec61360 ;
1423
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/preferredName> [
@@ -23,15 +32,6 @@
2332
] ;
2433
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/value> "something_bebf64f0"^^xs:string ;
2534
] ;
26-
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
27-
rdf:type aas:Reference ;
28-
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
29-
<https://admin-shell.io/aas/3/1/Reference/keys> [
30-
rdf:type aas:Key ;
31-
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
32-
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
33-
] ;
34-
] ;
3535
] ;
3636
<https://admin-shell.io/aas/3/1/AdministrativeInformation/version> "1230"^^xs:string ;
3737
<https://admin-shell.io/aas/3/1/AdministrativeInformation/revision> "7"^^xs:string ;

schemas/rdf/examples/generated/AdministrativeInformation/revisionOverPatternExamples/fuzzed_04.ttl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99
rdf:type aas:AdministrativeInformation ;
1010
<https://admin-shell.io/aas/3/1/HasDataSpecification/embeddedDataSpecifications> [
1111
rdf:type aas:EmbeddedDataSpecification ;
12+
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
13+
rdf:type aas:Reference ;
14+
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
15+
<https://admin-shell.io/aas/3/1/Reference/keys> [
16+
rdf:type aas:Key ;
17+
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
18+
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
19+
] ;
20+
] ;
1221
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecificationContent> [
1322
rdf:type aas:DataSpecificationIec61360 ;
1423
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/preferredName> [
@@ -23,15 +32,6 @@
2332
] ;
2433
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/value> "something_bebf64f0"^^xs:string ;
2534
] ;
26-
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
27-
rdf:type aas:Reference ;
28-
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
29-
<https://admin-shell.io/aas/3/1/Reference/keys> [
30-
rdf:type aas:Key ;
31-
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
32-
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
33-
] ;
34-
] ;
3535
] ;
3636
<https://admin-shell.io/aas/3/1/AdministrativeInformation/version> "1230"^^xs:string ;
3737
<https://admin-shell.io/aas/3/1/AdministrativeInformation/revision> "32"^^xs:string ;

schemas/rdf/examples/generated/AdministrativeInformation/revisionOverPatternExamples/one.ttl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99
rdf:type aas:AdministrativeInformation ;
1010
<https://admin-shell.io/aas/3/1/HasDataSpecification/embeddedDataSpecifications> [
1111
rdf:type aas:EmbeddedDataSpecification ;
12+
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
13+
rdf:type aas:Reference ;
14+
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
15+
<https://admin-shell.io/aas/3/1/Reference/keys> [
16+
rdf:type aas:Key ;
17+
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
18+
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
19+
] ;
20+
] ;
1221
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecificationContent> [
1322
rdf:type aas:DataSpecificationIec61360 ;
1423
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/preferredName> [
@@ -23,15 +32,6 @@
2332
] ;
2433
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/value> "something_bebf64f0"^^xs:string ;
2534
] ;
26-
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
27-
rdf:type aas:Reference ;
28-
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
29-
<https://admin-shell.io/aas/3/1/Reference/keys> [
30-
rdf:type aas:Key ;
31-
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
32-
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
33-
] ;
34-
] ;
3535
] ;
3636
<https://admin-shell.io/aas/3/1/AdministrativeInformation/version> "1230"^^xs:string ;
3737
<https://admin-shell.io/aas/3/1/AdministrativeInformation/revision> "1"^^xs:string ;

schemas/rdf/examples/generated/AdministrativeInformation/revisionOverPatternExamples/three_digits.ttl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99
rdf:type aas:AdministrativeInformation ;
1010
<https://admin-shell.io/aas/3/1/HasDataSpecification/embeddedDataSpecifications> [
1111
rdf:type aas:EmbeddedDataSpecification ;
12+
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
13+
rdf:type aas:Reference ;
14+
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
15+
<https://admin-shell.io/aas/3/1/Reference/keys> [
16+
rdf:type aas:Key ;
17+
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
18+
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
19+
] ;
20+
] ;
1221
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecificationContent> [
1322
rdf:type aas:DataSpecificationIec61360 ;
1423
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/preferredName> [
@@ -23,15 +32,6 @@
2332
] ;
2433
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/value> "something_bebf64f0"^^xs:string ;
2534
] ;
26-
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
27-
rdf:type aas:Reference ;
28-
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
29-
<https://admin-shell.io/aas/3/1/Reference/keys> [
30-
rdf:type aas:Key ;
31-
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
32-
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
33-
] ;
34-
] ;
3535
] ;
3636
<https://admin-shell.io/aas/3/1/AdministrativeInformation/version> "1230"^^xs:string ;
3737
<https://admin-shell.io/aas/3/1/AdministrativeInformation/revision> "120"^^xs:string ;

schemas/rdf/examples/generated/AdministrativeInformation/revisionOverPatternExamples/two_digits.ttl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99
rdf:type aas:AdministrativeInformation ;
1010
<https://admin-shell.io/aas/3/1/HasDataSpecification/embeddedDataSpecifications> [
1111
rdf:type aas:EmbeddedDataSpecification ;
12+
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
13+
rdf:type aas:Reference ;
14+
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
15+
<https://admin-shell.io/aas/3/1/Reference/keys> [
16+
rdf:type aas:Key ;
17+
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
18+
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
19+
] ;
20+
] ;
1221
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecificationContent> [
1322
rdf:type aas:DataSpecificationIec61360 ;
1423
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/preferredName> [
@@ -23,15 +32,6 @@
2332
] ;
2433
<https://admin-shell.io/aas/3/1/DataSpecificationIec61360/value> "something_bebf64f0"^^xs:string ;
2534
] ;
26-
<https://admin-shell.io/aas/3/1/EmbeddedDataSpecification/dataSpecification> [
27-
rdf:type aas:Reference ;
28-
<https://admin-shell.io/aas/3/1/Reference/type> <https://admin-shell.io/aas/3/1/ReferenceTypes/ExternalReference> ;
29-
<https://admin-shell.io/aas/3/1/Reference/keys> [
30-
rdf:type aas:Key ;
31-
<https://admin-shell.io/aas/3/1/Key/type> <https://admin-shell.io/aas/3/1/KeyTypes/GlobalReference> ;
32-
<https://admin-shell.io/aas/3/1/Key/value> "urn:something14:18179b7a"^^xs:string ;
33-
] ;
34-
] ;
3535
] ;
3636
<https://admin-shell.io/aas/3/1/AdministrativeInformation/version> "1230"^^xs:string ;
3737
<https://admin-shell.io/aas/3/1/AdministrativeInformation/revision> "10"^^xs:string ;

0 commit comments

Comments
 (0)