-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathIATA-1R-DM-Ontology.ttl
10585 lines (9049 loc) · 507 KB
/
IATA-1R-DM-Ontology.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <https://onerecord.iata.org/ns/cargo#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix codes: <https://onerecord.iata.org/ns/code-lists/> .
@prefix terms: <http://purl.org/dc/terms/> .
@base <https://onerecord.iata.org/ns/cargo#> .
<https://onerecord.iata.org/ns/cargo> rdf:type owl:Ontology ;
owl:versionIRI <https://onerecord.iata.org/ns/cargo/3.1> ;
dc:description "The ONE Record vocabulary, described using W3C RDF Schema and the Web Ontology Language."@en ;
dc:title "ONE Record Ontology"@en ;
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 ;
terms:modified "26-11-2024" ;
terms:title "ONE Record Ontology"@en ;
rdfs:comment """Details available on GitHub https://github.com/IATA-Cargo/ONE-Record
Version 3.1.0 (ongoing)
Additions:
- Added temperatureInstructions to Piece
(#227)
- Added new property textualPostalCode to Address (#221)
- Added new property operatingParties to TransportMovement (#229)
- Added new class AccountingNote (#231)
- Added new property accountingNoteIdentifier to AccountingNote (#231)
- Added new property accountingNoteText to AccountingNote (#231)
- Added new property accountingNotes to Waybill (#231)
- Added new property taxAmount to Waybill (#247)
- Added new property locationIndicator to OtherCharge (#247)
- Added new property reasonDescription to OtherCharge (#247)
- Added new property chargeQuantity to OtherCharge (#247)
- Added new property pieceReferences to WaybillLineItem (#265)
- Added new property uldReferences to WaybillLineItem (#265)
- Added new property densityGroupCode to BookingShipment (#248, #230)
Removals:
- Deprecated postalCode in favor of textualPostalCode (#221)
- Deprecated accountingInformation in favor of AccountingNote and included properties (#231)
- Removed specialHandlingCodes from Shipment (#228)
- Deprecated and removed chargeableWeightForRate from WaybillLineItem (#265)
- Deprecated and removed commodityItemNumberForRate from WaybillLineItem (#265)
- Deprecated and removed dimensionsForRate from WaybillLineItem (#265)
- Deprecated and removed goodsDescriptionForRate from WaybillLineItem (#265)
- Deprecated and removed grossWeightForRate from WaybillLineItem (#265)
- Deprecated and removed hsCodeForRate from WaybillLineItem (#265)
- Deprecated and removed pieceCountForRate from WaybillLineItem (#265)
- Deprecated and removed productionCountryForRate from WaybillLineItem (#265)
- Deprecated and removed slacForRate from WaybillLineItem (#265)
- Deprecated and removed uldTareWeightForRate from WaybillLineItem (#265)
- Deprecated and removed volumetricWeightForRate from WaybillLineItem (#265)
- Removed uldOwnerCode from WaybillLineItem (#265)
- Removed uldSerialNumber from WaybillLineItem (#265)
- Removed uldType from WaybillLineItem (#265)
Changes:
- Changed range of partyDetails from Organization to LogisticsAgent (#222)
- Lifted cardinality restriction on regulatedEntityAcceptor in SecurityDeclaration (#244)
- Lifted cardinality restriction on ofShipment in Piece (#244)
- ifted cadinality restriction on SecurityDeclaration#issuedForPiece (#280)
Visualization
(#223, #224):
- Added vis_ annotation properties for ontology visualizer
- Annotated as per business logic inverse properties by vis_inverseProperty
Bugfixes
:
- Removed line breaks in descriptions
- Simplified descriptions of Check and related objects
- Fixed labels (commodityItemNumber and WaybillLineItem)
(#234)
- Fixed RegEx pattern for waybillNumber to allow alphanumeric sequences (used in House Air Waybills)
- Fixes to descriptions"""@en ;
rdfs:isDefinedBy "https://www.iata.org/one-record/"^^xsd:anyURI ;
rdfs:label "ONE Record Ontology"@en ;
owl:versionInfo "3.1 RC1"@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/elements/1.1/description
dc:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/title
dc:title rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/abstract
terms:abstract rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/modified
terms:modified rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
terms:title rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#comment
owl:comment rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#maxCardinality
owl:maxCardinality rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#minCardinality
owl:minCardinality rdf:type owl:AnnotationProperty .
### https://onerecord.iata.org/ns/cargo#vis_element
:vis_element rdf:type owl:AnnotationProperty ;
rdfs:comment "Annotation for ontology visualizer. Indicates what part of the ontology the class is a part of (air core ontology, distribution, ...) to colorize accordingly."@en ;
rdfs:label "vis_element"@en ;
rdfs:range xsd:string .
### https://onerecord.iata.org/ns/cargo#vis_hidden
:vis_hidden rdf:type owl:AnnotationProperty ;
rdfs:comment "Annotation for ontology visualizer. Indicates that the link should be invisible in the ontology viewer."@en ;
rdfs:label "vis_invisible"@en ;
rdfs:range xsd:boolean .
### https://onerecord.iata.org/ns/cargo#vis_inverseProperty
:vis_inverseProperty rdf:type owl:AnnotationProperty ;
rdfs:comment "Annotation for ontology visualizer. Indicates what is shown as inverse property (edge) in the visualizer."@en ;
rdfs:label "vis_inverseProperty"@en ;
rdfs:range owl:topObjectProperty .
### https://onerecord.iata.org/ns/cargo#vis_level
:vis_level rdf:type owl:AnnotationProperty ;
rdfs:comment "Annotation for ontology visualizer. Indicates levels of importance to allow for different views."@en ;
rdfs:label "vis_level"@en ;
rdfs:range xsd:nonNegativeInteger .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#date
xsd:date rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#duration
xsd:duration rdf:type rdfs:Datatype .
### http://www.w3.org/2002/07/owl#thing
owl:thing rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### https://onerecord.iata.org/ns/cargo#accountingNotes
:accountingNotes rdf:type owl:ObjectProperty ;
rdfs:range :AccountingNote ;
rdfs:comment "Information about accounting notes (AWB box 10)" ;
rdfs:label "accountingNotes"@en ;
owl:comment "Domain :Waybill"@en .
### https://onerecord.iata.org/ns/cargo#actionTimeType
:actionTimeType rdf:type owl:ObjectProperty ;
rdfs:range :ActionTimeType ;
rdfs:comment "Enum stating the type of the Action"@en ;
rdfs:label "actionTimeType"@en ;
owl:comment "Domain :BookingShipment"@en ,
"Domain :LogisticsAction"@en .
### https://onerecord.iata.org/ns/cargo#activity
:activity rdf:type owl:ObjectProperty ;
rdfs:range :LogisticsActivity ;
rdfs:comment "Reference to the Activity that is performed as part of a Service"@en ;
rdfs:label "activity"@en ;
owl:comment "Domain :ActivitySequence"@en .
### https://onerecord.iata.org/ns/cargo#activitySequences
:activitySequences rdf:type owl:ObjectProperty ;
rdfs:range :ActivitySequence ;
rdfs:comment "Information about the Activities that are part of the Service and their sequence"@en ;
rdfs:label "activitySequences"@en ;
owl:comment "Domain :LogisticsService"@en .
### https://onerecord.iata.org/ns/cargo#address
:address rdf:type owl:ObjectProperty ;
rdfs:range :Address ;
rdfs:comment "Address details"@en ;
rdfs:label "address"@en ;
owl:comment "Domain :Location"@en .
### https://onerecord.iata.org/ns/cargo#addressCode
:addressCode rdf:type owl:ObjectProperty ;
rdfs:range :CodeListElement ;
rdfs:comment "Address identifier using special coding systems e.g. US CBP FIRMS code"@en ;
rdfs:label "addressCode"@en ;
owl:comment "Domain :Address"@en .
### https://onerecord.iata.org/ns/cargo#adjustments
:adjustments rdf:type owl:ObjectProperty ;
rdfs:range :Adjustments ;
rdfs:comment "Information about Adjustments performed on the BillingDetails"@en ;
rdfs:label "adjustments"@en ;
owl:comment "Domain :BillingDetails"@en .
### https://onerecord.iata.org/ns/cargo#aircraftPossibilityCode
:aircraftPossibilityCode rdf:type owl:ObjectProperty ;
rdfs:range codes:AircraftPossibilityCode ;
rdfs:comment "Type of aircraft to be used if any specific requirements (e.g. Pure freighter, etc.)"@en ;
rdfs:label "aircraftPossibilityCode"@en ;
owl:comment "Domain :BookingPreferences"@en .
### https://onerecord.iata.org/ns/cargo#answer
:answer rdf:type owl:ObjectProperty ;
rdfs:range :Answer ;
rdfs:comment "Reference to the Answer to the Question"@en ;
rdfs:label "answer"@en ;
owl:comment "Domain :Question"@en ;
:vis_inverseProperty :question .
### https://onerecord.iata.org/ns/cargo#answerActor
:answerActor rdf:type owl:ObjectProperty ;
rdfs:range :Actor ;
rdfs:comment "Reference to the Actor giving the Answer"@en ;
rdfs:label "answerActor"@en ;
owl:comment "Domain :Answer"@en .
### https://onerecord.iata.org/ns/cargo#answerValue
:answerValue rdf:type owl:ObjectProperty ;
rdfs:range :Value ;
rdfs:comment "Information about an answer Value of any kind of the Answer"@en ;
rdfs:label "answerValue"@en ;
owl:comment "Domain :Answer"@en .
### https://onerecord.iata.org/ns/cargo#appliedOnPieces
:appliedOnPieces rdf:type owl:ObjectProperty ;
rdfs:range :Piece ;
rdfs:comment "Piece on which the Packaging type is applicable"@en ;
rdfs:label "appliedOnPieces"@en ;
owl:comment "Domain :PackagingType"@en ;
:vis_inverseProperty :packagingType .
### https://onerecord.iata.org/ns/cargo#arrivalLocation
:arrivalLocation rdf:type owl:ObjectProperty ;
rdfs:range :Location ;
rdfs:comment "Reference to the arrival Location"@en ;
rdfs:label "arrivalLocation"@en ;
owl:comment "Domain owl:Thing"@en .
### https://onerecord.iata.org/ns/cargo#associatedEpermit
:associatedEpermit rdf:type owl:ObjectProperty ;
rdfs:range :EpermitConsignment ;
rdfs:comment "Reference to the permits associated with the Live Animals"@en ;
rdfs:label "associatedEpermit"@en ;
owl:comment "Domain :PieceLiveAnimals"@en ;
:vis_inverseProperty :consignmentItems .
### https://onerecord.iata.org/ns/cargo#associatedOrganization
:associatedOrganization rdf:type owl:ObjectProperty ;
rdfs:range :Organization ;
rdfs:comment "Reference to the Organization the Actor is associated with"@en ;
rdfs:label "associatedOrganization"@en ;
owl:comment "Domain :Actor"@en ;
:vis_inverseProperty :contactPersons .
### https://onerecord.iata.org/ns/cargo#attachedIotDevices
:attachedIotDevices rdf:type owl:ObjectProperty ;
rdfs:range :IotDevice ;
rdfs:comment "References to all connected IotDevices"@en ;
rdfs:label "attachedIotDevices"@en ;
owl:comment "Domain :PhysicalLogisticsObject"@en ;
:vis_inverseProperty :attachedToObject .
### https://onerecord.iata.org/ns/cargo#attachedToObject
:attachedToObject rdf:type owl:ObjectProperty ;
rdfs:range :PhysicalLogisticsObject ;
rdfs:comment "Reference to the PhysicalLogisticsObject the IotDevice is attached to"@en ;
rdfs:label "attachedToObject"@en ;
owl:comment "Domain :IotDevice"@en ;
:vis_inverseProperty :attachedIotDevices .
### https://onerecord.iata.org/ns/cargo#awbUseIndicator
:awbUseIndicator rdf:type owl:ObjectProperty ;
rdfs:range codes:AWBUseIndicator ;
rdfs:comment "It must either contain the values of R for Revenue AWB, V for Void AWB or S for Service AWB."@en ;
rdfs:label "awbUseIndicator"@en ;
owl:comment "Domain :BillingDetails"@en .
### https://onerecord.iata.org/ns/cargo#basedAtLocation
:basedAtLocation rdf:type owl:ObjectProperty ;
rdfs:range :Location ;
rdfs:comment "Reference to the Location where the Organization is based at or headquartered"@en ;
rdfs:label "basedAtLocation"@en ;
owl:comment "Domain :Organization"@en .
### https://onerecord.iata.org/ns/cargo#billingChargeIdentifier
:billingChargeIdentifier rdf:type owl:ObjectProperty ;
rdfs:range codes:ChargeIdentifier ;
rdfs:comment "Billing charge identifiers to be used for CASS. Refer to CargoXML Code List 1.33"@en ;
rdfs:label "billingChargeIdentifier"@en ;
owl:comment "Domain :Ratings"@en .
### https://onerecord.iata.org/ns/cargo#billingDetails
:billingDetails rdf:type owl:ObjectProperty ;
rdfs:range :BillingDetails ;
rdfs:comment "Reference to the BillingDetails of the Waybill"@en ;
rdfs:label "billingDetails"@en ;
owl:comment "Domain :Waybill"@en ;
:vis_inverseProperty :detailedWaybill .
### https://onerecord.iata.org/ns/cargo#booking
:booking rdf:type owl:ObjectProperty ;
rdfs:range :Booking ;
rdfs:comment "Reference to the Booking"@en ;
rdfs:label "booking"@en ;
owl:comment "Domain :BookingRequest"@en ;
:vis_inverseProperty :bookingRequest .
### https://onerecord.iata.org/ns/cargo#bookingOptions
:bookingOptions rdf:type owl:ObjectProperty ;
rdfs:range :BookingOption ;
rdfs:comment "Reference to all Booking Options"@en ;
rdfs:label "bookingOptions"@en ;
owl:comment "Domain :BookingOptionRequest"@en ;
:vis_inverseProperty :forBookingOptionRequest .
### https://onerecord.iata.org/ns/cargo#bookingPreference
:bookingPreference rdf:type owl:ObjectProperty ;
rdfs:range :BookingPreferences ;
rdfs:comment "Reference to the Booking preferences"@en ;
rdfs:label "bookingPreference"@en ;
owl:comment "Domain :BookingOptionRequest"@en .
### https://onerecord.iata.org/ns/cargo#bookingRequest
:bookingRequest rdf:type owl:ObjectProperty ;
rdfs:range :BookingRequest ;
rdfs:comment "Reference to the Booking Request"@en ;
rdfs:label "bookingRequest"@en ;
owl:comment "Domain :Booking"@en ;
:vis_inverseProperty :booking .
### https://onerecord.iata.org/ns/cargo#bookingShipmentDetails
:bookingShipmentDetails rdf:type owl:ObjectProperty ;
rdfs:range :BookingShipment ;
rdfs:comment "Reference to the BookingShipment if required"@en ;
rdfs:label "bookingShipmentDetails"@en ;
owl:comment "Domain :BookingOptionRequest"@en ;
:vis_inverseProperty :forBookingOptionRequest .
### https://onerecord.iata.org/ns/cargo#bookingStatus
:bookingStatus rdf:type owl:ObjectProperty ;
rdfs:range :BookingStatus ;
rdfs:comment "Status of the Booking"@en ;
rdfs:label "bookingStatus"@en ;
owl:comment "Domain :Booking"@en .
### https://onerecord.iata.org/ns/cargo#bookingTimes
:bookingTimes rdf:type owl:ObjectProperty ;
rdfs:range :BookingTimes ;
rdfs:comment "Information about the Booking Times of a provided Booking Option"@en ;
rdfs:label "bookingTimes"@en ;
owl:comment "Domain :BookingOption"@en .
### https://onerecord.iata.org/ns/cargo#bookingToUpdate
:bookingToUpdate rdf:type owl:ObjectProperty ;
rdfs:range :Booking ;
rdfs:comment "Reference to the Booking to update"@en ;
rdfs:label "bookingToUpdate"@en ;
owl:comment "Domain :BookingOptionRequest"@en ;
:vis_inverseProperty :updateBookingOptionRequests .
### https://onerecord.iata.org/ns/cargo#calculatedEmissions
:calculatedEmissions rdf:type owl:ObjectProperty ;
rdfs:range :Value ;
rdfs:comment "CO2 emissions calculated"@en ;
rdfs:label "calculatedEmissions"@en ;
owl:comment "Domain :CO2Emissions"@en .
### https://onerecord.iata.org/ns/cargo#calculationFor
:calculationFor rdf:type owl:ObjectProperty ;
rdfs:range :LogisticsObject ;
rdfs:comment "Reference to the TransportMovement or TransportLegs the CO2Emissions have been calculated for"@en ;
rdfs:label "calculationFor"@en ;
owl:comment "Domain :CO2Emissions"@en ;
:vis_inverseProperty :co2Emissions .
### https://onerecord.iata.org/ns/cargo#carrier
:carrier rdf:type owl:ObjectProperty ;
rdfs:range :Carrier ;
rdfs:comment "Reference to the operating carrier"@en ;
rdfs:label "carrier"@en ;
owl:comment "Domain :BookingOption"@en .
### https://onerecord.iata.org/ns/cargo#carrierChargeCode
:carrierChargeCode rdf:type owl:ObjectProperty ;
rdfs:range codes:ChargeCode ;
rdfs:comment "One letter charge code as per bullet point 12 - data element 13 from AWB"@en ;
rdfs:label "carrierChargeCode"@en ;
owl:comment "Domain owl:Thing"@en .
### https://onerecord.iata.org/ns/cargo#carrierDeclarationPlace
:carrierDeclarationPlace rdf:type owl:ObjectProperty ;
rdfs:range :Location ;
rdfs:comment "Location of individual or company involved in the movement of a consignment or Coded representation of a specific airport/city code"@en ;
rdfs:label "carrierDeclarationPlace"@en ;
owl:comment "Domain :Waybill"@en .
### https://onerecord.iata.org/ns/cargo#carrierProduct
:carrierProduct rdf:type owl:ObjectProperty ;
rdfs:range :CarrierProduct ;
rdfs:comment "Reference to the Carrier product if known"@en ;
rdfs:label "carrierProduct"@en ;
owl:comment "Domain owl:Thing"@en .
### https://onerecord.iata.org/ns/cargo#certifiedByActor
:certifiedByActor rdf:type owl:ObjectProperty ;
rdfs:range :Person ;
rdfs:comment "Reference to the Actor certifying the result of the Check if required"@en ;
rdfs:label "certifiedByActor"@en ;
owl:comment "Domain :CheckTotalResult"@en .
### https://onerecord.iata.org/ns/cargo#chargeCode
:chargeCode rdf:type owl:ObjectProperty ;
rdfs:range codes:ChargeCode ;
rdfs:comment "Charge code, refer to CargoXML Code List 1.1"@en ;
rdfs:label "chargeCode"@en ;
owl:comment "Domain :Price"@en .
### https://onerecord.iata.org/ns/cargo#chargePaymentType
:chargePaymentType rdf:type owl:ObjectProperty ;
rdfs:range codes:PrepaidCollectIndicator ;
rdfs:comment "Indicates if charge is prepaid or collect (P, C)"@en ;
rdfs:label "chargePaymentType"@en ;
owl:comment "Domain owl:Thing"@en .
### https://onerecord.iata.org/ns/cargo#chargeType
:chargeType rdf:type owl:ObjectProperty ;
rdfs:range codes:ChargeIdentifier ;
rdfs:comment "Charge type related to amount total as per bullet points 2/21 - data elements 24A - 3B from AWB"@en ;
rdfs:label "chargeType"@en ;
owl:comment "Domain owl:Thing"@en .
### https://onerecord.iata.org/ns/cargo#chargeableWeight
:chargeableWeight rdf:type owl:ObjectProperty ;
rdfs:range :Value ;
rdfs:comment "Chargeable weight"@en ;
rdfs:label "chargeableWeight"@en ;
owl:comment "Domain :VolumetricWeight"@en .
### https://onerecord.iata.org/ns/cargo#chargeableWeightForRate
:chargeableWeightForRate rdf:type owl:ObjectProperty ;
rdfs:range :Value ;
rdfs:comment "Chargeable weight for which the rate description details apply"@en ;
rdfs:label "chargeableWeightForRate"@en ;
owl:comment "Domain :WaybillLineItem"@en ;
owl:deprecated "true"^^xsd:boolean .
### https://onerecord.iata.org/ns/cargo#checkActions
:checkActions rdf:type owl:ObjectProperty ;
rdfs:range :Check ;
rdfs:comment "References to CheckActions performed for the Activity"@en ;
rdfs:label "checkActions"@en ;
owl:comment "Domain :LogisticsActivity"@en ;
:vis_inverseProperty :servedActivity .
### https://onerecord.iata.org/ns/cargo#checkTemplate
:checkTemplate rdf:type owl:ObjectProperty ;
rdfs:range :CheckTemplate ;
rdfs:comment "Reference to the CheckTemplate the Question is from"@en ;
rdfs:label "checkTemplate"@en ;
owl:comment "Domain :Question"@en ;
:vis_inverseProperty :questions .
### https://onerecord.iata.org/ns/cargo#checkTotalResult
:checkTotalResult rdf:type owl:ObjectProperty ;
rdfs:range :CheckTotalResult ;
rdfs:comment "Reference to the result of the Check"@en ;
rdfs:label "checkTotalResult"@en ;
owl:comment "Domain :Check"@en ;
:vis_inverseProperty :resultOfCheck .
### https://onerecord.iata.org/ns/cargo#checkedObject
:checkedObject rdf:type owl:ObjectProperty ;
rdfs:range :LogisticsObject ;
rdfs:comment "Reference to the checked Object"@en ;
rdfs:label "checkedObject"@en ;
owl:comment "Domain :Check"@en ;
:vis_inverseProperty :checks .
### https://onerecord.iata.org/ns/cargo#checker
:checker rdf:type owl:ObjectProperty ;
rdfs:range :Actor ;
rdfs:comment "Reference to the Actor performing the Check"@en ;
rdfs:label "checker"@en ;
owl:comment "Domain :Check"@en .
### https://onerecord.iata.org/ns/cargo#checks
:checks rdf:type owl:ObjectProperty ;
rdfs:range :Check ;
rdfs:comment "References to the CheckActions performed on the object"@en ;
rdfs:label "checks"@en ;
owl:comment "Domain :LogisticsObject"@en ;
:vis_inverseProperty :checkedObject .
### https://onerecord.iata.org/ns/cargo#cityCode
:cityCode rdf:type owl:ObjectProperty ;
rdfs:range :CodeListElement ;
rdfs:comment "UN/LOCODE city code (5 letter) or IATA city code (3 letter)"@en ;
rdfs:label "cityCode"@en ;
owl:comment "Domain :Address"@en .
### https://onerecord.iata.org/ns/cargo#co2Emissions
:co2Emissions rdf:type owl:ObjectProperty ;
rdfs:range :CO2Emissions ;
rdfs:comment "References to CO2Emissions"@en ;
rdfs:label "co2Emissions"@en ;
owl:comment "Domain :LogisticsObject"@en ;
:vis_inverseProperty :calculationFor .
### https://onerecord.iata.org/ns/cargo#composedMaterials
:composedMaterials rdf:type owl:ObjectProperty ;
rdfs:range :LoadingMaterial ;
rdfs:comment "References to the Materials being built-up or broken-down"@en ;
rdfs:label "composedMaterials"@en ;
owl:comment "Domain :Composing"@en ;
:vis_inverseProperty :involvedInActions .
### https://onerecord.iata.org/ns/cargo#composedPieces
:composedPieces rdf:type owl:ObjectProperty ;
rdfs:range :Piece ;
rdfs:comment "References to the Pieces being built-up or broken-down"@en ;
rdfs:label "composedPieces"@en ;
owl:comment "Domain :Composing"@en ;
:vis_inverseProperty :involvedInActions .
### https://onerecord.iata.org/ns/cargo#compositionActions
:compositionActions rdf:type owl:ObjectProperty ;
rdfs:range :Composing ;
rdfs:comment "References to all CompositionActions performed for the UnitComposition"@en ;
rdfs:label "compositionActions"@en ;
owl:comment "Domain :UnitComposition"@en ;
:vis_inverseProperty :servedActivity .
### https://onerecord.iata.org/ns/cargo#compositionType
:compositionType rdf:type owl:ObjectProperty ;
rdfs:range :CompositionType ;
rdfs:comment "Enum stating whether the CompositionAction describes build-up or break-down"@en ;
rdfs:label "compositionType"@en ;
owl:comment "Domain :Composing"@en .
### https://onerecord.iata.org/ns/cargo#connectedSensors
:connectedSensors rdf:type owl:ObjectProperty ;
rdfs:range :Sensor ;
rdfs:comment "Reference to the sensors linked to the device"@en ;
rdfs:label "connectedSensors"@en ;
owl:comment "Domain :IotDevice"@en ;
:vis_inverseProperty :partOfIotDevice .
### https://onerecord.iata.org/ns/cargo#consignee
:consignee rdf:type owl:ObjectProperty ;
rdfs:range :Organization ;
rdfs:comment "Reference to the Organization that fulfills the role of the consignee, for a LiveAnimalsEpermit it has to include complete name and address (box 3)"@en ;
rdfs:label "consignee"@en ;
owl:comment "Domain owl:Thing"@en .
### https://onerecord.iata.org/ns/cargo#consignmentItems
:consignmentItems rdf:type owl:ObjectProperty ;
rdfs:range :PieceLiveAnimals ;
rdfs:comment "Reference to te pieces (Live Animals) of the permit"@en ;
rdfs:label "consignmentItems"@en ;
owl:comment "Domain :EpermitConsignment"@en ;
:vis_inverseProperty :associatedEpermit .
### https://onerecord.iata.org/ns/cargo#consignments
:consignments rdf:type owl:ObjectProperty ;
rdfs:range :EpermitConsignment ;
rdfs:comment "Reference to the pieces and properties linked to the Permit (box 7 to 12)"@en ;
rdfs:label "consignments"@en ;
owl:comment "Domain :LiveAnimalsEpermit"@en ;
:vis_inverseProperty :epermit .
### https://onerecord.iata.org/ns/cargo#contactDetailType
:contactDetailType rdf:type owl:ObjectProperty ;
rdfs:range :ContactDetailType ;
rdfs:comment "Type of the contact details, e.g. Phone number, Mail address"@en ;
rdfs:label "contactDetailType"@en ;
owl:comment "Domain :ContactDetail"@en .
### https://onerecord.iata.org/ns/cargo#contactDetails
:contactDetails rdf:type owl:ObjectProperty ;
rdfs:range :ContactDetail ;
rdfs:comment "Information about contactDetails"@en ;
rdfs:label "contactDetails"@en ;
owl:comment "Domain owl:Thing"@en .
### https://onerecord.iata.org/ns/cargo#contactPersons
:contactPersons rdf:type owl:ObjectProperty ;
rdfs:range :Actor ;
rdfs:comment "References to Actors (Person, NonHumanActor) acting as contacts"@en ;
rdfs:label "contactPersons"@en ;
owl:comment "Domain owl:Thing"@en ;
:vis_inverseProperty :associatedOrganization .
### https://onerecord.iata.org/ns/cargo#contactRole
:contactRole rdf:type owl:ObjectProperty ;
rdfs:range :ContactRole ;
rdfs:comment "Contact type - e.g. Emergency contact, Customs contact, Customer contact"@en ;
rdfs:label "contactRole"@en ;
owl:comment "Domain :Person"@en .
### https://onerecord.iata.org/ns/cargo#containedItems
:containedItems rdf:type owl:ObjectProperty ;
rdfs:range :Item ;
rdfs:comment "Reference to the item(s) contained in the piece"@en ;
rdfs:label "containedItems"@en ;
owl:comment "Domain :Piece"@en ;
:vis_inverseProperty :inPiece .
### https://onerecord.iata.org/ns/cargo#containedPieces
:containedPieces rdf:type owl:ObjectProperty ;
rdfs:range :Piece ;
rdfs:comment "Details of contained piece(s)"@en ;
rdfs:label "containedPieces"@en ;
owl:comment "Domain :Piece"@en ;
:vis_inverseProperty :inPiece .
### https://onerecord.iata.org/ns/cargo#contentCode
:contentCode rdf:type owl:ObjectProperty ;
rdfs:range :CodeListElement ;
rdfs:comment "Customs, Security and Regulatory Control Information Identifier. Coded indicator qualifying Customs related information: Item Number \"I\", Exemption Legend \"L\", System Downtime Reference \"S\", Unique Consignment Reference Number \"U\", Movement Reference Number \"M\" . Refers to Code List 1.1. Condition: At least one of the three elements (Country Code, Information Identifier or Customs, Security and Regulatory Control Information Identifier) must be completed"@en ;
rdfs:label "contentCode"@en ;
owl:comment "Domain :CustomsInformation"@en .
### https://onerecord.iata.org/ns/cargo#contentOfDgProductRadioactive
:contentOfDgProductRadioactive rdf:type owl:ObjectProperty ;
rdfs:range :DgProductRadioactive ;
rdfs:comment "Reference to the DgProductRadioactive this Isotope is contained in"@en ;
rdfs:label "contentOfDgProductRadioactive"@en ;
owl:comment "Domain :DgRadioactiveIsotope"@en ;
:vis_inverseProperty :isotopes .
### https://onerecord.iata.org/ns/cargo#contentProductionCountry
:contentProductionCountry rdf:type owl:ObjectProperty ;
rdfs:range :CodeListElement ;
rdfs:comment "Goods production country, mandatory when there are no Items. Refer ISO 3166-2"@en ;
rdfs:label "contentProductionCountry"@en ;
owl:comment "Domain :Piece"@en .
### https://onerecord.iata.org/ns/cargo#contentProducts
:contentProducts rdf:type owl:ObjectProperty ;
rdfs:range :Product ;
rdfs:comment "Reference to the Products describing the content of the Piece, mandatory if no data on Item level is used"@en ;
rdfs:label "contentProducts"@en ;
owl:comment "Domain :Piece"@en ;
:vis_inverseProperty :describedObjects .
### https://onerecord.iata.org/ns/cargo#country
:country rdf:type owl:ObjectProperty ;
rdfs:range :CodeListElement ;
rdfs:comment "Country details. Refer ISO 3166-2"@en ;
rdfs:label "country"@en ;
owl:comment "Domain owl:Thing"@en .
### https://onerecord.iata.org/ns/cargo#coveringOrganization
:coveringOrganization rdf:type owl:ObjectProperty ;
rdfs:range :Organization ;
rdfs:comment "Party covering the insurance "@en ;
rdfs:label "coveringOrganization"@en ;
owl:comment "Domain :Insurance"@en .
### https://onerecord.iata.org/ns/cargo#createdAtLocation
:createdAtLocation rdf:type owl:ObjectProperty ;
rdfs:range :Location ;
rdfs:comment "Location of the document, e.g. location where the document was emitted"@en ;
rdfs:label "createdAtLocation"@en ;
owl:comment "Domain :ExternalReference"@en .
### https://onerecord.iata.org/ns/cargo#currency
:currency rdf:type owl:ObjectProperty ;
rdfs:range codes:CurrencyCode ;
rdfs:comment "Preferred unit for currency"@en ;
rdfs:label "currency"@en ;
owl:comment "Domain :UnitsPreference"@en .
### https://onerecord.iata.org/ns/cargo#currencyUnit
:currencyUnit rdf:type owl:ObjectProperty ;
rdfs:range codes:CurrencyCode ;
rdfs:comment "Information about the currency used in a CurrencyValue. Create an instance of CurrencyCode based on ISO 4217"@en ;
rdfs:label "currencyUnit"@en ;
owl:comment "Domain :CurrencyValue"@en .
### https://onerecord.iata.org/ns/cargo#customsInformation
:customsInformation rdf:type owl:ObjectProperty ;
rdfs:range :CustomsInformation ;
rdfs:comment "Customs details"@en ;
rdfs:label "customsInformation"@en ;
owl:comment "Domain :LogisticsObject"@en ;
:vis_inverseProperty :issuedForPiece ,
:issuedForShipment .
### https://onerecord.iata.org/ns/cargo#customsOriginCode
:customsOriginCode rdf:type owl:ObjectProperty ;
rdfs:range :CodeListElement ;
rdfs:comment "Code indicating the origin of goods for Customs purposes (e.g. For goods in free circulation in the EU) List to be provided by local authorities"@en ;
rdfs:label "customsOriginCode"@en ;
owl:comment "Domain :Waybill"@en .
### https://onerecord.iata.org/ns/cargo#declaredValueForCarriage
:declaredValueForCarriage rdf:type owl:ObjectProperty ;
rdfs:range :CurrencyValue ;
rdfs:comment "The value of a shipment declared for carriage purposes"@en ;
rdfs:label "declaredValueForCarriage"@en ;
owl:comment "Domain :Waybill"@en .
### https://onerecord.iata.org/ns/cargo#declaredValueForCustoms
:declaredValueForCustoms rdf:type owl:ObjectProperty ;
rdfs:range :CurrencyValue ;
rdfs:comment "The value of a shipment declared for customs purposes"@en ;
rdfs:label "declaredValueForCustoms"@en ;
owl:comment "Domain :Waybill"@en .
### https://onerecord.iata.org/ns/cargo#demurrageCode
:demurrageCode rdf:type owl:ObjectProperty ;
rdfs:range codes:DemurrageCode ;
rdfs:comment "Contains three designator of demurrage code, refer to RP 1654 (BCC, HHH, XXX, ZZZ)"@en ;
rdfs:label "demurrageCode"@en ;
owl:comment "Domain :LoadingUnit"@en .
### https://onerecord.iata.org/ns/cargo#densityGroupCode
:densityGroupCode rdf:type owl:ObjectProperty ;
rdfs:range codes:DensityGroupCode ;
rdfs:comment "Density Group Code as defined in cXML code list 2"@en ;
rdfs:label "densityGroupCode"@en .
### https://onerecord.iata.org/ns/cargo#departureLocation
:departureLocation rdf:type owl:ObjectProperty ;
rdfs:range :Location ;
rdfs:comment "Reference to the departure Location"@en ;
rdfs:label "departureLocation"@en ;
owl:comment "Domain owl:Thing"@en .
### https://onerecord.iata.org/ns/cargo#describedObjects
:describedObjects rdf:type owl:ObjectProperty ;
rdfs:range :PhysicalLogisticsObject ;
rdfs:comment "Reference to the Items or Pieces in which the product can be found."@en ;
rdfs:label "describedObjects"@en ;
owl:comment "Domain :Product"@en ;
:vis_inverseProperty :contentProducts ,
:ofProduct .
### https://onerecord.iata.org/ns/cargo#destinationCharges
:destinationCharges rdf:type owl:ObjectProperty ;
rdfs:range :CurrencyValue ;
rdfs:comment "Charges levied at destination accruing to the last carrier, in destination currency"@en ;
rdfs:label "destinationCharges"@en ;
owl:comment "Domain :Waybill"@en .
### https://onerecord.iata.org/ns/cargo#detailedWaybill
:detailedWaybill rdf:type owl:ObjectProperty ;
rdfs:range :Waybill ;
rdfs:comment "Reference to the Waybill"@en ;
rdfs:label "detailedWaybill"@en ;
owl:comment "Domain :BillingDetails"@en ;
:vis_inverseProperty :billingDetails .
### https://onerecord.iata.org/ns/cargo#dgDeclaration
:dgDeclaration rdf:type owl:ObjectProperty ;
rdfs:range :DgDeclaration ;
rdfs:comment "Reference to the Dangerous Goods declaration"@en ;
rdfs:label "dgDeclaration"@en ;
owl:comment "Domain :PieceDg"@en ;
:vis_inverseProperty :issuedForPiece .
### https://onerecord.iata.org/ns/cargo#dgRaTypeCode
:dgRaTypeCode rdf:type owl:ObjectProperty ;
rdfs:range codes:RaTypeCode ;
rdfs:comment "The category of the package or all packed in one. Complete text to be transmitted: I-White, II-Yellow, III-Yellow instead of I, II, III"@en ;
rdfs:label "dgRaTypeCode"@en ;
owl:comment "Domain :DgProductRadioactive"@en .
### https://onerecord.iata.org/ns/cargo#dgRadioactiveMaterial
:dgRadioactiveMaterial rdf:type owl:ObjectProperty ;
rdfs:range :DgProductRadioactive ;
rdfs:comment "Dg Radioactive Material"@en ;
rdfs:label "dgRadioactiveMaterial"@en ;
owl:comment "Domain :ProductDg"@en ;
:vis_inverseProperty :forProductDg .
### https://onerecord.iata.org/ns/cargo#dimensions
:dimensions rdf:type owl:ObjectProperty ;
rdfs:range :Dimensions ;
rdfs:comment "Dimensions details"@en ;
rdfs:label "dimensions"@en ;
owl:comment "Domain owl:Thing"@en .
### https://onerecord.iata.org/ns/cargo#dimensionsForRate
:dimensionsForRate rdf:type owl:ObjectProperty ;
rdfs:range :Dimensions ;
rdfs:comment "Information about the Dimensions used for the rate described by the Line Item"@en ;
rdfs:label "dimensionsForRate"@en ;
owl:comment "Domain :WaybillLineItem"@en ;
owl:deprecated "true"^^xsd:boolean .
### https://onerecord.iata.org/ns/cargo#dimensionsUnit
:dimensionsUnit rdf:type owl:ObjectProperty ;
rdfs:range codes:DimensionsUnitCode ;
rdfs:comment "Preferred unit for measurement and dimensions"@en ;
rdfs:label "dimensionsUnit"@en ;
owl:comment "Domain :UnitsPreference"@en .
### https://onerecord.iata.org/ns/cargo#direction
:direction rdf:type owl:ObjectProperty ;
rdfs:range :DirectionType ;
rdfs:comment "Direction to indicate if it's Inbound or Outbound"@en ;
rdfs:label "direction"@en ;
owl:comment "Domain :MovementTime"@en .
### https://onerecord.iata.org/ns/cargo#distanceCalculated
:distanceCalculated rdf:type owl:ObjectProperty ;
rdfs:range :Value ;
rdfs:comment "Information about the calculated distance"@en ;
rdfs:label "distanceCalculated"@en ;
owl:comment "Domain :TransportMovement"@en .
### https://onerecord.iata.org/ns/cargo#distanceMeasured
:distanceMeasured rdf:type owl:ObjectProperty ;
rdfs:range :Value ;
rdfs:comment "Information about the measured distance"@en ;
rdfs:label "distanceMeasured"@en ;
owl:comment "Domain :TransportMovement"@en .
### https://onerecord.iata.org/ns/cargo#documents
:documents rdf:type owl:ObjectProperty ;
rdfs:range :ExternalReference ;
rdfs:comment "Linked documents to the person, e.g. driver's license, ID, etc."@en ;
rdfs:label "documents"@en ;
owl:comment "Domain :Person"@en ;
:vis_inverseProperty :referenceForObjects .
### https://onerecord.iata.org/ns/cargo#dryIceWeight
:dryIceWeight rdf:type owl:ObjectProperty ;
rdfs:range :Value ;
rdfs:comment "Weight of dry ice"@en ;
rdfs:label "dryIceWeight"@en ;
owl:comment "Domain :PieceGroup"@en .
### https://onerecord.iata.org/ns/cargo#elevation
:elevation rdf:type owl:ObjectProperty ;
rdfs:range :Value ;
rdfs:comment "Elevation from sea level - Change of data type to Value as of ontology v1.1"@en ;
rdfs:label "elevation"@en ;
owl:comment "Domain :Geolocation"@en .
### https://onerecord.iata.org/ns/cargo#emergencyContact
:emergencyContact rdf:type owl:ObjectProperty ;
rdfs:range :Person ;
rdfs:comment "Contains the Emergency contact name (e.g. the name of the agency) and phone number (min required)"@en ;
rdfs:label "emergencyContact"@en ;
owl:comment "Domain :ItemDg"@en .
### https://onerecord.iata.org/ns/cargo#entitlement
:entitlement rdf:type owl:ObjectProperty ;
rdfs:range codes:EntitlementCode ;
rdfs:comment "Entitlement code to define if charges are Due carrier (C) or Due agent (A). Refer to CXML Code List 1.3"@en ;
rdfs:label "entitlement"@en ;
owl:comment "Domain owl:Thing"@en .
### https://onerecord.iata.org/ns/cargo#epermit
:epermit rdf:type owl:ObjectProperty ;
rdfs:range :LiveAnimalsEpermit ;
rdfs:comment "Reference to the Epermit of the consignment"@en ;
rdfs:label "epermit"@en ;
owl:comment "Domain :EpermitConsignment"@en ;
:vis_inverseProperty :consignments .
### https://onerecord.iata.org/ns/cargo#eventCode
:eventCode rdf:type owl:ObjectProperty ;
rdfs:range :CodeListElement ;
rdfs:comment "Movement or milestone code. Can hold a named individual of the StatusCode core code list (corresponding to cXML code list 1.18), but can also be referring to different code lists."@en ;
rdfs:label "eventCode"@en ;
owl:comment "Domain :LogisticsEvent"@en .
### https://onerecord.iata.org/ns/cargo#eventFor
:eventFor rdf:type owl:ObjectProperty ;
rdfs:range :LogisticsObject ;
rdfs:comment "Refers to the URI of the linked object(s)" ;
rdfs:label "eventFor"@en ;
owl:comment "Domain :LogisticsEvent"@en .