Skip to content

Commit 7c4dad2

Browse files
Added SecurityDeclaration to Shipment
- Added securityDeclarations to Shipment (#344 & #346) - Added issuedForShipment to SecurityDeclaration (#344 & #346)
1 parent f75af72 commit 7c4dad2

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
working_draft/ontology/.project
33
working_draft/API/catalog-v001.xml
44
working_draft/ontology/catalog-v001.xml
5+
2025-07-standard/Data-Model/catalog-v001.xml

working_draft/ontology/IATA-1R-DM-Ontology.ttl

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
@base <https://onerecord.iata.org/ns/cargo#> .
1111

1212
<https://onerecord.iata.org/ns/cargo> rdf:type owl:Ontology ;
13-
owl:versionIRI <https://onerecord.iata.org/ns/cargo/3.2-rc2> ;
13+
owl:versionIRI <https://onerecord.iata.org/ns/cargo/3.2.1> ;
1414
owl:imports <https://onerecord.iata.org/ns/code-lists/1.1.0> ;
1515
dc:description "The ONE Record vocabulary, described using W3C RDF Schema and the Web Ontology Language."@en ;
1616
dc:title "ONE Record Ontology"@en ;
1717
terms:abstract "The ontology of the ONE Record standard is the core data model underlying the Linked Data solution drafted by the ONE Record standard: https://github.com/IATA-Cargo/ONE-Record. ONE Record is a standard for data sharing and creates a single record view of the shipment. This standard defines a common data model for the data that is shared via standardized and secured web API."@en ;
18-
terms:modified "24-06-2025" ;
18+
terms:modified "28-01-2026" ;
1919
terms:title "ONE Record Ontology"@en ;
2020
rdfs:comment """Details available on GitHub https://github.com/IATA-Cargo/ONE-Record
2121

22-
Version 3.2
22+
Version 3.2.1
2323

2424
Additions:
2525
- Added cityName to Address (#287)
@@ -84,6 +84,8 @@ Additions:
8484
- Added allotmentCode to BookingSegment (#321)
8585
- Added pieceGroups to BookingSegment (#321)
8686
- Added transportLegs to BookingSegment (#321)
87+
- Added securityDeclarations to Shipment (#344 & #346)
88+
- Added issuedForShipment to SecurityDeclaration (#344 & #346)
8789

8890
Removals:
8991
- Removed pieceReferences from WaybillLineItem (#303)
@@ -95,7 +97,7 @@ Visualization:
9597
Bugfixes:"""@en ;
9698
rdfs:isDefinedBy "https://www.iata.org/one-record/"^^xsd:anyURI ;
9799
rdfs:label "ONE Record Ontology"@en ;
98-
owl:versionInfo "3.2-rc2"@en .
100+
owl:versionInfo "3.2.1"@en .
99101

100102
#################################################################
101103
# Annotation properties
@@ -9117,6 +9119,10 @@ owl:thing rdf:type rdfs:Datatype .
91179119
owl:onProperty :issuedForPiece ;
91189120
owl:allValuesFrom :Piece
91199121
] ,
9122+
[ rdf:type owl:Restriction ;
9123+
owl:onProperty :issuedForShipment ;
9124+
owl:allValuesFrom :Shipment
9125+
] ,
91209126
[ rdf:type owl:Restriction ;
91219127
owl:onProperty :otherRegulatedEntities ;
91229128
owl:allValuesFrom :RegulatedEntity
@@ -9145,6 +9151,10 @@ owl:thing rdf:type rdfs:Datatype .
91459151
owl:onProperty :issuedBy ;
91469152
owl:maxCardinality "1"^^xsd:nonNegativeInteger
91479153
] ,
9154+
[ rdf:type owl:Restriction ;
9155+
owl:onProperty :issuedForShipment ;
9156+
owl:maxCardinality "1"^^xsd:nonNegativeInteger
9157+
] ,
91489158
[ rdf:type owl:Restriction ;
91499159
owl:onProperty :receivedFrom ;
91509160
owl:maxCardinality "1"^^xsd:nonNegativeInteger
@@ -9265,6 +9275,10 @@ owl:thing rdf:type rdfs:Datatype .
92659275
owl:onProperty :pieces ;
92669276
owl:allValuesFrom :Piece
92679277
] ,
9278+
[ rdf:type owl:Restriction ;
9279+
owl:onProperty :securityDeclarations ;
9280+
owl:allValuesFrom :SecurityDeclaration
9281+
] ,
92689282
[ rdf:type owl:Restriction ;
92699283
owl:onProperty :totalDimensions ;
92709284
owl:allValuesFrom :Dimensions

0 commit comments

Comments
 (0)