forked from materialdigital/application-ontology-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog-edit.owl
More file actions
1468 lines (1131 loc) · 157 KB
/
Copy pathlog-edit.owl
File metadata and controls
1468 lines (1131 loc) · 157 KB
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://w3id.org/pmd/log#>)
Prefix(dce:=<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(dcterms:=<http://purl.org/dc/terms/>)
Ontology(<https://w3id.org/pmd/log>
Import(<https://w3id.org/pmd/log/imports/foaf_import.owl>)
Import(<https://w3id.org/pmd/log/imports/org_import.owl>)
Import(<https://w3id.org/pmd/log/imports/pmdco_import.owl>)
Annotation(dcterms:creator <https://orcid.org/0000-0001-7192-7143>)
Annotation(dcterms:creator <https://orcid.org/0000-0003-1649-6832>)
Annotation(dcterms:creator <https://orcid.org/0009-0003-1503-4422>)
Annotation(dcterms:creator <https://orcid.org/0009-0007-7468-3544>)
Annotation(dcterms:description "This is an alignment of the IOF Supply Chain Ontologies Library to the Platform Material Digital Core Ontology. It contains ontologies to be used in the domain of supply chain and logistics.")
Annotation(dcterms:license <https://creativecommons.org/licenses/by/4.0/>)
Annotation(dcterms:title "Platform Material Digital Application Ontology for Logistics and Supply Chain (LOG)"@en)
Annotation(rdfs:comment "The logistics application ontology for use with PMD Core Ontology (PMDco). The scope of this module is the description of material science and engineering related logistics and general organization. Its is adopted from the IOF SupplyChain Module https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/"@en)
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000002>))
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000004>))
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000008>))
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000015>))
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000023>))
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000024>))
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000028>))
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000029>))
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000030>))
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000034>))
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000040>))
Declaration(Class(<http://purl.obolibrary.org/obo/BFO_0000203>))
Declaration(Class(<http://purl.obolibrary.org/obo/IAO_0000005>))
Declaration(Class(<http://purl.obolibrary.org/obo/IAO_0000030>))
Declaration(Class(<http://purl.obolibrary.org/obo/IAO_0000104>))
Declaration(Class(<http://purl.obolibrary.org/obo/IAO_0020000>))
Declaration(Class(<http://purl.obolibrary.org/obo/OBI_0000571>))
Declaration(Class(<http://www.w3.org/ns/org#Membership>))
Declaration(Class(<http://www.w3.org/ns/org#Post>))
Declaration(Class(<http://www.w3.org/ns/org#Site>))
Declaration(Class(<https://w3id.org/pmd/co/PMD_0040029>))
Declaration(Class(<https://w3id.org/pmd/co/PMD_0040030>))
Declaration(Class(<https://w3id.org/pmd/co/PMD_0040129>))
Declaration(Class(<https://w3id.org/pmd/co/PMD_0040151>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_0000000>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_0000001>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_0000002>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_0000003>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_0080000>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_0080001>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_0080002>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000000>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000001>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000002>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000003>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000004>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000005>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000006>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000007>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000008>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000009>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000010>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_10000105>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000011>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000012>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000013>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000014>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000015>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000016>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000017>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000018>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000019>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000020>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000021>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000022>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000023>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000024>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000025>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000026>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000027>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000028>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000029>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000030>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000031>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000032>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000033>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000034>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000035>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000036>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000037>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000038>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000039>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000040>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000041>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000042>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000043>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000044>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000046>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000047>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000050>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000051>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000052>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000053>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000054>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000055>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000056>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000057>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000058>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000059>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000060>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000061>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000062>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000063>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000064>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000065>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000066>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000067>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000068>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000069>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000070>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000071>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000072>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000073>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000075>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000076>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000077>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000078>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000079>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000080>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000081>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000082>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000083>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000084>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000085>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000088>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000089>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000090>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000091>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000093>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000095>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000096>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000097>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000098>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000099>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000100>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000101>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000102>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000103>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000104>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000105>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000106>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000111>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000112>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000113>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000114>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000115>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000116>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000117>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000118>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000119>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000120>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000121>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000122>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000123>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000124>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_10001247>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000125>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000126>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000128>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000129>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000130>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000131>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000132>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000134>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000135>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000140>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000141>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000142>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000143>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000144>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000145>))
Declaration(Class(<https://w3id.org/pmd/log/LOG_1000146>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000050>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000054>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000055>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000066>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000082>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000108>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000117>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000132>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000183>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000196>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000197>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000199>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000221>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000223>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/IAO_0000136>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/IAO_0000219>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/IAO_0000235>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0000056>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0000057>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0000059>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0001015>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0001025>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0002233>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0002234>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0002351>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0002352>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0002353>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0002502>))
Declaration(ObjectProperty(<https://w3id.org/pmd/co/PMD_0040121>))
Declaration(ObjectProperty(<https://w3id.org/pmd/co/PMD_0040122>))
Declaration(ObjectProperty(<https://w3id.org/pmd/log/LOG_1900001>))
Declaration(ObjectProperty(<https://w3id.org/pmd/log/LOG_1900002>))
Declaration(ObjectProperty(<https://w3id.org/pmd/log/LOG_1900003>))
Declaration(NamedIndividual(<https://w3id.org/pmd/co/PMD_0040128>))
Declaration(AnnotationProperty(<http://purl.obolibrary.org/obo/IAO_0000114>))
Declaration(AnnotationProperty(<http://purl.obolibrary.org/obo/IAO_0000119>))
Declaration(AnnotationProperty(<http://purl.obolibrary.org/obo/IAO_0000412>))
Declaration(AnnotationProperty(dcterms:bibliographicCitation))
Declaration(AnnotationProperty(dcterms:created))
Declaration(AnnotationProperty(dcterms:creator))
Declaration(AnnotationProperty(dcterms:description))
Declaration(AnnotationProperty(dcterms:license))
Declaration(AnnotationProperty(dcterms:title))
Declaration(AnnotationProperty(<http://www.w3.org/2004/02/skos/core#closeMatch>))
Declaration(AnnotationProperty(<http://www.w3.org/2004/02/skos/core#definition>))
Declaration(AnnotationProperty(<https://w3id.org/pmd/co/logistics/PMD_0000060>))
Declaration(AnnotationProperty(<https://w3id.org/pmd/co/logistics/PMD_0001032>))
############################
# Object Properties
############################
# Object Property: <http://purl.obolibrary.org/obo/RO_0002353> (output of)
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/RO_0002353> "is output of"@en)
# Object Property: <https://w3id.org/pmd/co/PMD_0040121> (specifies role)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/co/PMD_0040121> "specifies role"@en)
SubObjectPropertyOf(<https://w3id.org/pmd/co/PMD_0040121> <http://purl.obolibrary.org/obo/IAO_0000136>)
InverseObjectProperties(<https://w3id.org/pmd/co/PMD_0040121> <https://w3id.org/pmd/co/PMD_0040122>)
ObjectPropertyDomain(<https://w3id.org/pmd/co/PMD_0040121> <http://purl.obolibrary.org/obo/IAO_0000030>)
ObjectPropertyRange(<https://w3id.org/pmd/co/PMD_0040121> <http://purl.obolibrary.org/obo/BFO_0000023>)
# Object Property: <https://w3id.org/pmd/co/PMD_0040122> (role specified by)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/co/PMD_0040122> "role specified by"@en)
SubObjectPropertyOf(<https://w3id.org/pmd/co/PMD_0040122> <https://w3id.org/pmd/co/PMD_0000004>)
ObjectPropertyDomain(<https://w3id.org/pmd/co/PMD_0040122> <http://purl.obolibrary.org/obo/BFO_0000023>)
ObjectPropertyRange(<https://w3id.org/pmd/co/PMD_0040122> <http://purl.obolibrary.org/obo/IAO_0000030>)
# Object Property: <https://w3id.org/pmd/log/LOG_1900001> (acts on behalf of)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1900001> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ActsOnBehalfOfAtSomeTime")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1900001> "acts on behalf of"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1900001> "relation from a material entity to a person or a group of agents or engineered system that holds when the material entity participates in some planned process in order to fulfill an objective for the person or group of agents or engineered system")
ObjectPropertyDomain(<https://w3id.org/pmd/log/LOG_1900001> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectComplementOf(<http://purl.obolibrary.org/obo/BFO_0000024>)))
ObjectPropertyRange(<https://w3id.org/pmd/log/LOG_1900001> ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000027> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0002351> <http://xmlns.com/foaf/0.1/Person>))))
# Object Property: <https://w3id.org/pmd/log/LOG_1900002> (owned by)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1900002> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/OwnedBy")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1900002> "owned by"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1900002> "relationship from a material entity to a person or business organization when the material entity is held by the person or business organization as legal property")
# Object Property: <https://w3id.org/pmd/log/LOG_1900003> (owns)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1900003> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/owns")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1900003> "owns"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1900003> "relationship from a person or business organization to an independent continuant when the agent holds the independent continuant as legal property")
SubObjectPropertyOf(<https://w3id.org/pmd/log/LOG_1900003> owl:topObjectProperty)
ObjectPropertyDomain(<https://w3id.org/pmd/log/LOG_1900003> ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>))
ObjectPropertyRange(<https://w3id.org/pmd/log/LOG_1900003> <http://purl.obolibrary.org/obo/BFO_0000004>)
############################
# Classes
############################
# Class: <http://purl.obolibrary.org/obo/BFO_0000015> (process)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <http://purl.obolibrary.org/obo/BFO_0000015> <https://spec.industrialontologies.org/ontology/core/Core/PlannedProcess>)
# Class: <http://purl.obolibrary.org/obo/BFO_0000023> (role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <http://purl.obolibrary.org/obo/BFO_0000023> <http://purl.obolibrary.org/obo/BFO_0000023>)
# Class: <http://purl.obolibrary.org/obo/BFO_0000027> (object aggregate)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <http://purl.obolibrary.org/obo/BFO_0000027> <https://spec.industrialontologies.org/ontology/core/Core/EngineeredSystem>)
# Class: <http://purl.obolibrary.org/obo/BFO_0000028> (three-dimensional spatial region)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <http://purl.obolibrary.org/obo/BFO_0000028> <http://purl.obolibrary.org/obo/BFO_0000028>)
# Class: <http://purl.obolibrary.org/obo/BFO_0000029> (site)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <http://purl.obolibrary.org/obo/BFO_0000029> <http://purl.obolibrary.org/obo/BFO_0000029>)
# Class: <http://purl.obolibrary.org/obo/BFO_0000034> (function)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <http://purl.obolibrary.org/obo/BFO_0000034> <http://purl.obolibrary.org/obo/BFO_0000034>)
# Class: <http://purl.obolibrary.org/obo/BFO_0000040> (material entity)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <http://purl.obolibrary.org/obo/BFO_0000040> <http://purl.obolibrary.org/obo/BFO_0000040>)
# Class: <http://purl.obolibrary.org/obo/IAO_0000104> (plan specification)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <http://purl.obolibrary.org/obo/IAO_0000104> <https://spec.industrialontologies.org/ontology/core/Core/PlanSpecification>)
# Class: <http://purl.obolibrary.org/obo/IAO_0020000> (identifier)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <http://purl.obolibrary.org/obo/IAO_0020000> <https://spec.industrialontologies.org/ontology/core/Core/Identifier>)
# Class: <http://purl.obolibrary.org/obo/OBI_0000571> (manufacturer role)
EquivalentClasses(<http://purl.obolibrary.org/obo/OBI_0000571> <https://w3id.org/pmd/log/LOG_1000061>)
# Class: <http://www.w3.org/ns/org#Membership> (membresía)
SubClassOf(<http://www.w3.org/ns/org#Membership> <http://purl.obolibrary.org/obo/BFO_0000023>)
# Class: <http://www.w3.org/ns/org#Post> (Impiego)
SubClassOf(<http://www.w3.org/ns/org#Post> <http://purl.obolibrary.org/obo/BFO_0000023>)
# Class: <https://w3id.org/pmd/co/PMD_0000524> (assembling process)
EquivalentClasses(<https://w3id.org/pmd/co/PMD_0000524> <https://w3id.org/pmd/log/LOG_1000132>)
# Class: <https://w3id.org/pmd/co/PMD_0020138> (lot)
EquivalentClasses(<https://w3id.org/pmd/co/PMD_0020138> <https://w3id.org/pmd/log/LOG_1000037>)
# Class: <https://w3id.org/pmd/co/PMD_0040029> (geospatial site)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/co/PMD_0040029> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/GeospatialSite>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/co/PMD_0040029> "geospatial site"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/co/PMD_0040029> "site at or near the surface of the earth"@en-us)
SubClassOf(<https://w3id.org/pmd/co/PMD_0040029> <http://purl.obolibrary.org/obo/BFO_0000029>)
# Class: <https://w3id.org/pmd/co/PMD_0040030> (geospatial location)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/co/PMD_0040030> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/GeospatialLocation>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/co/PMD_0040030> "geospatial location"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/co/PMD_0040030> "geospatial site that is the location of some material entity at some time or the site of some process"@en-us)
EquivalentClasses(<https://w3id.org/pmd/co/PMD_0040030> ObjectIntersectionOf(<https://w3id.org/pmd/co/PMD_0040029> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000085>)))
SubClassOf(<https://w3id.org/pmd/co/PMD_0040030> <https://w3id.org/pmd/co/PMD_0040029>)
# Class: <https://w3id.org/pmd/co/PMD_0040129> (supply chain objective specification)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/co/PMD_0040129> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainObjectiveSpecification")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/co/PMD_0040129> "supply chain objective specification"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/co/PMD_0040129> "objective specification that prescribes what the outcome of a supply chain process should be")
SubClassOf(<https://w3id.org/pmd/co/PMD_0040129> <http://purl.obolibrary.org/obo/IAO_0000005>)
# Class: <https://w3id.org/pmd/co/PMD_0040151> (storage function)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/co/PMD_0040151> "storage function"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/co/PMD_0040151> "function of an material entity to store other material entities")
SubClassOf(<https://w3id.org/pmd/co/PMD_0040151> <http://purl.obolibrary.org/obo/BFO_0000034>)
# Class: <https://w3id.org/pmd/log/LOG_0000000> (industrial inventory)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_0000000> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IndustrialInventory")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_0000000> "industrial inventory"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_0000000> "material product, material component, raw material, or material artifact that is ready to be sold or used and is stored in a storage facility or on factory floor"@en)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_0000000> ObjectIntersectionOf(ObjectUnionOf(<https://w3id.org/pmd/log/LOG_1000028> <https://w3id.org/pmd/log/LOG_1000029> <https://w3id.org/pmd/log/LOG_1000102> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000030> ObjectComplementOf(<http://xmlns.com/foaf/0.1/Person>))) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_0000001>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_0000000> <http://purl.obolibrary.org/obo/BFO_0000040>)
# Class: <https://w3id.org/pmd/log/LOG_0000001> (industrial inventory role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_0000001> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IndustrialInventoryRole")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_0000001> "industrial inventory role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_0000001> "role held by some material entity when it is stored by a bussiness organization and it is intended to be supplied to a customer or to be used or consumed in some product production process"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_0000001> <https://w3id.org/pmd/log/LOG_1000106>)
SubClassOf(<https://w3id.org/pmd/log/LOG_0000001> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectUnionOf(<https://w3id.org/pmd/log/LOG_1000123> <https://w3id.org/pmd/log/LOG_1000128>)))))
# Class: <https://w3id.org/pmd/log/LOG_0000002> (consigning process)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000115> <https://w3id.org/pmd/log/LOG_0000002> "business process that results in placing a material entity in the possession of some agent without changing the ownership until the material entity is sold")
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_0000002> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ConsigningProcess")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_0000002> "consigning process"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_0000002> "business process that results in placing a material entity in the possession of some agent without changing the ownership until the material entity is sold")
SubClassOf(<https://w3id.org/pmd/log/LOG_0000002> <https://w3id.org/pmd/log/LOG_1000130>)
# Class: <https://w3id.org/pmd/log/LOG_0000003> (freight forwarding process)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000115> <https://w3id.org/pmd/log/LOG_0000003> "business process of planning and coordinating the transportation of material products on behalf of a shipper")
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_0000003> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwardingProcess")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_0000003> "freight forwarding process"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_0000003> "business process of planning and coordinating the transportation of material products on behalf of a shipper")
SubClassOf(<https://w3id.org/pmd/log/LOG_0000003> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000130> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000057> <https://w3id.org/pmd/log/LOG_1000016>)))
# Class: <https://w3id.org/pmd/log/LOG_0080000> (manufacturer identifier)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_0080000> "manufacturer identifier"@en)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_0080000> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/IAO_0020000> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/IAO_0000219> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000050> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <http://purl.obolibrary.org/obo/OBI_0000571>)))))
SubClassOf(<https://w3id.org/pmd/log/LOG_0080000> <https://w3id.org/pmd/log/LOG_1000006>)
# Class: <https://w3id.org/pmd/log/LOG_0080001> (product identifier)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_0080001> "product identifier"@en)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_0080001> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/IAO_0000219> <https://w3id.org/pmd/log/LOG_1000029>))
SubClassOf(<https://w3id.org/pmd/log/LOG_0080001> <http://purl.obolibrary.org/obo/IAO_0020000>)
# Class: <https://w3id.org/pmd/log/LOG_0080002> (batch identifier)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_0080002> "batch identifier"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_0080002> "denotes all material artifact generated by one distinguishable manufacturing process run"@en)
SubClassOf(<https://w3id.org/pmd/log/LOG_0080002> <http://purl.obolibrary.org/obo/IAO_0020000>)
# Class: <https://w3id.org/pmd/log/LOG_1000000> (agreement)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000000> <https://spec.industrialontologies.org/ontology/core/Core/Agreement>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000000> "agreement"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000000> "understanding between two or more parties that contains a set of commitments on the part of the parties"@en)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000000> <http://purl.obolibrary.org/obo/IAO_0000030>)
# Class: <https://w3id.org/pmd/log/LOG_1000001> (commercial service agreement)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000001> <https://spec.industrialontologies.org/ontology/core/Core/CommercialServiceAgreement>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000001> "commercial service agreement"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000001> "agreement between a customer and service provider that is about some commercial service to be provided by the service provider in exchange for compensation from the customer"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000001> <https://w3id.org/pmd/log/LOG_1000000>)
# Class: <https://w3id.org/pmd/log/LOG_1000002> (bill of lading)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000002> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/BillOfLading>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000002> "bill of lading"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000002> "agreement between a shipper and a carrier that prescribes some consigning process"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000002> <https://w3id.org/pmd/log/LOG_1000001>)
# Class: <https://w3id.org/pmd/log/LOG_1000003> (transport equipment role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000003> "https://spec.industrialontologies.org/ontology/core/Core/EquipmentRole")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000003> "transport equipment role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000003> "role held by a material artifact when it is planned to be involved in or is involved in carrying out some part of a planned transportation process and that is not consumed in that planned process")
SubClassOf(<https://w3id.org/pmd/log/LOG_1000003> <http://purl.obolibrary.org/obo/BFO_0000023>)
# Class: <https://w3id.org/pmd/log/LOG_1000004> (purchase order)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000004> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PurchaseOrder>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000004> "purchase order"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000004> "agreement between a buyer and a vendor (supplier) that that contains a set of commitments on the buyer and the vendeor"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000004> <https://w3id.org/pmd/log/LOG_1000000>)
# Class: <https://w3id.org/pmd/log/LOG_1000005> (lot number)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000005> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/LotNumber>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000005> "lot number"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000005> "identifier that uniquely denotes a particular quantity of material entities that have shared production or transformation history"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000005> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/IAO_0020000> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/IAO_0000219> <https://w3id.org/pmd/log/LOG_1000037>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000005> <http://purl.obolibrary.org/obo/IAO_0020000>)
# Class: <https://w3id.org/pmd/log/LOG_1000006> (organization identifier)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000006> <https://spec.industrialontologies.org/ontology/core/Core/OrganizationIdentifier>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000006> "organization identifier"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000006> "identifier that identifies an organization"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000006> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/IAO_0020000> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/IAO_0000219> <https://w3id.org/pmd/log/LOG_1000050>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000006> <http://purl.obolibrary.org/obo/IAO_0020000>)
# Class: <https://w3id.org/pmd/log/LOG_1000007> (part number)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000007> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PartNumber>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000007> "part number"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000007> "identifier that uniquely identifies an artifact (material artifact) and that is created according to some part numbering system"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000007> <http://purl.obolibrary.org/obo/IAO_0020000>)
# Class: <https://w3id.org/pmd/log/LOG_1000008> (physical location identifier)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000008> <https://spec.industrialontologies.org/ontology/core/Core/PhysicalLocationIdentifier>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000008> "physical location identifier"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000008> "identifier that identifies a physical location (site)"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000008> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/IAO_0020000> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/IAO_0000219> <http://purl.obolibrary.org/obo/BFO_0000029>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000008> <http://purl.obolibrary.org/obo/IAO_0020000>)
# Class: <https://w3id.org/pmd/log/LOG_1000009> (global location number)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000009> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/GlobalLocationNumber>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000009> "global location number"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000009> "identifer that uniquely identifies a business organization or a geospatial location and complies with GS1 GLN coding scheme"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000009> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000008> ObjectUnionOf(<https://w3id.org/pmd/co/PMD_0040030> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/IAO_0000219> <https://w3id.org/pmd/log/LOG_1000050>)) ObjectHasValue(<https://w3id.org/pmd/co/PMD_0000004> <https://w3id.org/pmd/co/PMD_0040128>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000009> <https://w3id.org/pmd/log/LOG_1000008>)
# Class: <https://w3id.org/pmd/log/LOG_1000010> (location identification scheme)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000010> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/LocationIdentificationScheme")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000010> "location identification scheme"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000010> "identification scheme that prescribes how unique identifiers of physical locations are formulated")
SubClassOf(<https://w3id.org/pmd/log/LOG_1000010> <http://purl.obolibrary.org/obo/IAO_0000030>)
# Class: <https://w3id.org/pmd/log/LOG_10000105> (customer)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_10000105> <https://spec.industrialontologies.org/ontology/core/Core/Customer>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_10000105> "customer"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_10000105> "person or organization which has a customer role"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_10000105> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000058>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_10000105> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000011> (agent)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000011> "https://spec.industrialontologies.org/iof/ontology/core/Core/Agent")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000011> "agent"@en)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000011> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000054>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000011> <http://purl.obolibrary.org/obo/BFO_0000040>)
# Class: <https://w3id.org/pmd/log/LOG_1000012> (buyer)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000012> <https://spec.industrialontologies.org/ontology/core/Core/Buyer>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000012> "buyer"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000012> "person or organization which has a buyer role"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000012> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000055>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000012> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000013> (consignee)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000013> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Consignee>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000013> "consignee"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000013> "person or business organization that receives some shipment"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000013> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000056>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000013> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000014> (consignor)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000014> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Shipper>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000014> "consignor"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#altLabel> <https://w3id.org/pmd/log/LOG_1000014> "shipper")
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000014> "person or business organization that prepares and sends shipments for transport"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000014> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000057>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000014> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000015> (distributor)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000015> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Distributor>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000015> "distributor"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000015> "person or business organization when it purchases products from manufacturers and resells them to wholesalers"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000015> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000060>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000015> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000016> (freight forwarder)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000016> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwarder>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000016> "freight forwarder"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000016> "person or business organization when it arranges the transportation of shipments on behalf of the shipper (consignor) or consignee"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000016> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000067>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000016> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000017> (manufacturer)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000017> <https://spec.industrialontologies.org/ontology/core/Core/Manufacturer>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000017> "manufacturer"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000017> "organization which has a manufacturer role"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000017> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000050> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <http://purl.obolibrary.org/obo/OBI_0000571>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000017> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000018> (retailer)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000018> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Retailer>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000018> "retailer"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000018> "person or business organization who buys products from wholesalers and manufacturers and resells them to end users"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000018> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000062>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000018> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000019> (shipper)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000019> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Shipper")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000019> "shipper"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000019> "person or business organization that prepares and sends shipments for transport")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000019> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000057>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000019> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000020> (supplier)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000020> <https://spec.industrialontologies.org/ontology/core/Core/Supplier>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000020> "supplier"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000020> "person or organization which has a supplier role"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000020> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000063>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000020> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000021> (carrier)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000021> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Carrier>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000021> "carrier"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000021> "person or business organization who provides transportation services"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000021> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000070>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000021> <https://w3id.org/pmd/log/LOG_1000020>)
# Class: <https://w3id.org/pmd/log/LOG_1000022> (service provider)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000022> <https://spec.industrialontologies.org/ontology/core/Core/ServiceProvider>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000022> "service provider"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000022> "person or organization which has a service provider role"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000022> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000064>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000022> <https://w3id.org/pmd/log/LOG_1000020>)
# Class: <https://w3id.org/pmd/log/LOG_1000023> (supply chain agent)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000023> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainAgent>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000023> "supply chain agent"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000023> "person or business organization who supplies material products or commercial services to other agents in a supply chain"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000023> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000071>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000023> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000024> (wholesaler)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000024> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Wholesaler>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000024> "wholesaler"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000024> "person or business organization that buys products from distributors and resells them to retailers or other business organizations"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000024> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000011> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000072>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000024> <https://w3id.org/pmd/log/LOG_1000011>)
# Class: <https://w3id.org/pmd/log/LOG_1000025> (cargo)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000025> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Cargo>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000025> "cargo"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000025> "material entity that is transported using a transport equipment by a carrier"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000025> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000073>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000025> <http://purl.obolibrary.org/obo/BFO_0000040>)
# Class: <https://w3id.org/pmd/log/LOG_1000026> (load)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000026> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Load")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000026> "load"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000026> "collection of material entities which share the same transportation and transfer history")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000026> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000082>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000026> <http://purl.obolibrary.org/obo/BFO_0000040>)
# Class: <https://w3id.org/pmd/log/LOG_1000027> (maintainable material item)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000027> <https://spec.industrialontologies.org/ontology/core/Core/MaintainableMaterialItem>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000027> "maintainable material item"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000027> "material artifact or engineered system which has the maintainable material item role"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000027> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000104>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000027> <http://purl.obolibrary.org/obo/BFO_0000040>)
# Class: <https://w3id.org/pmd/log/LOG_1000028> (material component)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000028> <https://spec.industrialontologies.org/ontology/core/Core/MaterialComponent>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000028> "material component"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000028> "material entity which has the material component role"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000028> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000105>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000028> <http://purl.obolibrary.org/obo/BFO_0000040>)
# Class: <https://w3id.org/pmd/log/LOG_1000029> (material product)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000029> <https://spec.industrialontologies.org/ontology/core/Core/MaterialProduct>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000029> "material product"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000029> "material entity which has the material product role"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000029> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000078>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000029> <http://purl.obolibrary.org/obo/BFO_0000040>)
# Class: <https://w3id.org/pmd/log/LOG_1000030> (material resource)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000030> <https://spec.industrialontologies.org/ontology/core/Core/MaterialResource>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000030> "material resource"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000030> "material entity which has the material resource role"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000030> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000106>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000030> <http://purl.obolibrary.org/obo/BFO_0000040>)
# Class: <https://w3id.org/pmd/log/LOG_1000031> (department)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000031> "department"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000031> "object aggregate that is part of an organisation and consists of persons that are members of the same organisation"@en)
AnnotationAssertion(<https://w3id.org/pmd/co/logistics/PMD_0000060> <https://w3id.org/pmd/log/LOG_1000031> "true"^^xsd:boolean)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000031> <http://purl.obolibrary.org/obo/BFO_0000027>)
# Class: <https://w3id.org/pmd/log/LOG_1000032> (facility)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000032> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Facility>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000032> "facility"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000032> "engineered system that consists of buildings, structures, roads, machines, and equipment desgined to provide certain capabilities"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000032> <https://w3id.org/pmd/log/LOG_1000146>)
# Class: <https://w3id.org/pmd/log/LOG_1000033> (laboratory)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000119> <https://w3id.org/pmd/log/LOG_1000033> "“Laboratory.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/laboratory. Accessed 24 Nov. 2022."@en)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000033> "laboratory"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000033> "A place equipped for experimental study in a science or for testing and analysis."@en)
AnnotationAssertion(<https://w3id.org/pmd/co/logistics/PMD_0000060> <https://w3id.org/pmd/log/LOG_1000033> "true"^^xsd:boolean)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000033> <https://w3id.org/pmd/log/LOG_1000032>)
# Class: <https://w3id.org/pmd/log/LOG_1000034> (storage facility)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000034> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/StorageFacility>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000034> "storage facility"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000034> "facility that is designed to store materials or goods"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000034> <https://w3id.org/pmd/log/LOG_1000032>)
# Class: <https://w3id.org/pmd/log/LOG_1000035> (distribution center)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000035> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/DistributionCenter>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000035> "distribution center"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000035> "storage facility designed to store manufactured products that are to be distributed to resellers and wholesalers"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000035> <https://w3id.org/pmd/log/LOG_1000034>)
# Class: <https://w3id.org/pmd/log/LOG_1000036> (logistic unit)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000036> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/LogisticUnit")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000036> "logistic unit"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000036> "material entities packaged together for transport or storage")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000036> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000027> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000083>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/IAO_0000235> <http://purl.obolibrary.org/obo/IAO_0020000>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000036> <http://purl.obolibrary.org/obo/BFO_0000027>)
# Class: <https://w3id.org/pmd/log/LOG_1000037> (lot)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000037> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Lot")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000037> "lot"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000037> "quantity of material entities produced together and sharing the same production history and specifications")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000037> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000027> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000080>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/IAO_0000235> <https://w3id.org/pmd/log/LOG_1000005>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000037> <http://purl.obolibrary.org/obo/BFO_0000027>)
# Class: <https://w3id.org/pmd/log/LOG_1000038> (supply chain system)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000038> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainSystem>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000038> "supply chain system"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000038> "engineered system composed of agents, facilties, machines, and information systems that is designed to deliver products and services to end customers through an engineered flow of information, material, and cash"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000038> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000027> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000015> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0002233> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/OBI_0000260> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000059> <https://w3id.org/pmd/log/LOG_1000097>))))) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectUnionOf(<https://w3id.org/pmd/log/LOG_1000112> <https://w3id.org/pmd/log/LOG_1000123>)) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0002351> <https://w3id.org/pmd/log/LOG_1000020>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000038> <http://purl.obolibrary.org/obo/BFO_0000027>)
# Class: <https://w3id.org/pmd/log/LOG_1000039> (manufacturing supply chain system)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000039> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ManufacturingSupplyChain>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000039> "manufacturing supply chain system"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000039> "supply chain system that is formed to manufacture one or more products"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000039> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000038> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_10001247> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0002234> <https://w3id.org/pmd/log/LOG_1000029>)))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000039> <https://w3id.org/pmd/log/LOG_1000038>)
# Class: <https://w3id.org/pmd/log/LOG_1000040> (service supply chain system)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000040> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ServiceSupplyChain>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000040> "service supply chain system"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000040> "supply chain system that is formed to deliver some commercial services"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000040> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000038> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000112>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000040> <https://w3id.org/pmd/log/LOG_1000038>)
# Class: <https://w3id.org/pmd/log/LOG_1000041> (piece of transport equipment)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000041> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PieceofTransportEquipment>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000041> "piece of transport equipment"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000041> "piece of equipment that has the function of holding, protecting, and securing a number of material entites for transportation purposes")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000041> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000030> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000003>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000041> <http://purl.obolibrary.org/obo/BFO_0000030>)
# Class: <https://w3id.org/pmd/log/LOG_1000042> (container)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000042> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Container>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000042> "container"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000042> "piece of transport equipment that is designed to contain some material entities"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000042> <https://w3id.org/pmd/log/LOG_1000041>)
# Class: <https://w3id.org/pmd/log/LOG_1000043> (trailer)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000043> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Trailer>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000043> "trailer"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000043> "piece of transport equipment that is unpowered and is pulled by a powered vehicle"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000043> <https://w3id.org/pmd/log/LOG_1000041>)
# Class: <https://w3id.org/pmd/log/LOG_1000044> (wagon)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000044> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Wagon>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000044> "wagon"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000044> "piece of transport equipment in a rail transport system used for carrying cargo or passengers"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000044> <https://w3id.org/pmd/log/LOG_1000041>)
# Class: <https://w3id.org/pmd/log/LOG_1000046> (integrated carrier business organization)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000046> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IntegratedCarrierBusinessOrganization")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000046> "integrated carrier business organization"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000046> "business organization that is created for the purpose of providing different types of transportation and freight forwarding services")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000046> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000047> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000052>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000053>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000046> <https://w3id.org/pmd/log/LOG_1000047>)
# Class: <https://w3id.org/pmd/log/LOG_1000047> (business organization)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000047> "https://spec.industrialontologies.org/ontology/core/Core/BusinessOrganization")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000047> "business organization"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000047> "organization engaging in or planning to engage in any activity of buying and selling goods or services for a profit")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000047> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000050> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000091>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000047> <http://www.w3.org/ns/org#FormalOrganization>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000047> <https://w3id.org/pmd/log/LOG_1000050>)
# Class: <https://w3id.org/pmd/log/LOG_1000050> (organization)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000119> <https://w3id.org/pmd/log/LOG_1000050> <http://openenergy-platform.org/ontology/oeo/OEO_00030022>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000050> "organization"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000050> "An organization is an immaterial entity that has the organisation role and there exists some sort of legal framework that recognises the entity and its continued existence."@en)
AnnotationAssertion(<https://w3id.org/pmd/co/logistics/PMD_0000060> <https://w3id.org/pmd/log/LOG_1000050> "true"^^xsd:boolean)
AnnotationAssertion(<https://w3id.org/pmd/co/logistics/PMD_0001032> <https://w3id.org/pmd/log/LOG_1000050> "issue: https://github.com/materialdigital/core-ontology/issues/101")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000050> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000027> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/IAO_0000235> <https://w3id.org/pmd/log/LOG_1000006>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0002351> <http://xmlns.com/foaf/0.1/Person>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000050> <http://purl.obolibrary.org/obo/BFO_0000027>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000050> <http://www.w3.org/ns/org#FormalOrganization>)
# Class: <https://w3id.org/pmd/log/LOG_1000051> (shipment)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000051> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Shipment")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000051> "shipment"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000051> "collection of material entities delivered to a receiver's location that have undergone the same dispatch and receipt processes")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000051> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> <https://w3id.org/pmd/log/LOG_1000081>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000051> <http://purl.obolibrary.org/obo/BFO_0000040>)
# Class: <https://w3id.org/pmd/log/LOG_1000052> (freight forwarding business function)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000052> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwardingBusinessFunction>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000052> "freight forwarding business function"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000052> "business function that is realized in a freight forwarding service"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000052> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000091> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000054> <https://w3id.org/pmd/log/LOG_1000114>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000052> <https://w3id.org/pmd/log/LOG_1000091>)
# Class: <https://w3id.org/pmd/log/LOG_1000053> (transportation business function)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000053> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/TransportationBusinessFunction")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000053> "transportation business function"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000053> "business function that is realized in a transportation service")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000053> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000091> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000054> <https://w3id.org/pmd/log/LOG_1000117>)))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000053> <https://w3id.org/pmd/log/LOG_1000091>)
# Class: <https://w3id.org/pmd/log/LOG_1000054> (agent role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000054> <https://spec.industrialontologies.org/ontology/core/Core/AgentRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000054> "agent role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#closeMatch> <https://w3id.org/pmd/log/LOG_1000054> <http://www.w3.org/ns/org#Role>)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000054> "role that someone or something has when they act on behalf of a person, engineered system or a group of agents"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000054> <http://purl.obolibrary.org/obo/BFO_0000023>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000054> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectComplementOf(<http://purl.obolibrary.org/obo/BFO_0000024>)) ObjectSomeValuesFrom(<https://w3id.org/pmd/log/LOG_1900001> ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>)))))
# Class: <https://w3id.org/pmd/log/LOG_1000055> (buyer role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000055> <https://spec.industrialontologies.org/ontology/core/Core/BuyerRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000055> "buyer role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000055> "agent role held by a person or organization when it buys a product or a service"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000055> <https://w3id.org/pmd/log/LOG_1000054>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000055> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000111>))))
# Class: <https://w3id.org/pmd/log/LOG_1000056> (consignee role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000056> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ConsigneeRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000056> "consignee role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000056> "role held by a person or business organization when it receives a shipment from a carrier and owns the shipment after the receipt"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000056> <https://w3id.org/pmd/log/LOG_1000054>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000056> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000124> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000057> <https://w3id.org/pmd/log/LOG_1000021>))))))
# Class: <https://w3id.org/pmd/log/LOG_1000057> (consignor role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000057> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ConsignorRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000057> "consignor role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000057> "role held by a business organization or person when it prepares, initiates, and consigns a shipment it owns"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000057> <https://w3id.org/pmd/log/LOG_1000054>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000057> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000117>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000126>))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000057> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<https://w3id.org/pmd/log/LOG_1900003> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000051> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0002353> <https://w3id.org/pmd/log/LOG_1000126>))))))
# Class: <https://w3id.org/pmd/log/LOG_1000058> (customer role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000058> <https://spec.industrialontologies.org/ontology/core/Core/CustomerRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000058> "customer role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000058> "agent role held by a person or organization when it utilizes the product or receives the service or subscribes to the commercial service agreement"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000058> <https://w3id.org/pmd/log/LOG_1000054>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000058> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>)))
# Class: <https://w3id.org/pmd/log/LOG_1000059> (service consumer role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000059> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ServiceConsumerRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000059> "service consumer role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000059> "customer role held by a person or business organization when it receives and consumes a service"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000059> <https://w3id.org/pmd/log/LOG_1000058>)
# Class: <https://w3id.org/pmd/log/LOG_1000060> (distributor role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000060> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/DistributorRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000060> "distributor role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000060> "role held by a person or business organization when it buys some material products from a manufacturer and resells them to a wholesaler"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000060> <https://w3id.org/pmd/log/LOG_1000054>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000060> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000125> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000055> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000078> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> <http://purl.obolibrary.org/obo/BFO_0000040>))))))))
# Class: <https://w3id.org/pmd/log/LOG_1000061> (manufacturer role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000061> <https://spec.industrialontologies.org/ontology/core/Core/ManufacturerRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000061> "manufacturer role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000061> "agent role held by an organization when it produces material products"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000061> <https://w3id.org/pmd/log/LOG_1000054>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000061> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000050> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000123>))))
# Class: <https://w3id.org/pmd/log/LOG_1000062> (retailer role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000062> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/RetailerRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000062> "retailer role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000062> "role held by a person or business organization when it buys products (material product) from manufacturers or wholesalers and offers them for sale to customers who are the end users of the product"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000062> <https://w3id.org/pmd/log/LOG_1000054>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000062> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000055> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000054> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000111> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000055> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000063> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectUnionOf(<https://w3id.org/pmd/log/LOG_1000017> <https://w3id.org/pmd/log/LOG_1000024>)))) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000055> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000078> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> <http://purl.obolibrary.org/obo/BFO_0000040>))))))))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000062> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000125> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000055> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000078> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> <http://purl.obolibrary.org/obo/BFO_0000040>))))))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000062> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000128> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000055> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000055> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> <https://w3id.org/pmd/log/LOG_10000105>))) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000055> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000078> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> <http://purl.obolibrary.org/obo/BFO_0000040>))))))))
# Class: <https://w3id.org/pmd/log/LOG_1000063> (supplier role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000063> <https://spec.industrialontologies.org/ontology/core/Core/SupplierRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000063> "supplier role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000063> "agent role held by a person or organization when it offers to sell or provide products or services"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000063> <https://w3id.org/pmd/log/LOG_1000054>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000063> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectUnionOf(<https://w3id.org/pmd/log/LOG_1000125> <https://w3id.org/pmd/log/LOG_1000128>)))))
# Class: <https://w3id.org/pmd/log/LOG_1000064> (service provider role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000064> <https://spec.industrialontologies.org/ontology/core/Core/ServiceProviderRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000064> "service provider role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000064> "supplier role held by a person or organization when it offers to sell or provide a commercial service"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000064> <https://w3id.org/pmd/log/LOG_1000063>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000064> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectUnionOf(<https://w3id.org/pmd/log/LOG_1000112> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000125> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000057> <https://w3id.org/pmd/log/LOG_1000001>)))))))
# Class: <https://w3id.org/pmd/log/LOG_1000065> (logistics service provider role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000065> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/LogisticsServiceProviderRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000065> "logistics service provider role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000065> "service provider role that is held by a business organization or person when it provides a logistics service"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000065> <https://w3id.org/pmd/log/LOG_1000064>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000065> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000050>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000113>))))
# Class: <https://w3id.org/pmd/log/LOG_1000066> (manufacturing service provider role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000066> <https://spec.industrialontologies.org/ontology/supplychain/service/ServiceOntology/ManufacturingServiceProviderRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000066> "manufacturing service provider role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000066> "service provider role that is held by a person or business organization when it provides a manufacturing service"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000066> <https://w3id.org/pmd/log/LOG_1000064>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000066> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000118>))))
# Class: <https://w3id.org/pmd/log/LOG_1000067> (freight forwarder role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000067> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwarderRole")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000067> "freight forwarder role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000067> "A freight forwarder, or forwarding agent, is a person or company that organizes shipments for individuals or corporations to get goods from the manufacturer or producer to a market, customer or final point of distribution.")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000067> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000065> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectIntersectionOf(ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000114>) ObjectSomeValuesFrom(<https://w3id.org/pmd/log/LOG_1900001> ObjectUnionOf(<https://w3id.org/pmd/log/LOG_1000013> <https://w3id.org/pmd/log/LOG_1000014>))) ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>)))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000067> <https://w3id.org/pmd/log/LOG_1000065>)
# Class: <https://w3id.org/pmd/log/LOG_1000068> (packaging service provider role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000068> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PackagingServiceProviderRole")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000068> "packaging service provider role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000068> "logisitics service provider role held by a business organization or person when it provides a packaging service")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000068> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000065> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000115>)))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000068> <https://w3id.org/pmd/log/LOG_1000065>)
# Class: <https://w3id.org/pmd/log/LOG_1000069> (storage service provider role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000069> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/StorageServiceProviderRole")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000069> "storage service provider role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000069> "logisitics service provider role that is held by a person or business organization when it provides a storage service")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000069> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000065> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000116>)))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000069> <https://w3id.org/pmd/log/LOG_1000065>)
# Class: <https://w3id.org/pmd/log/LOG_1000070> (transportation service provider role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000070> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/TransportationServiceProviderRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000070> "transportation service provider role"@en)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000070> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000065> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000117>)))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000070> <https://w3id.org/pmd/log/LOG_1000065>)
# Class: <https://w3id.org/pmd/log/LOG_1000071> (supply chain agent role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000071> "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainAgentRole")
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000071> "supply chain agent role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000071> "role held by an agent that is a part of a supply chain system when it supplies material products or commercial services to other agents in the supply chain system")
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000071> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000054> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000054> <https://w3id.org/pmd/log/LOG_10001247>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000011> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000050> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000027> ObjectAllValuesFrom(<http://purl.obolibrary.org/obo/RO_0002351> <https://w3id.org/pmd/log/LOG_1000020>)))))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000071> <https://w3id.org/pmd/log/LOG_1000054>)
# Class: <https://w3id.org/pmd/log/LOG_1000072> (wholesaler role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000072> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/WholesalerRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000072> "wholesaler role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000072> "role held by a person or business organization when it buys some product from a distributor and resells them to retailers"@en-us)
EquivalentClasses(<https://w3id.org/pmd/log/LOG_1000072> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000125> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000055> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000078> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> <http://purl.obolibrary.org/obo/BFO_0000040>))))))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000072> <https://w3id.org/pmd/log/LOG_1000054>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000072> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000196> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000055> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000054> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000111> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000055> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000063> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> <https://w3id.org/pmd/log/LOG_1000015>))) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000055> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000078> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> <http://purl.obolibrary.org/obo/BFO_0000040>))))))))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000072> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> <https://w3id.org/pmd/log/LOG_1000128>))))
SubClassOf(<https://w3id.org/pmd/log/LOG_1000072> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(ObjectUnionOf(<http://xmlns.com/foaf/0.1/Person> <https://w3id.org/pmd/log/LOG_1000047>) ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000125> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000055> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000078> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> <http://purl.obolibrary.org/obo/BFO_0000040>))))))))
# Class: <https://w3id.org/pmd/log/LOG_1000073> (cargo role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000073> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/CargoRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000073> "cargo role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000073> "role held by a material entity when it is being transported or is planned to be transported by a carrier"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000073> <http://purl.obolibrary.org/obo/BFO_0000023>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000073> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(<http://purl.obolibrary.org/obo/BFO_0000040> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000056> ObjectIntersectionOf(<https://w3id.org/pmd/log/LOG_1000143> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/RO_0000057> <https://w3id.org/pmd/log/LOG_1000021>))))))
# Class: <https://w3id.org/pmd/log/LOG_1000075> (ship from location role)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000412> <https://w3id.org/pmd/log/LOG_1000075> <https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ShipFromLocationRole>)
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/log/LOG_1000075> "ship from location role"@en)
AnnotationAssertion(<http://www.w3.org/2004/02/skos/core#definition> <https://w3id.org/pmd/log/LOG_1000075> "location role held by a geospatial site when it is the location at which some dispatch process occures"@en-us)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000075> <https://w3id.org/pmd/log/LOG_1000085>)
SubClassOf(<https://w3id.org/pmd/log/LOG_1000075> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000197> ObjectIntersectionOf(<https://w3id.org/pmd/co/PMD_0040029> ObjectSomeValuesFrom(<http://purl.obolibrary.org/obo/BFO_0000183> <https://w3id.org/pmd/log/LOG_1000126>))))
# Class: <https://w3id.org/pmd/log/LOG_1000076> (ship to location role)