-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautomatce-dismantling_information.owl
More file actions
1196 lines (783 loc) · 44 KB
/
Copy pathautomatce-dismantling_information.owl
File metadata and controls
1196 lines (783 loc) · 44 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: dcterms: <http://purl.org/dc/terms/>
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: skos: <http://www.w3.org/2004/02/skos/core#>
Prefix: obo: <http://purl.obolibrary.org/obo/>
Prefix: pmd: <https://w3id.org/pmd/co/>
Prefix: log: <https://w3id.org/pmd/log/>
Prefix: xml: <http://www.w3.org/XML/1998/namespace>
Prefix: xsd: <http://www.w3.org/2001/XMLSchema#>
Prefix: : <https://w3id.org/pmd/automatce/components/automatce-dismantling_information.owl>
Ontology: <https://w3id.org/pmd/automatce/components/automatce-dismantling_information.owl>
Import: <https://w3id.org/pmd/automatce/components/automatce-shared.owl>
Annotations:
dcterms:title "AUTOMATCE - Dismantling Information Module"@en,
rdfs:comment "The dismantling information module of the AUTOMATCE Ontology."@en
AnnotationProperty: dcterms:title
AnnotationProperty: rdfs:comment
AnnotationProperty: rdfs:label
AnnotationProperty: skos:definition
AnnotationProperty: skos:example
AnnotationProperty: skos:altLabel
Datatype: rdf:PlainLiteral
Class: obo:BFO_0000015
Class: obo:BFO_0000016
Class: obo:BFO_0000017
Class: obo:BFO_0000019
Class: obo:BFO_0000030
Class: obo:BFO_0000024
Class: obo:BFO_0000040
Class: obo:BFO_0000202
Class: obo:IAO_0000010
Class: obo:IAO_0000027
Class: obo:IAO_0000030
Class: obo:IAO_0000033
Class: obo:IAO_0000104
Class: obo:IAO_0000310
Class: obo:IAO_0020000
Class: obo:OBI_0001933
Class: pmd:PMD_0000602
Class: pmd:PMD_0000852
Class: pmd:PMD_0020022
Class: pmd:PMD_0040001
Class: pmd:PMD_0001044
Class: pmd:PMD_0020102
Class: pmd:PMD_0020133
Class: pmd:PMD_0020150
Class: log:LOG_0080002
Class: log:LOG_1000042
Class: log:LOG_1000130
Class: log:LOG_1000143
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010022>
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010175>
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010140>
Annotations:
rdfs:label "unusual properties"@en,
skos:definition "A data item that records noteworthy, unexpected, or abnormal properties observed for a component during use, inspection, dismantling, or circular economy assessment."@en,
skos:example "A note that a component shows unusual discoloration or deformation compared with its expected state."@en
SubClassOf:
obo:IAO_0000027
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010141>
Annotations:
rdfs:label "actual dismantling time"@en,
skos:definition "A temporal interval occupied by an observed dismantling process for a product, vehicle, or component."@en,
skos:example "The measured time in minutes to remove a component from an end-of-life vehicle."@en
SubClassOf:
obo:BFO_0000202
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010142>
Annotations:
rdfs:label "selected r-strategy rationale"@en,
skos:altLabel "reason for selected r-strategy"@en,
skos:definition "An information content entity that states the rationale for selecting a reuse, repair, remanufacturing, recycling, recovery, or disposal strategy for a product or component."@en,
skos:example "A reason stating that reuse was rejected because mounting points were broken."@en
SubClassOf:
obo:IAO_0000030
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010143>
Annotations:
rdfs:label "selected r-strategy"@en,
skos:definition "A directive information entity that specifies the circular economy strategy selected for a product or component."@en,
skos:example "A selected strategy of reuse, recycling, or remanufacturing for a dismantled component."@en
SubClassOf:
obo:IAO_0000033
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010144>
Annotations:
rdfs:label "actual dismantlability"@en,
skos:definition "A disposition assessment that records how dismantlable a product or component was in an observed dismantling event."@en,
skos:example "An actual dismantlability assessment from a dismantler after removing a door module."@en
SubClassOf:
<https://w3id.org/pmd/automatce/AUTOMATCE_0010060>
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010145>
Annotations:
rdfs:comment "Expected value datatype: xsd:float; expected unit: kg CO2e."@en,
rdfs:label "selected r-strategy carbon footprint"@en,
skos:altLabel "actual footprint of chosen r-strategy"@en,
skos:definition "A product carbon footprint that specifies the greenhouse gas emissions of the selected circular economy strategy for a component."@en,
skos:example "3.2 kg CO2e resulting from choosing reuse for a dismantled component."@en
SubClassOf:
<https://w3id.org/pmd/automatce/AUTOMATCE_0010022>,
obo:OBI_0001933
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010146>
Annotations:
rdfs:label "vehicle condition"@en,
skos:definition "A quality of a vehicle that characterizes its observed state relevant to use, dismantling, reuse, repair, recycling, or valuation."@en,
skos:example "A vehicle condition assessment recorded at dismantling intake."@en
SubClassOf:
obo:BFO_0000019
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010147>
Annotations:
rdfs:label "drive type"@en,
skos:definition "A quality of a vehicle that classifies its propulsion architecture or drive configuration."@en,
skos:example "Battery electric drive, hybrid drive, or combustion engine drive."@en
SubClassOf:
obo:BFO_0000019
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010148>
Annotations:
rdfs:label "empty weight"@en,
skos:definition "A mass quality that quantifies the weight of a vehicle without load under the stated specification conditions."@en,
skos:example "The empty weight in kilograms from vehicle documentation."@en
SubClassOf:
pmd:PMD_0020133
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010149>
Annotations:
rdfs:label "vehicle type"@en,
skos:definition "A quality of a vehicle that classifies the vehicle according to its design, construction, or intended purpose."@en,
skos:example "Passenger car, light commercial vehicle, or heavy truck."@en
SubClassOf:
obo:BFO_0000019
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010050>
Annotations:
rdfs:label "remaining lifetime"@en,
skos:definition "A temporal interval expected to remain before a product or component no longer satisfies its intended function or circular value criteria."@en,
skos:example "An alternator estimated to have 24 months of usable service life remaining after inspection."@en
SubClassOf:
obo:BFO_0000202
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010051>
Annotations:
rdfs:label "actual lifetime"@en,
skos:definition "A temporal interval extending from a stated start event to an observed lifecycle event of a product or component."@en,
skos:example "The time between first vehicle registration and dismantling of a component."@en
SubClassOf:
obo:BFO_0000202
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010052>
Annotations:
rdfs:label "non-destructive dismantlability"@en,
skos:definition "A disposition of a product or component to be dismantled without destroying the product, component, or material portions that are intended for later use."@en,
skos:example "A clipped interior trim part that can be removed intact for reuse."@en
SubClassOf:
obo:BFO_0000016
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010053>
Annotations:
rdfs:label "safety information"@en,
skos:altLabel "safetyInfo"@en,
skos:definition "A directive information entity that specifies safety-relevant instructions, warnings, or constraints for handling, dismantling, treating, transporting, or reusing a product or component."@en,
skos:example "A warning to disconnect a high-voltage battery before dismantling a component."@en
SubClassOf:
obo:IAO_0000033
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010054>
Annotations:
rdfs:label "recycling"@en,
skos:definition "A process in which used materials, components, or products are collected and processed to recover material for further use."@en,
skos:example "Sorting and regranulating polymer parts from an end-of-life vehicle."@en
SubClassOf:
obo:BFO_0000015
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010055>
Annotations:
rdfs:label "dismantling"@en,
skos:definition "A process in which a product or component is taken apart so that parts, materials, or information can be recovered, assessed, reused, repaired, remanufactured, recycled, or disposed."@en,
skos:example "Removing a vehicle door module from an end-of-life vehicle before quality assessment."@en
SubClassOf:
obo:BFO_0000015
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010056>
Annotations:
rdfs:label "dismantling guideline for recycling"@en,
skos:altLabel "dismantlingGuidelineRecycling"@en,
skos:altLabel "dismantling guideline recycling"@en,
skos:definition "A plan specification that provides instructions for dismantling a product or component so that materials can be routed to appropriate recycling treatment."@en,
skos:example "A guideline specifying how to separate a polymer housing from attached metal inserts before recycling."@en
SubClassOf:
obo:IAO_0000104
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010057>
Annotations:
rdfs:label "recycling material quality"@en,
skos:altLabel "recyclingMaterialQuality"@en,
skos:definition "A disposition of a product or material to be recycled while preserving a specified level of material quality."@en,
skos:example "A polymer component designed so that the recovered polymer remains suitable for automotive applications."@en
SubClassOf:
obo:BFO_0000016
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010058>
Annotations:
rdfs:label "recycling availability"@en,
skos:altLabel "recyclingAvailability"@en,
skos:definition "A disposition of a product, component, or material to be practically available for recycling in a technical cycle."@en,
skos:example "A component whose material can be separated and accepted by an established recycling route."@en
SubClassOf:
obo:BFO_0000016
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010059>
Annotations:
rdfs:label "dismantling instructions"@en,
skos:altLabel "dismantlingInstructions"@en,
skos:definition "A plan specification that describes the actions, order, tools, and constraints for safely and correctly dismantling a product or component."@en,
skos:example "Stepwise instructions for removing a battery module from a vehicle."@en
SubClassOf:
obo:IAO_0000104
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010060>
Annotations:
rdfs:label "dismantlability"@en,
skos:definition "A disposition of a product or component to be dismantled under stated technical, safety, time, and damage constraints."@en,
skos:example "A bolted assembly has higher dismantlability than an inseparably bonded assembly when reuse is intended."@en
SubClassOf:
obo:BFO_0000016
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010061>
Annotations:
rdfs:label "average dismantling time"@en,
skos:altLabel "averageDismantlingTime"@en,
skos:definition "A temporal interval that represents the mean duration of dismantling a product or component under specified conditions."@en,
skos:example "An average dismantling time of 12 minutes for removal of a door module."@en
SubClassOf:
obo:BFO_0000202
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010062>
Annotations:
rdfs:label "treatment technique"@en,
skos:altLabel "treatmentTechnique"@en,
skos:definition "A process used to treat a dismantled component, product, or material after removal from its original assembly."@en,
skos:example "Mechanical shredding, cleaning, or material separation applied after dismantling."@en
SubClassOf:
obo:BFO_0000015
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010063>
Annotations:
rdfs:label "best treatment techniques"@en,
skos:altLabel "bestTreatmentTechniques"@en,
skos:definition "An information content entity that recommends preferred treatment techniques for a dismantled product, component, or material in a given circular economy scenario."@en,
skos:example "A recommendation to remove electronics before shredding a polymer-rich component."@en
SubClassOf:
obo:IAO_0000030
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010064>
Annotations:
rdfs:label "disassembly software"@en,
skos:definition "A software that supports, guides, documents, or validates disassembly or dismantling of a product or component."@en,
skos:example "A workshop application that displays product-specific disassembly instructions."@en
SubClassOf:
obo:IAO_0000010
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010065>
Annotations:
rdfs:label "disassembly tool"@en,
skos:definition "A device used to carry out a disassembly or dismantling operation on a product or component."@en,
skos:example "A puller tool used to remove a clipped trim component without damage."@en
SubClassOf:
pmd:PMD_0000602
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010066>
Annotations:
rdfs:label "fastening technique"@en,
skos:definition "A plan specification that describes how parts are joined, fixed, or released in an assembly."@en,
skos:example "A specification that a housing is fastened with Torx screws and snap-fit clips."@en
SubClassOf:
obo:IAO_0000104
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010067>
Annotations:
rdfs:label "dismantling sequence"@en,
skos:definition "A plan specification that orders the steps required to dismantle a product or component."@en,
skos:example "Remove cover, disconnect cable, release clips, and lift out module."@en
SubClassOf:
obo:IAO_0000104
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010068>
Annotations:
rdfs:label "exploding diagram"@en,
skos:definition "A document or figure that depicts a product or assembly with parts spatially separated to show their relative positions and dismantling relationships."@en,
skos:example "An exploded-view diagram showing screws, clips, housing shells, and subcomponents of a control unit."@en
SubClassOf:
obo:IAO_0000310
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010069>
Annotations:
rdfs:label "sub-group name"@en,
skos:definition "An identifier that records the name of a material sub-group in a material classification scheme."@en,
skos:example "The VDA 231-106 sub-group name 'cast aluminium alloys'."@en
SubClassOf:
obo:IAO_0020000
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010070>
Annotations:
rdfs:label "sub-group identifier"@en,
skos:altLabel "sub-group ID"@en,
skos:altLabel "subgroup"@en,
skos:definition "An identifier that records the code or number of a material sub-group in a material classification scheme."@en,
skos:example "The VDA 231-106 sub-group code '2.1.1'."@en
SubClassOf:
obo:IAO_0020000
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010071>
Annotations:
rdfs:label "main group name"@en,
skos:definition "An identifier that records the name of a material main group in a material classification scheme."@en,
skos:example "The VDA 231-106 main group name 'polymer materials'."@en
SubClassOf:
obo:IAO_0020000
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010072>
Annotations:
rdfs:label "main group identifier"@en,
skos:altLabel "main group ID"@en,
skos:altLabel "main group"@en,
skos:definition "An identifier that records the code or number of a material main group in a material classification scheme."@en,
skos:example "The VDA 231-106 main group code '5'."@en
SubClassOf:
obo:IAO_0020000
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010073>
Annotations:
rdfs:label "reuse"@en,
skos:definition "A process in which a discarded or removed product or component is used again while retaining its original function."@en,
skos:example "A dismantled and inspected body control module installed in another vehicle."@en
SubClassOf:
obo:BFO_0000015
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010074>
Annotations:
rdfs:label "product quality"@en,
skos:definition "A disposition of a product or component to satisfy requirements for an intended circular economy route, based on relevant condition, completeness, functional, and standard-based criteria."@en,
skos:example "A reused body part assigned a quality class after inspection for dents, corrosion, paint damage, and completeness."@en
SubClassOf:
obo:BFO_0000016
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010075>
Annotations:
rdfs:label "test requirements"@en,
skos:altLabel "necessary test protocols and equipment"@en,
skos:altLabel "necessary test protocols equipment"@en,
skos:definition "An information content entity that states the test protocols and equipment required to assess a product or component for reuse, repair, remanufacturing, or recycling."@en,
skos:example "A high-voltage component requiring insulation resistance testing before reuse."@en
SubClassOf:
obo:IAO_0000030
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010076>
Annotations:
rdfs:label "reusability"@en,
skos:definition "A disposition of a product or component to be reused in its original function under stated technical, legal, safety, and quality constraints."@en,
skos:example "A complete undamaged headlamp assembly that can be installed as a replacement part."@en
SubClassOf:
obo:BFO_0000016
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010077>
Annotations:
rdfs:label "body part quality"@en,
skos:altLabel "quality body parts"@en,
skos:altLabel "component quality state"@en,
skos:definition "A quality of a body part component that characterizes its externally relevant condition, such as paint damage, dents, corrosion, and component-specific defects."@en,
skos:example "A door panel quality assessment based on dents and paint scratches."@en
SubClassOf:
obo:BFO_0000019
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010078>
Annotations:
rdfs:label "quality grade"@en,
skos:altLabel "qualityGrade"@en,
skos:definition "A quality that records the grade assigned to a product or component according to a stated quality standard or assessment scheme."@en,
skos:example "A, B, or C quality grade assigned to a used car part."@en
SubClassOf:
obo:BFO_0000019
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010079>
Annotations:
rdfs:label "completeness"@en,
skos:definition "A quality of a product or component indicating whether required subcomponents, fasteners, interfaces, or accessories are present."@en,
skos:example "A mirror assembly assessed as complete because housing, glass, wiring, and mounting clips are present."@en
SubClassOf:
obo:BFO_0000019
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010080>
Annotations:
rdfs:label "used quality standard"@en,
skos:altLabel "usedQualityStandard"@en,
skos:definition "A plan specification that defines the quality assessment criteria applied to a reused, repaired, remanufactured, or recycled product or component."@en,
skos:example "VDI 4080 used as the assessment standard for reuse quality."@en
SubClassOf:
obo:IAO_0000104
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010081>
Annotations:
rdfs:label "mounting point integrity"@en,
skos:altLabel "mountingPointIntegrity"@en,
skos:definition "A quality of a product or component indicating whether its mounting points, clips, tabs, or attachment features are intact and functional."@en,
skos:example "A bumper bracket with all mounting tabs undamaged."@en
SubClassOf:
obo:BFO_0000019
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010082>
Annotations:
rdfs:label "surface cleanliness"@en,
skos:altLabel "surfaceCleanliness"@en,
skos:definition "A quality of a product, component, or material surface indicating the degree to which it is free from oil, dust, residues, and other contaminants."@en,
skos:example "A cleaned polymer surface acceptable for adhesive bonding during reuse preparation."@en
SubClassOf:
obo:BFO_0000019
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010083>
Annotations:
rdfs:label "repair time"@en,
skos:altLabel "repairTime"@en,
skos:definition "A temporal interval required or estimated to repair a specified damage or defect on a product or component."@en,
skos:example "The time needed to repair a paint scratch and small dent on a door panel."@en
SubClassOf:
obo:BFO_0000202
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010084>
Annotations:
rdfs:label "crack count"@en,
skos:altLabel "(number of paint) cracks"@en,
skos:altLabel "cracks"@en,
skos:definition "A quality that records the number of cracks observed on a product, component, coating, or material surface."@en,
skos:example "Two cracks recorded in the paint layer during dismantling inspection."@en
SubClassOf:
obo:BFO_0000019
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010085>
Annotations:
rdfs:label "dent damage"@en,
skos:altLabel "dents"@en,
skos:definition "A quality of a sheet metal or body component indicating the presence or extent of dents or deformations that impair the component shape."@en,
skos:example "A quarter panel with two visible dents after vehicle use."@en
SubClassOf:
obo:BFO_0000019
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010086>
Annotations:
rdfs:label "damage area"@en,
skos:altLabel "damageArea"@en,
skos:definition "A quality that quantifies the surface area of visible damage on a product, component, coating, or material surface."@en,
skos:example "A paint damage area of 50 square centimeters on a door panel."@en
SubClassOf:
obo:BFO_0000019
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010087>
Annotations:
rdfs:label "paint damage"@en,
skos:altLabel "paintDamage"@en,
skos:definition "A quality of a painted product or component indicating damage to the paintwork, such as scratches, chips, cracks, or coating loss."@en,
skos:example "Stone-chip damage on a painted bumper cover."@en
SubClassOf:
obo:BFO_0000019
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010174> (corroded region)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010174>
Annotations:
rdfs:label "corroded region"@en,
skos:definition "A fiat object part of a material entity that is spatially demarcated by corrosion-related material alteration."@en,
skos:example "A rusted area on a steel mounting bracket identified during dismantling inspection."@en
SubClassOf:
obo:BFO_0000024
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010210> (recycling batch)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010210>
Annotations:
rdfs:label "recycling batch"@en,
skos:definition "A batch that is collected, transferred, or treated as one quantity in a recycling process."@en,
skos:example "A sorted batch of dismantled polymer components sent to a recycler."@en
SubClassOf:
<https://w3id.org/pmd/automatce/AUTOMATCE_0010175>
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010211> (container mass)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010211>
Annotations:
rdfs:comment "Expected value datatype: xsd:float; expected unit: kg."@en,
rdfs:label "container mass"@en,
skos:altLabel "container weight"@en,
skos:definition "A mass quality that quantifies the empty mass of a container."@en,
skos:example "An empty recycling container with a mass of 3000 kg."@en
SubClassOf:
pmd:PMD_0020133
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010212> (container volume)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010212>
Annotations:
rdfs:comment "Expected value datatype: xsd:positiveInteger; expected unit: L."@en,
rdfs:label "container volume"@en,
skos:definition "A volume quality that quantifies the internal capacity of a container."@en,
skos:example "A roll-off container with a capacity of 20000 L."@en
SubClassOf:
pmd:PMD_0020150
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010213> (container type identifier)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010213>
Annotations:
rdfs:label "container type identifier"@en,
skos:definition "An identifier assigned to a standardized container type."@en,
skos:example "An AVAL container type identifier used for a recycling container."@en
SubClassOf:
obo:IAO_0020000
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010214> (container description)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010214>
Annotations:
rdfs:label "container description"@en,
skos:definition "An information content entity that describes a container type or container instance."@en,
skos:example "A standardized description such as roll-off container for a recycling batch."@en
SubClassOf:
obo:IAO_0000030
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010215> (recycling process step)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010215>
Annotations:
rdfs:label "recycling process step"@en,
skos:altLabel "process step"@en,
skos:altLabel "child process steps"@en,
skos:definition "A business process that is a distinguishable step in the handling or treatment of a recycling batch."@en,
skos:example "Shredding, sorting, washing, or weighing as a recycling process step."@en
SubClassOf:
log:LOG_1000130
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010216> (child process type)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010216>
Annotations:
rdfs:label "child process type"@en,
skos:definition "An information content entity that classifies a subordinate process step in a recycling process."@en,
skos:example "Shredding recorded as the child process type for a recycling batch step."@en
SubClassOf:
obo:IAO_0000030
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010217> (process information)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010217>
Annotations:
rdfs:label "process information"@en,
skos:definition "An information content entity that records the type, method, timing, or outcome of a process."@en,
skos:example "A recycling batch process record containing treatment procedure and process type."@en
SubClassOf:
obo:IAO_0000030
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010218> (process type)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010218>
Annotations:
rdfs:label "process type"@en,
skos:definition "An information content entity that classifies a process according to its role in a treatment, recycling, or logistics chain."@en,
skos:example "Sorting or transport recorded as the process type for a reverse-chain process step."@en
SubClassOf:
obo:IAO_0000030
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010219> (treatment procedure)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010219>
Annotations:
rdfs:label "treatment procedure"@en,
skos:definition "A treatment technique selected or applied for handling waste, components, materials, or recycling batches."@en,
skos:example "An R4 treatment procedure recorded for a recycling batch."@en
SubClassOf:
<https://w3id.org/pmd/automatce/AUTOMATCE_0010062>
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010220> (mechanical recycling)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010220>
Annotations:
rdfs:label "mechanical recycling"@en,
skos:definition "A recycling process that recovers material through mechanical operations without intentional chemical depolymerization."@en,
skos:example "Sorting, shredding, washing, and regranulating polymer parts."@en
SubClassOf:
<https://w3id.org/pmd/automatce/AUTOMATCE_0010054>
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010221> (chemical recycling)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010221>
Annotations:
rdfs:label "chemical recycling"@en,
skos:definition "A recycling process that converts material through chemical reaction into monomers, feedstock, or other chemical products."@en,
skos:example "Solvolysis or depolymerization applied to a polymer waste stream."@en
SubClassOf:
<https://w3id.org/pmd/automatce/AUTOMATCE_0010054>
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010222> (process loss)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010222>
Annotations:
rdfs:comment "Expected value datatype: xsd:float; expected unit: kg."@en,
rdfs:label "process loss"@en,
skos:definition "A mass quality that quantifies material lost during a process step."@en,
skos:example "A process loss of 0.5 kg during washing of a recycling batch."@en
SubClassOf:
pmd:PMD_0020133
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010223> (loss type)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010223>
Annotations:
rdfs:label "loss type"@en,
skos:definition "An information content entity that classifies the cause or form of material loss in a process."@en,
skos:example "Abrasion or contamination recorded as the loss type for a recycling process step."@en
SubClassOf:
obo:IAO_0000030
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010224> (weighing slip)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010224>
Annotations:
rdfs:label "weighing slip"@en,
skos:definition "A document that records the result of weighing materials, components, products, or recycling batches."@en,
skos:example "A weighing slip issued by a scale during intake of a recycling batch."@en
SubClassOf:
obo:IAO_0000310
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010225> (measurement type)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010225>
Annotations:
rdfs:label "measurement type"@en,
skos:definition "An information content entity that classifies the measurement method or instrument used to obtain a value."@en,
skos:example "Material scale recorded as the measurement type for a mass determination."@en
SubClassOf:
obo:IAO_0000030
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010226> (measurement timestamp)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010226>
Annotations:
rdfs:comment "Expected value datatype: xsd:dateTime; expected unit: not specified."@en,
rdfs:label "measurement timestamp"@en,
skos:definition "A date value specification that records the time at which a measurement was made."@en,
skos:example "2024-01-01T14:23:00+01:00 recorded as a measurement timestamp."@en
SubClassOf:
pmd:PMD_0001044
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010227> (start timestamp)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010227>
Annotations:
rdfs:comment "Expected value datatype: xsd:dateTime; expected unit: not specified."@en,
rdfs:label "start timestamp"@en,
skos:definition "A date value specification that records the start time of a process step."@en,
skos:example "The start timestamp of a sorting step in a recycling batch process."@en
SubClassOf:
pmd:PMD_0001044
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010228> (end timestamp)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010228>
Annotations:
rdfs:comment "Expected value datatype: xsd:dateTime; expected unit: not specified."@en,
rdfs:label "end timestamp"@en,
skos:definition "A date value specification that records the end time of a process step."@en,
skos:example "The end timestamp of a washing step in a recycling batch process."@en
SubClassOf:
pmd:PMD_0001044
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010229> (input net mass)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010229>
Annotations:
rdfs:comment "Expected value datatype: xsd:float; expected unit: kg."@en,
rdfs:label "input net mass"@en,
skos:definition "A mass quality that quantifies the net mass entering a process step."@en,
skos:example "Input net mass of 10.0 kg for a recycling process step."@en
SubClassOf:
pmd:PMD_0020133
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010230> (output net mass)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010230>
Annotations:
rdfs:comment "Expected value datatype: xsd:float; expected unit: kg."@en,
rdfs:label "output net mass"@en,
skos:definition "A mass quality that quantifies the net mass leaving a process step."@en,
skos:example "Output net mass of 9.5 kg after a recycling process step."@en
SubClassOf:
pmd:PMD_0020133
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010231> (remanufacturability)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010231>
Annotations:
rdfs:label "remanufacturability"@en,
skos:definition "A disposition of a product or component to be restored through remanufacturing to a specified performance or quality state."@en,
skos:example "A starter motor assessed as remanufacturable after inspection."@en
SubClassOf:
obo:BFO_0000016
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010232> (refurbishability)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010232>
Annotations:
rdfs:label "refurbishability"@en,
skos:definition "A disposition of a product or component to be restored through refurbishment to an acceptable use state."@en,
skos:example "A body control module assessed as refurbishable after testing."@en
SubClassOf:
obo:BFO_0000016
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010233> (restricted heavy metals)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010233>
Annotations:
rdfs:label "restricted heavy metals"@en,
skos:definition "A material entity aggregate comprising heavy metal substances whose concentration is restricted by a stated regulation or standard."@en,
skos:example "Lead, mercury, cadmium, and hexavalent chromium considered in ELV compliance."@en
SubClassOf:
pmd:PMD_0000852
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010234> (lead threshold compliance)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010234>
Annotations:
rdfs:comment "Expected value datatype: xsd:boolean; expected unit: not specified."@en,
rdfs:label "lead threshold compliance"@en,
skos:definition "A data item that records whether lead concentration complies with a stated threshold."@en,
skos:example "A true value indicating that lead concentration is below the applicable threshold."@en
SubClassOf:
obo:IAO_0000027
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010235> (mercury threshold compliance)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010235>
Annotations:
rdfs:comment "Expected value datatype: xsd:boolean; expected unit: not specified."@en,
rdfs:label "mercury threshold compliance"@en,
skos:definition "A data item that records whether mercury concentration complies with a stated threshold."@en,
skos:example "A true value indicating that mercury concentration is below the applicable threshold."@en
SubClassOf:
obo:IAO_0000027
# Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010236> (cadmium threshold compliance)
Class: <https://w3id.org/pmd/automatce/AUTOMATCE_0010236>
Annotations:
rdfs:comment "Expected value datatype: xsd:boolean; expected unit: not specified."@en,
rdfs:label "cadmium threshold compliance"@en,
skos:definition "A data item that records whether cadmium concentration complies with a stated threshold."@en,
skos:example "A false value indicating that cadmium concentration exceeds the applicable threshold."@en
SubClassOf: