forked from vocol/scor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscor.ttl
9550 lines (8714 loc) · 376 KB
/
scor.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix olo: <http://purl.org/ontology/olo/core#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix schema: <http://schema.org/> .
@prefix scor: <http://purl.org/eis/vocab/scor#> .
scor:
rdf:type owl:Ontology ;
rdfs:comment "A vocabulary which represents the Supply Chain Operations Reference (SCOR) standard."@en ;
rdfs:label "SCORVoc"@en;
dct:creator <http://eis.iai.uni-bonn.de/Irlan>, <http://eis.iai.uni-bonn.de/NiklasPetersen>, <http://sebastian.tramp.name> ;
dct:publisher <http://dbpedia.org/resource/University_of_Bonn> ;
dct:created "2015-03-01"^^xsd:date ;
dct:modified "2015-11-05"^^xsd:date ;
owl:imports <http://www.w3.org/2004/02/skos/core> , dct: ;
owl:versionInfo "SNAPSHOT" ;
void:vocabulary
<http://purl.org/dc/terms/> ,
<http://www.w3.org/2004/02/skos/core#> ,
<http://purl.org/vocab/vann/> ,
<http://rdfs.org/ns/void#> ,
<http://purl.org/ontology/olo/core#> ,
<http://www.w3.org/2003/06/sw-vocab-status/ns#> ,
<http://usefulinc.com/ns/doap#> ,
<http://schema.org/> ;
vann:preferredNamespacePrefix "scor" ;
vann:preferredNamespaceUri "http://purl.org/eis/vocab/scor#" ;
doap:homepage <https://github.com/vocol/scor> ;
doap:implements <http://www.apics.org/sites/apics-supply-chain-council/frameworks/scor> ;
doap:bug-database <https://github.com/vocol/scor/issues> ;
doap:download-page <https://github.com/vocol/scor/releases> ;
doap:wiki <https://github.com/vocol/scor/wiki> ;
doap:repository <https://github.com/vocol/scor.git> ;
rdfs:isDefinedBy scor: ;
.
<https://github.com/vocol/scor.git>
rdf:type doap:GitRepository ;
rdfs:label "SCORVoc GitHub Repository" ;
.
<http://eis.iai.uni-bonn.de/Irlan>
rdf:type schema:Person;
rdfs:label "Irlán Grangel-González";
schema:affiliation <http://dbpedia.org/resource/University_of_Bonn>;
.
<http://eis.iai.uni-bonn.de/NiklasPetersen>
rdf:type schema:Person;
rdfs:label "Niklas Petersen";
schema:affiliation <http://dbpedia.org/resource/University_of_Bonn>;
.
<http://sebastian.tramp.name>
rdf:type schema:Person;
rdfs:label "Sebastian Tramp";
.
<http://dbpedia.org/resource/University_of_Bonn>
rdf:type schema:CollegeOrUniversity;
rdfs:label "University of Bonn"@en, "Rheinische Friedrich-Wilhelms-Universität Bonn"@de;
.
<http://www.opendatacommons.org/licenses/pddl/1.0/>
rdfs:label "ODC Public Domain Dedication and Licence (PDDL) 1.0"@en ;
.
# Level 0
[]
rdf:type owl:AllDifferent ;
owl:distinctMembers (
scor:Aptitude scor:Competency scor:Experience scor:Skill
scor:Training scor:Practice scor:Process
schema:Person
) .
scor:Aptitude
rdf:type owl:Class ;
rdfs:comment "A natural, acquired, learned or developed ability to perform a certain kind of work at a"@en ;
rdfs:label "Aptitude"@en ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:Competency
rdf:type owl:Class ;
rdfs:comment "Describes the level or state of qualification to perform a certain role or tasks"@en ;
rdfs:label "Competency"@en ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:Experience
rdf:type owl:Class ;
rdfs:comment " the knowledge or ability acquired by observation or active participation. "@en ;
rdfs:label "Experience"@en ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:Skill
rdf:type owl:Class ;
rdfs:comment "The capacity to deliver pre-determined results with minimal input of time and energy"@en ;
rdfs:label "Skill"@en ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:Training
rdf:type owl:Class ;
rdfs:comment "Develops a skill or type of behavior through instruction"@en ;
rdfs:label "Training"@en ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
schema:Person
rdf:type owl:Class ;
rdfs:comment "Models person in a Supply Chain"@en ;
rdfs:label "Person"@en ;
.
scor:Practice
rdf:type owl:Class ;
rdfs:comment "A practice is a unique way to configure a process or a set of processes"@en ;
rdfs:label "Practice"@en ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:Process
rdf:type owl:Class ;
rdfs:comment "A process is a unique activity performed to meet predefined outcomes"@en ;
rdfs:label "Process"@en ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Level 1 Practice
[]
rdf:type owl:AllDifferent ;
owl:distinctMembers (
scor:BestPractice scor:EmergingPractice scor:StandardPractice
) .
scor:BestPractice
rdf:type owl:Class ;
rdfs:comment "Best practices are 'current', 'structured' and 'repeatable' practices that have had a proved and positive impact on supply chain performance"@en ;
rdfs:label "Best Practice"@en ;
rdfs:subClassOf scor:Practice ;
skos:notation "BP.B" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:EmergingPractice
rdf:type owl:Class ;
rdfs:comment "Introduce new technology, knowledge or radically different ways of organizing processes"@en ;
rdfs:label "Emerging Practice"@en ;
rdfs:subClassOf scor:Practice ;
skos:notation "BP.E" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:StandardPractice
rdf:type owl:Class ;
rdfs:comment "How a wide range of companies have historically done business by default or happenstance"@en ;
rdfs:label "Standard Practice"@en ;
rdfs:subClassOf scor:Practice ;
skos:notation "BP.S" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Level 1 Processes
[]
rdf:type owl:AllDifferent ;
owl:distinctMembers (
scor:Plan scor:Source scor:Make scor:Deliver scor:Return scor:Enable
) .
scor:Plan
rdf:type owl:Class ;
rdfs:subClassOf scor:Process ;
rdfs:comment "Describes the planning activities associated with operating a supply chain. This includes gathering customer requirements, collecting information on available resources, and balancing requirements and resources to determine planned capabilities and resource gaps. This is followed by identifying the actions required to correct any gaps."@en ;
rdfs:label "Plan"@en ;
rdfs:subClassOf scor:Process ;
skos:notation "sP" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:Source
rdf:type owl:Class ;
rdfs:subClassOf scor:Process ;
rdfs:comment "Order, deliver, receipt and transfer of raw material items, subassemblies, product and/or services"@en ;
rdfs:label "Source"@en ;
rdfs:subClassOf scor:Process ;
skos:notation "sS" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:Make
rdf:type owl:Class ;
rdfs:subClassOf scor:Process ;
rdfs:comment "Adds value to products through mixing, separating, forming, machining, and chemical processes"@en ;
rdfs:label "Make"@en ;
rdfs:subClassOf scor:Process ;
skos:notation "sM" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:Deliver
rdf:type owl:Class ;
rdfs:subClassOf scor:Process ;
rdfs:comment "Performs customer-facing order management and order fulfillment activities"@en ;
rdfs:label "Deliver"@en ;
rdfs:subClassOf scor:Process ;
skos:notation "sD" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:Return
rdf:type owl:Class ;
rdfs:subClassOf scor:Process ;
rdfs:comment "Moves material from a customer back through the supply chain to address defects in product, ordering, or manufacturing, or to perform upkeep activities"@en ;
rdfs:label "Return"@en ;
rdfs:subClassOf scor:Process ;
skos:notation "sR" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:Enable
rdf:type owl:Class ;
rdfs:subClassOf scor:Process ;
rdfs:comment "Establishing, maintaining and monitoring information, relationships, resources, assets, business rules, compliance and contracts required to operate the supply chain"@en ;
rdfs:label "Enable"@en ;
rdfs:subClassOf scor:Process ;
skos:notation "sE" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Level 2 Processes
# Plan
[]
rdf:type owl:AllDifferent ;
owl:distinctMembers (
scor:PlanSupplyChain scor:PlanSource scor:PlanMake scor:PlanDeliver scor:PlanReturn
) .
scor:PlanSupplyChain
rdf:type owl:Class ;
rdfs:subClassOf scor:Plan ;
rdfs:comment "The development and establishment of courses of action over specified time periods that represent a projected appropriation of supply chain resources to meet supply chain requirements for the longest time fence constraints of supply resources"@en ;
rdfs:label "Plan Supply Chain"@en ;
rdfs:subClassOf scor:Plan ;
skos:notation "sP1" ;
scor:hasSteps scor:PlanSupplyChainStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:PlanSource
rdf:type owl:Class ;
rdfs:subClassOf scor:Plan ;
rdfs:comment "The development and establishment of courses of action over specified time periods that represent a projected appropriation of material resources to meet supply chain requirements"@en ;
rdfs:label "Plan Source"@en ;
rdfs:subClassOf scor:Plan ;
skos:notation "sP2" ;
scor:hasSteps scor:PlanSourceStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:PlanMake
rdf:type owl:Class ;
rdfs:subClassOf scor:Plan ;
rdfs:comment "The development and establishment of courses of action over specified time periods that represent a projected appropriation of production resources to meet production requirements"@en ;
rdfs:label "Plan Make"@en ;
rdfs:subClassOf scor:Plan ;
scor:hasSteps scor:PlanMakeStepList;
skos:notation "sP3" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:PlanDeliver
rdf:type owl:Class ;
rdfs:subClassOf scor:Plan ;
rdfs:comment "The development and establishment of courses of action over specified time periods that represent a projected appropriation of delivery resources to meet delivery requirements"@en ;
rdfs:label "Plan Deliver"@en ;
rdfs:subClassOf scor:Plan ;
skos:notation "sP4" ;
scor:hasSteps scor:PlanDeliverStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:PlanReturn
rdf:type owl:Class ;
rdfs:subClassOf scor:Plan ;
rdfs:comment "establish and adjust courses of action or tasks over specified time periods that represent a projected appropriation of return resources and assets to meet anticipated as well as unanticipated return requirements"@en ;
rdfs:label "Plan Return"@en ;
rdfs:subClassOf scor:Plan ;
skos:notation "sP5" ;
scor:hasSteps scor:PlanReturnStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Source
[]
rdf:type owl:AllDifferent ;
owl:distinctMembers (
scor:SourceStockedProduct scor:SourceMakeToOrderProduct scor:SourceEngineerToOrderProduct
) .
scor:SourceStockedProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Source ;
rdfs:comment "The process of ordering, receiving and transferring raw material items, sub-assemblies, product and or services based on aggregated demand requirements."@en;
rdfs:label "Source Stocked Product"@en ;
skos:notation "sS1" ;
scor:hasSteps scor:SourceStockedProductStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:SourceMakeToOrderProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Source ;
rdfs:comment "The processes of ordering and receiving product or material that is ordered (and may be configured) only when required by a specific customer order."@en ;
rdfs:label "Source Make-to-Order Product"@en ;
skos:notation "sS2" ;
scor:hasSteps scor:SourceMakeToOrderProductStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:SourceEngineerToOrderProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Source ;
rdfs:comment "The processes of identifying and selecting sources of supply, negotiating, validating, scheduling, ordering and receiving parts, assemblies or specialized products or services that are designed, ordered and/or built based on the requirements or specifications of a specific customer order."@en ;
rdfs:label "Source Engineer-to-Order Product"@en ;
skos:notation "sS3" ;
scor:hasSteps scor:SourceEngineerToOrderProductStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Make
[]
rdf:type owl:AllDifferent ;
owl:distinctMembers (
scor:MakeToStock scor:MakeToOrder scor:MakeEngineerToOrder
) .
scor:MakeToStock
rdf:type owl:Class ;
rdfs:subClassOf scor:Make ;
rdfs:comment "The process of manufacturing in a make-to-stock environment adds value to products through mixing, separating, forming, machining, and chemical processes."@en ;
rdfs:label "Make-to-Stock"@en ;
skos:notation "sM1" ;
scor:hasSteps scor:MakeToStockStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:MakeToOrder
rdf:type owl:Class ;
rdfs:subClassOf scor:Make ;
rdfs:comment "The process of manufacturing in a make-to-order environment adds value to products through mixing, separating, forming, machining, and chemical processes for a specific customer order."@en ;
rdfs:label "Make-to-Order"@en ;
skos:notation "sM2" ;
scor:hasSteps scor:MakeToOrderStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:MakeEngineerToOrder
rdf:type owl:Class ;
rdfs:subClassOf scor:Make ;
rdfs:comment "The process of developing, designing, validating, and ultimately using a manufacturing process to produce products or services based on the requirements of a specific customer."@en;
rdfs:label "Engineer-to-Order"@en ;
scor:hasSteps scor:EngineerToOrderStepList;
skos:notation "sM3" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Deliver
[]
rdf:type owl:AllDifferent ;
owl:distinctMembers (
scor:DeliverStockedProduct scor:DeliverMakeToOrderProduct
scor:DeliverEngineerToOrderProduct scor:DeliverRetailProduct
) .
scor:DeliverStockedProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Deliver ;
rdfs:comment "Delivers product that is sourced or made based on aggregated customer orders, projected orders/demand and inventory re-ordering parameters"@en ;
rdfs:label "Deliver Stocked Product"@en ;
skos:notation "sD1" ;
scor:hasSteps scor:DeliverStockedProductStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:DeliverMakeToOrderProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Deliver ;
rdfs:comment "Delivers product that is sourced, configured, manufactured, and/or assembled from standard raw materials, parts, ingredients or sub-assemblies, in response to a specific firm customer order"@en ;
rdfs:label "Deliver Make-to-Order Product"@en ;
skos:notation "sD2" ;
scor:hasSteps scor:DeliverMakeToOrderProductStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:DeliverEngineerToOrderProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Deliver ;
rdfs:comment "Obtaining, responding to, and allocating resources for a customer order that has unique requirements or specifications and delivering a product that is partially or fully designed, redesigned, manufactured, and/or assembled from a bill of materials or recipe that includes one or more custom parts or ingredients"@en ;
rdfs:label "Deliver Engineer-to-Order Product"@en ;
skos:notation "sD3" ;
scor:hasSteps scor:DeliverEngineerToProductStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:DeliverRetailProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Deliver ;
rdfs:comment "To acquire, merchandise, and sell finished goods at a retail store"@en ;
rdfs:label "Deliver Retail Product"@en ;
skos:notation "sD4" ;
scor:hasSteps scor:DeliverRetailProductStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Return
[]
rdf:type owl:AllDifferent ;
owl:distinctMembers (
scor:DeliverReturnDefectiveProduct scor:DeliverReturnMROProduct
scor:DeliverReturnExcessProduct scor:SourceReturnMROProduct
scor:SourceReturnDefectiveProduct scor:SourceReturnExcessProduct
) .
scor:DeliverReturnDefectiveProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Return ;
rdfs:comment "The receipt and disposition determination of defective products as defined by the warranty claims, product recall, non-conforming product and/or other similar policies including appropriate replacement"@en ;
rdfs:label "Deliver Return Defective Product"@en ;
skos:notation "sDR1" ;
scor:hasSteps scor:DeliverReturnDefectiveProduct;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:DeliverReturnMROProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Return ;
rdfs:comment "The receipt of Maintenance, Repair and Overhaul (MRO) products or company assets for the purpose of servicing, repairing or upgrading it, as defined by Maintenance Plans or the occurrence or anticipation of risk of failure"@en ;
rdfs:label "Deliver Return MRO Product"@en ;
scor:hasSteps scor:DRMROProductStepList;
skos:notation "sDR2" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:DeliverReturnExcessProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Return ;
rdfs:comment "The receipt of excess or aging inventory or obsolete products as defined by the terms and conditions of a customer/supplier contract"@en ;
rdfs:label "Deliver Return Excess Product"@en ;
skos:notation "sDR3" ;
scor:hasSteps scor:DRExcessProductStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:SourceReturnMROProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Return ;
rdfs:comment "The return of Maintenance, Repair and Overhaul (MRO) products or company assets for the purpose of servicing, repairing or upgrading it, as defined by Maintenance Plans or the occurrence or anticipation of risk of failure"@en ;
rdfs:label "Source Return MRO Product"@en ;
skos:notation "sSR2" ;
scor:hasSteps scor:SRMROProductStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:SourceReturnDefectiveProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Return ;
rdfs:comment "The return and disposition determination of defective products as defined by the warranty claims, product recall, non-conforming product and/or other similar policies including appropriate replacement"@en ;
rdfs:label "Source Return Defective Product"@en ;
skos:notation "sSR1" ;
scor:hasSteps scor:SRDefectiveProductStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:SourceReturnExcessProduct
rdf:type owl:Class ;
rdfs:subClassOf scor:Return ;
rdfs:comment "The return of excess or aging inventory or obsolete products as defined by the terms and conditions of a customer/supplier contract"@en ;
rdfs:label "Source Return Excess Product"@en ;
skos:notation "sSR3" ;
scor:hasSteps scor:SRExcessProductStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Enable
[]
rdf:type owl:AllDifferent ;
owl:distinctMembers (
scor:ManagePerformance scor:ManageSupplyChainBusinessRules
scor:ManageDataAndInformation scor:ManageSupplyChainHumanResources
scor:ManageSupplyChainAssets scor:ManageSupplyChainContracts
scor:ManageSupplyChainNetworks scor:ManageRegulatoryCompliance
scor:ManageSupplyChainRisk
) .
scor:ManageSupplyChainBusinessRules
rdf:type owl:Class ;
rdfs:subClassOf scor:Enable ;
rdfs:comment "Establishing, documenting, communicating and publishing supply chain business rules"@en ;
rdfs:label "Manage Supply Chain Business Rules"@en ;
skos:notation "sE1" ;
scor:hasSteps scor:ManageSCBusinessRulesStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:ManagePerformance
rdf:type owl:Class ;
rdfs:subClassOf scor:Enable ;
rdfs:comment "Reporting performance, identifying gaps in performance, performing root cause analysis, and developing and launching corrective actions to close gaps in performance"@en ;
rdfs:label "Manage Performance"@en ;
skos:notation "sE2" ;
scor:hasSteps scor:ManageSCPerformanceStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:ManageDataAndInformation
rdf:type owl:Class ;
rdfs:subClassOf scor:Enable ;
rdfs:comment "Collecting, maintaining and publishing data and information required to plan, operate, measure and manage the supply chain"@en ;
rdfs:label "Manage Data and Information"@en ;
skos:notation "sE3" ;
scor:hasSteps scor:ManageSCDataAndInformationStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:ManageSupplyChainHumanResources
rdf:type owl:Class ;
rdfs:subClassOf scor:Enable ;
rdfs:comment "Developing, governing and maintaining an organization of permanent, temporary and outsourced staff, with the right qualifications, in support of the business objects and supply chain goals"@en ;
rdfs:label "Manage Supply Chain Human Resources"@en ;
skos:notation "sE4" ;
scor:hasSteps scor:ManageSupplyChainHumanResources;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:ManageSupplyChainAssets
rdf:type owl:Class ;
rdfs:subClassOf scor:Enable ;
rdfs:comment "Scheduling, maintaining and dispositioning of supply chain assets that operate supply chain processes"@en ;
rdfs:label "Manage Supply Chain Assets"@en ;
skos:notation "sE5" ;
scor:hasSteps scor:ManageSCAssetsStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:ManageSupplyChainContracts
rdf:type owl:Class ;
rdfs:subClassOf scor:Enable ;
rdfs:comment "The management and communication of contractual agreements in support of business objectives and supply chain goals"@en ;
rdfs:label "Manage Supply Chain Contracts"@en ;
skos:notation "sE6" ;
scor:hasSteps scor:ManageSCContractsStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:ManageSupplyChainNetworks
rdf:type owl:Class ;
rdfs:subClassOf scor:Enable ;
rdfs:comment "Developing, governing and maintaining a network of supply chain assets"@en ;
rdfs:label "Manage Supply Chain Networks"@en ;
skos:notation "sE7" ;
scor:hasSteps scor:ManageSCNetworkStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:ManageRegulatoryCompliance
rdf:type owl:Class ;
rdfs:subClassOf scor:Enable ;
rdfs:comment "Identifying, collecting, assessing and integrating regulatory compliance requirements in standard supply chain processes, policies and business rules"@en ;
rdfs:label "Manage Regulatory Compliance"@en ;
skos:notation "sE8" ;
scor:hasSteps scor:ManageSCRegulatoryComplianceStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:ManageSupplyChainRisk
rdf:type owl:Class ;
rdfs:subClassOf scor:Enable ;
rdfs:comment "Identification and assessment of potential disruptions (risks) in the supply chain and developing a plan to mitigate these threats to operating the supply chain"@en ;
rdfs:label "Manage Supply Chain Risk"@en ;
skos:notation "sE9" ;
scor:hasSteps scor:ManageSCRiskStepList;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Level 3 Processes
# Plan SC
scor:PSCIdentifyPrioritizeAggregateSCRequirements
rdf:type owl:Class ;
rdfs:comment "The process of identifying, aggregating, and prioritizing, all sources of demand for the integrated supply chain of a product or service at the appropriate level, horizon and interval."@en ;
rdfs:label "Identify, Prioritize Aggregate Supply Chain Requirements"@en ;
scor:isStepOf scor:PlanSupplyChain ;
skos:notation "sP1.1" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:IdentifyPrioritizeAggregateSCResources
rdf:type owl:Class ;
rdfs:comment "The process of identifying, prioritizing, and aggregating, as a whole with constituent parts, all sources of supply that are required and add value in the supply chain of a product or service at the appropriate level, horizon and interval."@en ;
rdfs:label "Identify, Prioritize Aggregate Supply Chain Resources"@en ;
scor:isStepOf scor:PlanSupplyChain ;
skos:notation "sP1.2" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:BalanceSCResourcesWithSCRequirements
rdf:type owl:Class ;
rdfs:comment "The process of identifying and measuring the gaps and imbalances between demand and resources in order to determine how to best resolve the variances through marketing, pricing, packaging, warehousing, outsource plans or some other action that will optimize service, flexibility, costs, assets, (or other supply chain inconsistencies) in an iterative and collaborative environment."@en ;
rdfs:label "Balance Supply Chain Resources with SC Requirements"@en ;
scor:isStepOf scor:PlanSupplyChain ;
skos:notation "sP1.3" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:EstablishCommunicateSCPlans
rdf:type owl:Class ;
rdfs:comment "The establishment and communication of courses of action over the appropriate time-defined (long-term, annual, monthly, weekly) planning horizon and interval, representing a projected appropriation of supply-chain resources to meet supply chain requirements."@en ;
rdfs:label "Establish and Communicate Supply Chain Plans"@en ;
scor:isStepOf scor:PlanSupplyChain ;
skos:notation "sP1.4" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Plan Source
scor:IdentifyPrioritizeAggregateProductRequirements
rdf:type owl:Class ;
rdfs:comment "The process of identifying, prioritizing, and considering, as a whole with constituent parts, all sources of demand for a product or service in the supply chain."@en ;
rdfs:label "Identify, Prioritize and Aggregate Product Requirements"@en ;
scor:isStepOf scor:PlanSource ;
skos:notation "sP2.1" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:IdentifyAssessAggregateProductResources
rdf:type owl:Class ;
rdfs:comment "The process of identifying, evaluating, and considering, as a whole with constituent parts, all material and other resources used to add value in the supply chain for a product or services."@en ;
rdfs:label "Identify, Assess and Aggregate Product Resources"@en ;
scor:isStepOf scor:PlanSource ;
skos:notation "sP2.2" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:BalanceProductResourcesWithProductRequirements
rdf:type owl:Class ;
rdfs:comment "The process of developing a time-phased course of action that commits resources to meet requirements."@en ;
rdfs:label "Balance Product Resources with Product Requirements"@en ;
scor:isStepOf scor:PlanSource ;
skos:notation "sP2.3" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:EstablishSourcingPlans
rdf:type owl:Class ;
rdfs:comment "The establishment of courses of action over specified time periods that represent a projected appropriation of supply resources to meet sourcing plan requirements."@en ;
rdfs:label "Establish Sourcing Plans"@en ;
scor:isStepOf scor:PlanSource ;
skos:notation "sP2.4" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Plan Make
scor:IdentifyPrioritizeAggregateProductionRequirements
rdf:type owl:Class ;
rdfs:comment "The process of identifying, prioritizing, and considering as a whole with constituent parts, all sources of demand in the creation of a product or service."@en ;
rdfs:label "Identify, Prioritize and Aggregate Production Requirements"@en ;
scor:isStepOf scor:PlanMake ;
skos:notation "sP3.1" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:IdentifyAssessAggregateProductionResources
rdf:type owl:Class ;
rdfs:comment "The process of identifying, evaluating, and considering, as a whole with constituent parts, all things that add value in the creation of a product or performance of a service."@en ;
rdfs:label "Identify, Assess and Aggregate Production Resources"@en ;
scor:isStepOf scor:PlanMake ;
skos:notation "sP3.2" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:BalanceProductionResourcesWithProductionRequirements
rdf:type owl:Class ;
rdfs:comment "The process of developing a time-phased course of action that commits creation and operation resources to meet creation and operation requirements."@en ;
rdfs:label "Balance Production Resources with Production Requirements"@en ;
scor:isStepOf scor:PlanMake ;
skos:notation "sP3.3" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:EstablishProductionPlans
rdf:type owl:Class ;
rdfs:comment "The establishment of courses of action over specified time periods that represent a projected appropriation of supply resources to meet production and operating plan requirements."@en ;
rdfs:label "Establish Production Plans"@en ;
scor:isStepOf scor:PlanMake ;
skos:notation "sP3.4" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Plan Deliver
scor:IdentifyPrioritizeAggregateDeliveryRequirements
rdf:type owl:Class ;
rdfs:comment "The process of identifying, prioritizing, and considering, as a whole with constituent parts, all sources of demand in the delivery of a product or service."@en ;
rdfs:label "Identify, Prioritize and Aggregate Delivery Requirements"@en ;
scor:isStepOf scor:PlanDeliver ;
skos:notation "sP4.1" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:IdentifyAssessAggregateDeliveryResources
rdf:type owl:Class ;
rdfs:comment "The process of identifying, evaluating, and considering, as a whole with constituent parts, all things that add value in the delivery of a product or service."@en ;
rdfs:label "Identify, Assess and Aggregate Delivery Resources"@en ;
scor:isStepOf scor:PlanDeliver ;
skos:notation "sP4.2" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:BalanceDeliveryResourcesCapabilitiesWithDeliveryRequirements
rdf:type owl:Class ;
rdfs:comment "The process of developing a time-phased course of action that commits delivery resources to meet delivery requirements."@en ;
rdfs:label "Balance Delivery Resources and Capabilities with Delivery Requirements"@en ;
scor:isStepOf scor:PlanDeliver ;
skos:notation "sP4.3" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:EstablishDeliveryPlans
rdf:type owl:Class ;
rdfs:comment "The establishment of courses of action over specified time periods that represent a projected appropriation of delivery resources to meet delivery requirements."@en ;
rdfs:label "Establish Delivery Plans"@en ;
scor:isStepOf scor:PlanDeliver ;
skos:notation "sP4.4" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Plan Return
scor:AssessAggregateReturnRequirements
rdf:type owl:Class ;
rdfs:comment "The process of identifying, evaluating, and considering, as a whole with constituent parts, all sources of demand for the return of a product."@en ;
rdfs:label "Assess and Aggregate Return Requirements"@en ;
scor:isStepOf scor:PlanReturn ;
skos:notation "sP5.1" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:IdentifyAssessAggregateReturnResources
rdf:type owl:Class ;
rdfs:comment "The process of identifying, evaluating, and consideration for all resources that add value to, execute, or constrain the processes for the return of a product.."@en ;
rdfs:label "Identify, Assess and Aggregate Return Resources"@en ;
scor:isStepOf scor:PlanReturn ;
skos:notation "sP5.2" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:BalanceReturnResourcesWithReturnRequirements
rdf:type owl:Class ;
rdfs:comment "The process of developing courses of action that make feasible the commitment the appropriate return resources and or assets to satisfy return requirements."@en ;
rdfs:label "Balance Return Resources with Return Requirements"@en ;
scor:isStepOf scor:PlanReturn ;
skos:notation "sP5.3" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:EstablishCommunicateReturnPlans
rdf:type owl:Class ;
rdfs:comment "The establishment and communication of courses of action over specified time periods that represent a projected appropriation of required return resources and or assets to meet return process requirements."@en ;
rdfs:label "Establish and Communicate Return Plans"@en ;
scor:isStepOf scor:PlanReturn ;
skos:notation "sP5.4" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Source Stocked Product
scor:SSPScheduleProductDeliveries
rdf:type owl:Class ;
rdfs:comment "Scheduling and managing the execution of the individual deliveries of product against an existing contract or purchase order."@en ;
rdfs:label "Schedule Product Deliveries (Source Stocked Product)"@en ;
scor:isStepOf scor:SourceStockedProduct ;
skos:notation "sS1.1" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:SSPReceiveProduct
rdf:type owl:Class ;
rdfs:comment "The process and associated activities of receiving product to contract requirements."@en ;
rdfs:label "Receive Product (Source Stocked Product)"@en ;
scor:isStepOf scor:SourceStockedProduct ;
skos:notation "sS1.2" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:SSPVerifyProduct
rdf:type owl:Class ;
rdfs:comment "The process and associated activities of receiving product to contract requirements."@en ;
rdfs:label "Verify Product (Source Stocked Product)"@en ;
scor:isStepOf scor:SourceStockedProduct ;
skos:notation "sS1.3" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:SSPTransferProduct
rdf:type owl:Class ;
rdfs:comment "The transfer of accepted product to the appropriate stocking location within the supply chain."@en ;
rdfs:label "Transfer Product (Source Stocked Product)"@en ;
scor:isStepOf scor:SourceStockedProduct ;
skos:notation "sS1.4" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:AuthorizeSupplierPayment
rdf:type owl:Class ;
rdfs:comment "The process of authorizing payments and paying suppliers for product or services."@en ;
rdfs:label "Authorize Supplier Payment (Source Stocked Product)"@en ;
scor:isStepOf scor:SourceStockedProduct ;
skos:notation "sS1.5" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
# Source MakeToOrderProduct
scor:SMOPScheduleProductDeliveries
rdf:type owl:Class ;
rdfs:comment "Scheduling and managing the execution of the individual deliveries of product against the contract."@en ;
rdfs:label "Schedule Product Deliveries (Source Make To Order Product)"@en ;
scor:isStepOf scor:SourceMakeToOrderProduct ;
skos:notation "sS2.1" ;
rdfs:isDefinedBy scor: ;
vs:term_status "testing" ;
dct:modified "2015-11-05"^^xsd:date ;
.
scor:SMOPReceiveProduct