-
Notifications
You must be signed in to change notification settings - Fork 0
/
vocab.ttl
9556 lines (8088 loc) · 485 KB
/
vocab.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 dc11: <http://purl.org/dc/elements/1.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
<https://edi3.org/vocab/mmt#>
dc11:creator "EDI3"^^xsd:string ;
dc11:date "2020-06-09"^^xsd:string ;
dc11:description "MMT Vocabulary"^^xsd:string ;
dc11:identifier "https://edi3.org/vocab/mmt#"^^xsd:string ;
dc11:publisher "EDI3"^^xsd:string ;
dc11:title "MMT Vocabulary"^^xsd:string ;
rdfs:comment "MMT Vocabulary"^^xsd:string .
<https://edi3.org/vocab/mmt#AcademicQualification>
a rdfs:Class ;
rdfs:comment "An academic achievement that is officially recognized."^^xsd:string ;
rdfs:label "AcademicQualification"^^xsd:string .
<https://edi3.org/vocab/mmt#AcademicQualificationAbbreviatedName>
a rdf:Property ;
rdfs:comment "The abbreviated name, expressed as text, of this academic qualification."^^xsd:string ;
rdfs:domain "mmt:AcademicQualification"^^xsd:string ;
rdfs:label "abbreviatedName"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#AcademicQualificationName>
a rdf:Property ;
rdfs:comment "A name, expressed as text, of this academic qualification."^^xsd:string ;
rdfs:domain "mmt:AcademicQualification"^^xsd:string ;
rdfs:label "name"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#AppliedChemicalTreatment>
a rdfs:Class ;
rdfs:comment "A process of applying a chemical, physical, or biological agent to an object."^^xsd:string ;
rdfs:label "AppliedChemicalTreatment"^^xsd:string .
<https://edi3.org/vocab/mmt#AppliedChemicalTreatmentChemicalConcentrationMeasure>
a rdf:Property ;
rdfs:comment "A measure of the chemical concentration of this applied chemical treatment."^^xsd:string ;
rdfs:domain "mmt:AppliedChemicalTreatment"^^xsd:string ;
rdfs:label "chemicalConcentrationMeasure"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#AppliedChemicalTreatmentMethodName>
a rdf:Property ;
rdfs:comment "The name, expressed as text, of the method of this applied chemical treatment."^^xsd:string ;
rdfs:domain "mmt:AppliedChemicalTreatment"^^xsd:string ;
rdfs:label "methodName"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#AppliedChemicalTreatmentName>
a rdf:Property ;
rdfs:comment "A name, expressed as text, of this applied chemical treatment."^^xsd:string ;
rdfs:domain "mmt:AppliedChemicalTreatment"^^xsd:string ;
rdfs:label "name"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#AppliedChemicalTreatmentOccurrenceDateTime>
a rdf:Property ;
rdfs:comment "The date time of the occurrence of this applied chemical treatment."^^xsd:string ;
rdfs:domain "mmt:AppliedChemicalTreatment"^^xsd:string ;
rdfs:label "occurrenceDateTime"^^xsd:string ;
rdfs:range "xsd:datetime"^^xsd:string .
<https://edi3.org/vocab/mmt#AppliedChemicalTreatmentApplicableTemperature>
a <https://edi3.org/vocab/mmt#SpecifiedTemperature> ;
rdfs:comment "The specified temperature applicable for this applied chemical treatment."^^xsd:string ;
rdfs:domain "mmt:AppliedChemicalTreatment"^^xsd:string ;
rdfs:label "applicableTemperature"^^xsd:string .
<https://edi3.org/vocab/mmt#AppliedChemicalTreatmentAppliedPeriod>
a <https://edi3.org/vocab/mmt#SpecifiedPeriod> ;
rdfs:comment "A period during which this chemical treatment is applied."^^xsd:string ;
rdfs:domain "mmt:AppliedChemicalTreatment"^^xsd:string ;
rdfs:label "appliedPeriod"^^xsd:string .
<https://edi3.org/vocab/mmt#AppliedChemicalTreatmentResultAuthentication>
a <https://edi3.org/vocab/mmt#DocumentAuthentication> ;
rdfs:comment "The authentication of the results of this applied chemical treatment."^^xsd:string ;
rdfs:domain "mmt:AppliedChemicalTreatment"^^xsd:string ;
rdfs:label "resultAuthentication"^^xsd:string .
<https://edi3.org/vocab/mmt#AppliedChemicalTreatmentResultNote>
a <https://edi3.org/vocab/mmt#Note> ;
rdfs:comment "The note describing the results of this applied chemical treatment."^^xsd:string ;
rdfs:domain "mmt:AppliedChemicalTreatment"^^xsd:string ;
rdfs:label "resultNote"^^xsd:string .
<https://edi3.org/vocab/mmt#AppliedChemicalTreatmentUsedChemical>
a <https://edi3.org/vocab/mmt#DistinctChemical> ;
rdfs:comment "A chemical used during this applied chemical treatment."^^xsd:string ;
rdfs:domain "mmt:AppliedChemicalTreatment"^^xsd:string ;
rdfs:label "usedChemical"^^xsd:string .
<https://edi3.org/vocab/mmt#AssociatedTransportEquipment>
a rdfs:Class ;
rdfs:comment "A piece of transport equipment that is associated with another piece of transport equipment, such as a maritime container placed on a rail wagon for transportation."^^xsd:string ;
rdfs:label "AssociatedTransportEquipment"^^xsd:string .
<https://edi3.org/vocab/mmt#AssociatedTransportEquipmentCharacteristicText>
a rdf:Property ;
rdfs:comment "The textual description of the characteristics, i.e. size and type, of this piece of associated transport equipment."^^xsd:string ;
rdfs:domain "mmt:AssociatedTransportEquipment"^^xsd:string ;
rdfs:label "characteristicText"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#AssociatedTransportEquipmentID>
a rdf:Property ;
rdfs:comment "A unique number, mark or name which identifies this associated piece of transport equipment."^^xsd:string ;
rdfs:domain "mmt:AssociatedTransportEquipment"^^xsd:string ;
rdfs:label "iD"^^xsd:string ;
rdfs:range "xsd:ID"^^xsd:string .
<https://edi3.org/vocab/mmt#AttachedTransportEquipment>
a rdfs:Class ;
rdfs:comment "A piece of attached transport equipment, such as a chain or a tarpaulin."^^xsd:string ;
rdfs:label "AttachedTransportEquipment"^^xsd:string .
<https://edi3.org/vocab/mmt#AttachedTransportEquipmentCharacteristicText>
a rdf:Property ;
rdfs:comment "The textual description of the characteristics, i.e. size and type, of this piece of attached transport equipment."^^xsd:string ;
rdfs:domain "mmt:AttachedTransportEquipment"^^xsd:string ;
rdfs:label "characteristicText"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#AttachedTransportEquipmentID>
a rdf:Property ;
rdfs:comment "A unique identifier of this piece of attached transport equipment."^^xsd:string ;
rdfs:domain "mmt:AttachedTransportEquipment"^^xsd:string ;
rdfs:label "iD"^^xsd:string ;
rdfs:range "xsd:ID"^^xsd:string .
<https://edi3.org/vocab/mmt#AttachedTransportEquipmentUnitQuantity>
a rdf:Property ;
rdfs:comment "The number of units of attached transport equipment."^^xsd:string ;
rdfs:domain "mmt:AttachedTransportEquipment"^^xsd:string ;
rdfs:label "unitQuantity"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#AuthoritativeSignatoryPerson>
a rdfs:Class ;
rdfs:comment "A person who is authorized to sign a document, such as a customs officer or other government official."^^xsd:string ;
rdfs:label "AuthoritativeSignatoryPerson"^^xsd:string .
<https://edi3.org/vocab/mmt#AuthoritativeSignatoryPersonName>
a rdf:Property ;
rdfs:comment "The name, expressed as text, of this authoritative signatory person."^^xsd:string ;
rdfs:domain "mmt:AuthoritativeSignatoryPerson"^^xsd:string ;
rdfs:label "name"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#AuthoritativeSignatoryPersonAttainedAcademicQualification>
a <https://edi3.org/vocab/mmt#AcademicQualification> ;
rdfs:comment "An academic qualification attained by this authoritative signatory person."^^xsd:string ;
rdfs:domain "mmt:AuthoritativeSignatoryPerson"^^xsd:string ;
rdfs:label "attainedAcademicQualification"^^xsd:string .
<https://edi3.org/vocab/mmt#CalculatedEmission>
a rdfs:Class ;
rdfs:comment "A calculation of the pollution (including noise, heat, and radiation etc.) discharged into the environment by a residential, commercial, or industrial facility or by a means of transport, such as a vessel, aircraft or truck."^^xsd:string ;
rdfs:label "CalculatedEmission"^^xsd:string .
<https://edi3.org/vocab/mmt#CalculatedEmissionAffectedDistanceMeasure>
a rdf:Property ;
rdfs:comment "The affected distance over which this calculated emission is measured."^^xsd:string ;
rdfs:domain "mmt:CalculatedEmission"^^xsd:string ;
rdfs:label "affectedDistanceMeasure"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#CalculatedEmissionPollutionMeasure>
a rdf:Property ;
rdfs:comment "A measure of the pollution calculated for this emission."^^xsd:string ;
rdfs:domain "mmt:CalculatedEmission"^^xsd:string ;
rdfs:label "pollutionMeasure"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#CalculatedEmissionTypeCode>
a rdf:Property ;
rdfs:comment "The code specifying the type of this calculated emission."^^xsd:string ;
rdfs:domain "mmt:CalculatedEmission"^^xsd:string ;
rdfs:label "typeCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CalculatedEmissionWeight>
a rdf:Property ;
rdfs:comment "A weight for which this calculated emission is measured."^^xsd:string ;
rdfs:domain "mmt:CalculatedEmission"^^xsd:string ;
rdfs:label "weight"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#CertificationTestSpecificationReport>
a rdfs:Class ;
rdfs:comment "A report that specifies a certification test and its attributes."^^xsd:string ;
rdfs:label "CertificationTestSpecificationReport"^^xsd:string .
<https://edi3.org/vocab/mmt#CertificationTestSpecificationReportResultText>
a rdf:Property ;
rdfs:comment "A result, expressed as text, reported in this certification test specification report."^^xsd:string ;
rdfs:domain "mmt:CertificationTestSpecificationReport"^^xsd:string ;
rdfs:label "resultText"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#CertificationTestSpecificationReportStandardName>
a rdf:Property ;
rdfs:comment "The name, expressed as text, of the standard applicable for this certification test specification report."^^xsd:string ;
rdfs:domain "mmt:CertificationTestSpecificationReport"^^xsd:string ;
rdfs:label "standardName"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#CertificationTestSpecificationReportTestName>
a rdf:Property ;
rdfs:comment "A test name, expressed as text, for this certification test specification report."^^xsd:string ;
rdfs:domain "mmt:CertificationTestSpecificationReport"^^xsd:string ;
rdfs:label "testName"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#CertifiedAccreditation>
a rdfs:Class ;
rdfs:comment "A certified recognition that provides evidence of a level of competency in a given area, such as certifying a level of skill in a trade."^^xsd:string ;
rdfs:label "CertifiedAccreditation"^^xsd:string .
<https://edi3.org/vocab/mmt#CertifiedAccreditationAccreditingBodyName>
a rdf:Property ;
rdfs:comment "The name of the accrediting body, expressed as text, for this certified accreditation."^^xsd:string ;
rdfs:domain "mmt:CertifiedAccreditation"^^xsd:string ;
rdfs:label "accreditingBodyName"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#CertifiedAccreditationAuthenticationMethodCode>
a rdf:Property ;
rdfs:comment "A code specifying an authentication method for this certified accreditation."^^xsd:string ;
rdfs:domain "mmt:CertifiedAccreditation"^^xsd:string ;
rdfs:label "authenticationMethodCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CertifiedAccreditationCategoryCode>
a rdf:Property ;
rdfs:comment "The code specifying the category of this certified accreditation, such as driving or academic."^^xsd:string ;
rdfs:domain "mmt:CertifiedAccreditation"^^xsd:string ;
rdfs:label "categoryCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CertifiedAccreditationDescription>
a rdf:Property ;
rdfs:comment "The textual description of this certified accreditation."^^xsd:string ;
rdfs:domain "mmt:CertifiedAccreditation"^^xsd:string ;
rdfs:label "description"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#CertifiedAccreditationExpiryDateTime>
a rdf:Property ;
rdfs:comment "The date, time, date time or other date time value when this certified accreditation expires."^^xsd:string ;
rdfs:domain "mmt:CertifiedAccreditation"^^xsd:string ;
rdfs:label "expiryDateTime"^^xsd:string ;
rdfs:range "xsd:datetime"^^xsd:string .
<https://edi3.org/vocab/mmt#CertifiedAccreditationID>
a rdf:Property ;
rdfs:comment "An identifier for this certified accreditation."^^xsd:string ;
rdfs:domain "mmt:CertifiedAccreditation"^^xsd:string ;
rdfs:label "iD"^^xsd:string ;
rdfs:range "xsd:ID"^^xsd:string .
<https://edi3.org/vocab/mmt#CertifiedAccreditationObtainedDateTime>
a rdf:Property ;
rdfs:comment "The date, time, date time or other date time value when this certified accreditation was obtained."^^xsd:string ;
rdfs:domain "mmt:CertifiedAccreditation"^^xsd:string ;
rdfs:label "obtainedDateTime"^^xsd:string ;
rdfs:range "xsd:datetime"^^xsd:string .
<https://edi3.org/vocab/mmt#CertifiedAccreditationTypeCode>
a rdf:Property ;
rdfs:comment "The code specifying the type of this certified accreditation, such as a type of driving license."^^xsd:string ;
rdfs:domain "mmt:CertifiedAccreditation"^^xsd:string ;
rdfs:label "typeCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuation>
a rdfs:Class ;
rdfs:comment "A cross-border trade related assessment of the worth of an object, such as its monetary value, for customs purposes."^^xsd:string ;
rdfs:label "CrossBorderCustomsValuation"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationAddedAdjustmentAmount>
a rdf:Property ;
rdfs:comment "The monetary value of the adjustment added for this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "addedAdjustmentAmount"^^xsd:string ;
rdfs:range "http://schema.org/amount"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationAddedAdjustmentPercent>
a rdf:Property ;
rdfs:comment "The adjustment added, expressed as a percentage, for this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "addedAdjustmentPercent"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationBuyerSellerRelationshipIndicator>
a rdf:Property ;
rdfs:comment "The indication of whether or not there is a relationship between the buyer and the seller, such as a financial relationship, for this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "buyerSellerRelationshipIndicator"^^xsd:string ;
rdfs:range "xsd:boolean"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationBuyerSellerRelationshipPriceInfluenceIndicator>
a rdf:Property ;
rdfs:comment "The indication of whether or not the buyer seller relationship influences the price of the goods for this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "buyerSellerRelationshipPriceInfluenceIndicator"^^xsd:string ;
rdfs:range "xsd:boolean"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationChargeApportionMethodCode>
a rdf:Property ;
rdfs:comment "The code specifying the method of the apportion of charges for this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "chargeApportionMethodCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationDeductedAdjustmentAmount>
a rdf:Property ;
rdfs:comment "The monetary value of the adjustment deducted for this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "deductedAdjustmentAmount"^^xsd:string ;
rdfs:range "http://schema.org/amount"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationDeductedAdjustmentPercent>
a rdf:Property ;
rdfs:comment "The adjustment deducted, expressed as a percentage, for this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "deductedAdjustmentPercent"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationMethodCode>
a rdf:Property ;
rdfs:comment "The code specifying the method by which this cross-border customs valuation is determined."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "methodCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationOtherChargeAmount>
a rdf:Property ;
rdfs:comment "A monetary value added or subtracted from the total invoice price not previously taken into account for this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "otherChargeAmount"^^xsd:string ;
rdfs:range "http://schema.org/amount"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationRoyaltyLicenceFeeIndicator>
a rdf:Property ;
rdfs:comment "The indication of whether or not there is a royalty or licence fee related to the goods for this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "royaltyLicenceFeeIndicator"^^xsd:string ;
rdfs:range "xsd:boolean"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationSalePriceConditionIndicator>
a rdf:Property ;
rdfs:comment "The indication of whether or not there is a condition imposed on the sale price of the goods for this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "salePriceConditionIndicator"^^xsd:string ;
rdfs:range "xsd:boolean"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationSaleRestrictionIndicator>
a rdf:Property ;
rdfs:comment "The indication of whether or not there is any restriction imposed on the sale of the goods for this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "saleRestrictionIndicator"^^xsd:string ;
rdfs:range "xsd:boolean"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationTypeCode>
a rdf:Property ;
rdfs:comment "The code specifying the type of cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "typeCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationWTOAdditionCode>
a rdf:Property ;
rdfs:comment "The code specifying any additions necessary under the World Trade Organization (WTO) Valuation Agreement used for the assessment of this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "wTOAdditionCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderCustomsValuationApplicableCurrencyExchange>
a <https://edi3.org/vocab/mmt#TradeCurrencyExchange> ;
rdfs:comment "The trade related currency exchange applicable to this cross-border customs valuation."^^xsd:string ;
rdfs:domain "mmt:CrossBorderCustomsValuation"^^xsd:string ;
rdfs:label "applicableCurrencyExchange"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedure>
a rdfs:Class ;
rdfs:comment "A set of formal steps to satisfy a cross-border regulation, law or convention."^^xsd:string ;
rdfs:label "CrossBorderRegulatoryProcedure"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureAcquisitionDateTime>
a rdf:Property ;
rdfs:comment "The date, time, date time, or other date time value of an acquisition for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "acquisitionDateTime"^^xsd:string ;
rdfs:range "xsd:datetime"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureAmendmentReasonCode>
a rdf:Property ;
rdfs:comment "A code specifying a reason for an amendment to this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "amendmentReasonCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureAnnualQuotaQuantity>
a rdf:Property ;
rdfs:comment "The annual quota quantity under this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "annualQuotaQuantity"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureCategoryCode>
a rdf:Property ;
rdfs:comment "A code specifying a category for this cross-border regulatory procedure, such as the appendices of the CITES Convention."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "categoryCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureCertificationBasisText>
a rdf:Property ;
rdfs:comment "A basis for a certification, expressed as text, for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "certificationBasisText"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureControlRequirementIndicator>
a rdf:Property ;
rdfs:comment "The indication of whether or not a control is required for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "controlRequirementIndicator"^^xsd:string ;
rdfs:range "xsd:boolean"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureControlResultText>
a rdf:Property ;
rdfs:comment "A control result, expressed as text, for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "controlResultText"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureControlStartDateConfirmationIndicator>
a rdf:Property ;
rdfs:comment "The indication of whether or not the start date of a control has been confirmed for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "controlStartDateConfirmationIndicator"^^xsd:string ;
rdfs:range "xsd:boolean"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureDeclarantAssignedDeclarationID>
a rdf:Property ;
rdfs:comment "The declarant assigned identifier of a declaration for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "declarantAssignedDeclarationID"^^xsd:string ;
rdfs:range "xsd:ID"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureDeferredPaymentMethodIndicator>
a rdf:Property ;
rdfs:comment "The indication of whether or not the deferred payment method is applicable to this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "deferredPaymentMethodIndicator"^^xsd:string ;
rdfs:range "xsd:boolean"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureDeferredTotalChargeAmount>
a rdf:Property ;
rdfs:comment "A monetary value of the total charges, including tariff and non-tariff charges, deferred for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "deferredTotalChargeAmount"^^xsd:string ;
rdfs:range "http://schema.org/amount"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureExportLicenceControlClassificationID>
a rdf:Property ;
rdfs:comment "The identifier of the export licence classification for control purposes relevant to this cross-border regulatory procedure, such as per the Wassenaar agreement concerning trade in weapons and dual-use goods and technologies."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "exportLicenceControlClassificationID"^^xsd:string ;
rdfs:range "xsd:ID"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureGoodsStatusCode>
a rdf:Property ;
rdfs:comment "The code specifying the goods status for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "goodsStatusCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureGuaranteeCode>
a rdf:Property ;
rdfs:comment "The code specifying an undertaking given in cash, bond or as a written guarantee to ensure that an obligation will be fulfilled for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "guaranteeCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureGuaranteeText>
a rdf:Property ;
rdfs:comment "The undertaking, expressed as text, given in cash, bond or as a written guarantee to ensure that an obligation will be fulfilled for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "guaranteeText"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureImmediatePayableTotalChargeAmount>
a rdf:Property ;
rdfs:comment "A monetary value of the total charges, including tariff and non-tariff charges, immediately payable for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "immediatePayableTotalChargeAmount"^^xsd:string ;
rdfs:range "http://schema.org/amount"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureNonTariffChargeAmount>
a rdf:Property ;
rdfs:comment "A monetary value of all non-tariff charges for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "nonTariffChargeAmount"^^xsd:string ;
rdfs:range "http://schema.org/amount"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureOriginCriteriaText>
a rdf:Property ;
rdfs:comment "The origin criteria, expressed as text, for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "originCriteriaText"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedurePaymentMethodCode>
a rdf:Property ;
rdfs:comment "The code specifying the payment method for this cross-border regulatory procedure, such as by deferred payment method."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "paymentMethodCode"^^xsd:string ;
rdfs:range "mmtc:PaymentMethodTypeСode"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedurePerformanceDateTime>
a rdf:Property ;
rdfs:comment "A date, time, date time, or other date time value on which this cross-border regulatory procedure was, or will be, performed."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "performanceDateTime"^^xsd:string ;
rdfs:range "xsd:datetime"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedurePreviousProcedureTypeCode>
a rdf:Property ;
rdfs:comment "A code specifying a type of previous procedure for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "previousProcedureTypeCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureQuotaID>
a rdf:Property ;
rdfs:comment "A quota identifier for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "quotaID"^^xsd:string ;
rdfs:range "xsd:ID"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureRegisteredDeferredPaymentPayerID>
a rdf:Property ;
rdfs:comment "The identifier of the registered deferred payment payer for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "registeredDeferredPaymentPayerID"^^xsd:string ;
rdfs:range "xsd:ID"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureRemark>
a rdf:Property ;
rdfs:comment "A remark, expressed as text, for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "remark"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureRequestOverrideCode>
a rdf:Property ;
rdfs:comment "A code specifying a request, including a reason, to override previously submitted information for this cross-border regulatory procedure, such as due to an error condition."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "requestOverrideCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureResponsibleAgencyActionCode>
a rdf:Property ;
rdfs:comment "A code specifying an action for a responsible agency in this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "responsibleAgencyActionCode"^^xsd:string ;
rdfs:range "mmtc:GovernmentActionTypeСode"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureResponsibleAgencyCode>
a rdf:Property ;
rdfs:comment "The code specifying the agency responsible for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "responsibleAgencyCode"^^xsd:string ;
rdfs:range "mmtc:ResponsibleAgencyTypeСode"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureResponsibleAgencyInvolvementCode>
a rdf:Property ;
rdfs:comment "A code specifying a responsible agency involved in this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "responsibleAgencyInvolvementCode"^^xsd:string ;
rdfs:range "mmtc:ResponsibleAgencyInvolvementTypeСode"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTariffAmount>
a rdf:Property ;
rdfs:comment "A monetary value of a tariff for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "tariffAmount"^^xsd:string ;
rdfs:range "http://schema.org/amount"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTariffDeductionQuantity>
a rdf:Property ;
rdfs:comment "A quantity to be deducted from the tariff quantity for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "tariffDeductionQuantity"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTariffQuantity>
a rdf:Property ;
rdfs:comment "A tariff quantity for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "tariffQuantity"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTotalChargeAmount>
a rdf:Property ;
rdfs:comment "A monetary value of the total charges, including tariff and non-tariff charges, for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "totalChargeAmount"^^xsd:string ;
rdfs:range "http://schema.org/amount"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTotalConsignmentValueAmount>
a rdf:Property ;
rdfs:comment "The total monetary value for a consignment for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "totalConsignmentValueAmount"^^xsd:string ;
rdfs:range "http://schema.org/amount"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTransactionNatureCode>
a rdf:Property ;
rdfs:comment "A code specifying the nature of a transaction for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "transactionNatureCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTransportMovementTypeCode>
a rdf:Property ;
rdfs:comment "A code specifying the transport movement type, such as import, export, transit, for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "transportMovementTypeCode"^^xsd:string ;
rdfs:range "mmtc:TransportMovementTypeСode"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTypeCode>
a rdf:Property ;
rdfs:comment "A code specifying a type of cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "typeCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureUsedToDateQuotaQuantity>
a rdf:Property ;
rdfs:comment "The quantity of the quota used to date under this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "usedToDateQuotaQuantity"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureValuationBasisAmount>
a rdf:Property ;
rdfs:comment "The monetary value of the basis on which the valuation is, or will be, calculated for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "valuationBasisAmount"^^xsd:string ;
rdfs:range "http://schema.org/amount"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureApplicableCurrencyExchange>
a <https://edi3.org/vocab/mmt#TradeCurrencyExchange> ;
rdfs:comment "The applicable currency exchange for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "applicableCurrencyExchange"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureApplicablePeriod>
a <https://edi3.org/vocab/mmt#SpecifiedPeriod> ;
rdfs:comment "A period applicable to this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "applicablePeriod"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureAppliedRequiredChemicalTreatment>
a <https://edi3.org/vocab/mmt#AppliedChemicalTreatment> ;
rdfs:comment "A chemical treatment applied as required by this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "appliedRequiredChemicalTreatment"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureBorderClearanceInstructions>
a <https://edi3.org/vocab/mmt#TransportInstructions> ;
rdfs:comment "Border clearance instructions for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "borderClearanceInstructions"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureConsignmentDestinationLocation>
a <https://edi3.org/vocab/mmt#LogisticsLocation> ;
rdfs:comment "A consignment destination location specified for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "consignmentDestinationLocation"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureDeclarationLodgementLocation>
a <https://edi3.org/vocab/mmt#LogisticsLocation> ;
rdfs:comment "The location at which a declaration has been lodged for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "declarationLodgementLocation"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureEntryCustomsOfficeLocation>
a <https://edi3.org/vocab/mmt#LogisticsLocation> ;
rdfs:comment "The location of the specified customs office at which the goods subject to this cross-border regulatory procedure, enter the customs territory of entry."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "entryCustomsOfficeLocation"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureExaminationEvent>
a <https://edi3.org/vocab/mmt#TransportEvent> ;
rdfs:comment "An examination event for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "examinationEvent"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureExemptionClaimant>
a <https://edi3.org/vocab/mmt#TradeParty> ;
rdfs:comment "A party who claims an exemption from this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "exemptionClaimant"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureExitCustomsOfficeLocation>
a <https://edi3.org/vocab/mmt#LogisticsLocation> ;
rdfs:comment "The location of the specified customs office at which the goods which are subject to this cross-border regulatory procedure leave the customs territory of destination."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "exitCustomsOfficeLocation"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureExportCustomsOfficeLocation>
a <https://edi3.org/vocab/mmt#LogisticsLocation> ;
rdfs:comment "The location of the specified customs office which is responsible for export formalities for the goods which are subject to this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "exportCustomsOfficeLocation"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureImportCustomsOfficeLocation>
a <https://edi3.org/vocab/mmt#LogisticsLocation> ;
rdfs:comment "The location of the specified customs office which is responsible for import formalities for the goods which are subject to this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "importCustomsOfficeLocation"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedurePaymentOfficeLocation>
a <https://edi3.org/vocab/mmt#LogisticsLocation> ;
rdfs:comment "The location of an office at which a payment relevant to this cross-border regulatory procedure is made."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "paymentOfficeLocation"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedurePreviousReferencedDocument>
a <https://edi3.org/vocab/mmt#ReferencedDocument> ;
rdfs:comment "A previous document related to this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "previousReferencedDocument"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureReferencedDocument>
a <https://edi3.org/vocab/mmt#ReferencedDocument> ;
rdfs:comment "A document referenced by this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "referencedDocument"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureReportedLogisticsStatus>
a <https://edi3.org/vocab/mmt#LogisticsStatus> ;
rdfs:comment "A logistics status reported for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "reportedLogisticsStatus"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureRequiredCertificationTestSpecificationReport>
a <https://edi3.org/vocab/mmt#CertificationTestSpecificationReport> ;
rdfs:comment "A report of a certification test and its attributes that is required for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "requiredCertificationTestSpecificationReport"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureRequiredSeal>
a <https://edi3.org/vocab/mmt#LogisticsSeal> ;
rdfs:comment "A seal required by this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "requiredSeal"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTradeTax>
a <https://edi3.org/vocab/mmt#TradeTax> ;
rdfs:comment "A tax, levy or duty applicable to this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "tradeTax"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTransitCustomsOfficeLocation>
a <https://edi3.org/vocab/mmt#LogisticsLocation> ;
rdfs:comment "A location of a specified customs office which is responsible for transit formalities en route for the goods which are subject to this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "transitCustomsOfficeLocation"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTransitReleaseCustomsOfficeLocation>
a <https://edi3.org/vocab/mmt#LogisticsLocation> ;
rdfs:comment "A location of a specified customs office at which the goods which are subject to this cross-border regulatory procedure are released from a customs transit regime."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "transitReleaseCustomsOfficeLocation"^^xsd:string .
<https://edi3.org/vocab/mmt#CrossBorderRegulatoryProcedureTreatmentEvent>
a <https://edi3.org/vocab/mmt#TransportEvent> ;
rdfs:comment "A treatment event for this cross-border regulatory procedure."^^xsd:string ;
rdfs:domain "mmt:CrossBorderRegulatoryProcedure"^^xsd:string ;
rdfs:label "treatmentEvent"^^xsd:string .
<https://edi3.org/vocab/mmt#DeliveryInstructions>
a rdfs:Class ;
rdfs:comment "Delivery information of an instructive nature."^^xsd:string ;
rdfs:label "DeliveryInstructions"^^xsd:string .
<https://edi3.org/vocab/mmt#DeliveryInstructionsDescription>
a rdf:Property ;
rdfs:comment "A textual description of these delivery instructions."^^xsd:string ;
rdfs:domain "mmt:DeliveryInstructions"^^xsd:string ;
rdfs:label "description"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#DeliveryInstructionsDescriptionCode>
a rdf:Property ;
rdfs:comment "The code specifying a description of these delivery instructions."^^xsd:string ;
rdfs:domain "mmt:DeliveryInstructions"^^xsd:string ;
rdfs:label "descriptionCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#DisposalInstructions>
a rdfs:Class ;
rdfs:comment "A set of instructions detailing how to properly dispose of a material."^^xsd:string ;
rdfs:label "DisposalInstructions"^^xsd:string .
<https://edi3.org/vocab/mmt#DisposalInstructionsDescription>
a rdf:Property ;
rdfs:comment "A textual description of these disposal instructions."^^xsd:string ;
rdfs:domain "mmt:DisposalInstructions"^^xsd:string ;
rdfs:label "description"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#DisposalInstructionsMaterialID>
a rdf:Property ;
rdfs:comment "The identifier of the material to which these disposal instructions apply."^^xsd:string ;
rdfs:domain "mmt:DisposalInstructions"^^xsd:string ;
rdfs:label "materialID"^^xsd:string ;
rdfs:range "xsd:ID"^^xsd:string .
<https://edi3.org/vocab/mmt#DisposalInstructionsRecyclingDescriptionCode>
a rdf:Property ;
rdfs:comment "A code describing recycling in these disposal instructions."^^xsd:string ;
rdfs:domain "mmt:DisposalInstructions"^^xsd:string ;
rdfs:label "recyclingDescriptionCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#DisposalInstructionsRecyclingProcedureText>
a rdf:Property ;
rdfs:comment "A recycling procedure, expressed as text, for these disposal instructions."^^xsd:string ;
rdfs:domain "mmt:DisposalInstructions"^^xsd:string ;
rdfs:label "recyclingProcedureText"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#DistinctChemical>
a rdfs:Class ;
rdfs:comment "Any clearly defined substance having a defined molecular composition."^^xsd:string ;
rdfs:label "DistinctChemical"^^xsd:string .
<https://edi3.org/vocab/mmt#DistinctChemicalCommonName>
a rdf:Property ;
rdfs:comment "A common name, expressed as text, for this distinct chemical."^^xsd:string ;
rdfs:domain "mmt:DistinctChemical"^^xsd:string ;
rdfs:label "commonName"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#DistinctChemicalFamilyName>
a rdf:Property ;
rdfs:comment "The family name expressed as text for this distinct chemical."^^xsd:string ;
rdfs:domain "mmt:DistinctChemical"^^xsd:string ;
rdfs:label "familyName"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#DistinctChemicalFormulaDescription>
a rdf:Property ;
rdfs:comment "The textual description of the formula for this distinct chemical."^^xsd:string ;
rdfs:domain "mmt:DistinctChemical"^^xsd:string ;
rdfs:label "formulaDescription"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#DistinctChemicalMolecularWeight>
a rdf:Property ;
rdfs:comment "The measure of the molecular weight (in grams) for this distinct chemical."^^xsd:string ;
rdfs:domain "mmt:DistinctChemical"^^xsd:string ;
rdfs:label "molecularWeight"^^xsd:string ;
rdfs:range "xsd:decimal"^^xsd:string .
<https://edi3.org/vocab/mmt#DistinctChemicalScientificName>
a rdf:Property ;
rdfs:comment "The scientific name, expressed as text, for this distinct chemical."^^xsd:string ;
rdfs:domain "mmt:DistinctChemical"^^xsd:string ;
rdfs:label "scientificName"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#DistinctChemicalSynonymName>
a rdf:Property ;
rdfs:comment "A synonym name, expressed as text, for this distinct chemical."^^xsd:string ;
rdfs:domain "mmt:DistinctChemical"^^xsd:string ;
rdfs:label "synonymName"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#DistinctChemicalTypeCode>
a rdf:Property ;
rdfs:comment "The code specifying the type of distinct chemical."^^xsd:string ;
rdfs:domain "mmt:DistinctChemical"^^xsd:string ;
rdfs:label "typeCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentContextParameter>
a rdfs:Class ;
rdfs:comment "A feature that is fixed for a particular document context."^^xsd:string ;
rdfs:label "DocumentContextParameter"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentContextParameterID>
a rdf:Property ;
rdfs:comment "The unique identifier of this document context parameter."^^xsd:string ;
rdfs:domain "mmt:DocumentContextParameter"^^xsd:string ;
rdfs:label "iD"^^xsd:string ;
rdfs:range "xsd:ID"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentContextParameterValueText>
a rdf:Property ;
rdfs:comment "The value, expressed as text, of this document context parameter."^^xsd:string ;
rdfs:domain "mmt:DocumentContextParameter"^^xsd:string ;
rdfs:label "valueText"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentContextParameterVersion>
a <https://edi3.org/vocab/mmt#DocumentVersion> ;
rdfs:comment "The document version specified for this document context parameter."^^xsd:string ;
rdfs:domain "mmt:DocumentContextParameter"^^xsd:string ;
rdfs:label "version"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentLineDocument>
a rdfs:Class ;
rdfs:comment "A collection of data for a line on a piece of written, printed or electronic matter that provides information or evidence."^^xsd:string ;
rdfs:label "DocumentLineDocument"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentLineDocumentLineID>
a rdf:Property ;
rdfs:comment "The unique identifier of this document line."^^xsd:string ;
rdfs:domain "mmt:DocumentLineDocument"^^xsd:string ;
rdfs:label "lineID"^^xsd:string ;
rdfs:range "xsd:ID"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentLineDocumentStatusCode>
a rdf:Property ;
rdfs:comment "The code specifying the status of this document line."^^xsd:string ;
rdfs:domain "mmt:DocumentLineDocument"^^xsd:string ;
rdfs:label "statusCode"^^xsd:string ;
rdfs:range "mmtc:ActionTypeСode"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentAuthentication>
a rdfs:Class ;
rdfs:comment "A proof that a document is genuine."^^xsd:string ;
rdfs:label "DocumentAuthentication"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentAuthenticationActualDateTime>
a rdf:Property ;
rdfs:comment "The actual date, time, date time, or other date time value of this document authentication."^^xsd:string ;
rdfs:domain "mmt:DocumentAuthentication"^^xsd:string ;
rdfs:label "actualDateTime"^^xsd:string ;
rdfs:range "xsd:datetime"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentAuthenticationGovernmentActionTypeCode>
a rdf:Property ;
rdfs:comment "The code specifying the type of document authentication."^^xsd:string ;
rdfs:domain "mmt:DocumentAuthentication"^^xsd:string ;
rdfs:label "governmentActionTypeCode"^^xsd:string ;
rdfs:range "mmtc:GovernmentActionTypeСode"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentAuthenticationID>
a rdf:Property ;
rdfs:comment "A unique identifier for this document authentication."^^xsd:string ;
rdfs:domain "mmt:DocumentAuthentication"^^xsd:string ;
rdfs:label "iD"^^xsd:string ;
rdfs:range "xsd:ID"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentAuthenticationRepresentationTypeCode>
a rdf:Property ;
rdfs:comment "The code specifying the type of representation of this document authentication, such as direct or indirect."^^xsd:string ;
rdfs:domain "mmt:DocumentAuthentication"^^xsd:string ;
rdfs:label "representationTypeCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentAuthenticationSignatoryText>
a rdf:Property ;
rdfs:comment "The signatory, expressed as text, for this document authentication."^^xsd:string ;
rdfs:domain "mmt:DocumentAuthentication"^^xsd:string ;
rdfs:label "signatoryText"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentAuthenticationStatement>
a rdf:Property ;
rdfs:comment "The statement, expressed as text, for this document authentication."^^xsd:string ;
rdfs:domain "mmt:DocumentAuthentication"^^xsd:string ;
rdfs:label "statement"^^xsd:string ;
rdfs:range "xsd:string"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentAuthenticationStatementCode>
a rdf:Property ;
rdfs:comment "The code specifying the statement for this document authentication."^^xsd:string ;
rdfs:domain "mmt:DocumentAuthentication"^^xsd:string ;
rdfs:label "statementCode"^^xsd:string ;
rdfs:range "xsd:token"^^xsd:string .
<https://edi3.org/vocab/mmt#DocumentAuthenticationIssueLocation>
a <https://edi3.org/vocab/mmt#LogisticsLocation> ;
rdfs:comment "The issue location for this document authentication."^^xsd:string ;
rdfs:domain "mmt:DocumentAuthentication"^^xsd:string ;
rdfs:label "issueLocation"^^xsd:string .