forked from hsperker/product-knowledge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart_ontology.ttl
464 lines (415 loc) · 19.4 KB
/
part_ontology.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
@prefix cx: <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/cx_ontology.ttl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cx:AlternativePart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf cx:Part ;
skos:definition "Two parts that can be used interchangeably."@en ;
skos:prefLabel "Wahlweises Bauteil"@de,
"Alternative Part"@en .
cx:AssemblyGroup a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:seeAlso <https://de.wikipedia.org/wiki/Baugruppe> ;
rdfs:subClassOf cx:Part ;
skos:definition "A part that is composed of other parts."@en ;
skos:prefLabel "Baugruppe"@de,
"Assembly Group"@en .
cx:Batch a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Batch_production> ;
rdfs:subClassOf cx:ImmaterialThing ;
skos:altLabel "lot"@en ;
skos:prefLabel "Charge"@de,
"Batch"@en .
cx:DirectedPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf cx:Part ;
skos:prefLabel "Setzteil"@de,
"Directed Part"@en .
cx:ExchangePart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:seeAlso <https://de.wikipedia.org/wiki/Ersatzteil> ;
rdfs:subClassOf cx:SparePart ;
skos:prefLabel "Tauschteil"@de,
"Exchange Part"@en .
cx:InterstagePart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf cx:Part ;
skos:altLabel "ZZ"@de,
"Zwischenzustand"@de,
"unfertige Komponente"@de,
"intermediate state"@en,
"interstage part"@en ;
skos:definition "A part that is unfinished component."@en ;
skos:prefLabel "Zwischenzustand"@de,
"Interstage Part"@en .
cx:IsoStandard_Iso185422 a cx:IsoStandard ;
rdfs:seeAlso <https://www.iso.org/standard/58101.html> ;
skos:altLabel "RMI"@en,
"repair maintenance information"@en ;
skos:prefLabel "Terminologie für Reparatur- und Wartungsinformationen"@de,
"Terminology for repair maintenance information"@en .
cx:ModularAssemblyPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf cx:AssemblyPart ;
skos:altLabel "MZ"@de,
"Modularer Zusammenbau"@de ;
skos:prefLabel "Modularer Zusammenbau"@de,
"Modular Assembly Part"@en .
cx:NormPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:seeAlso <https://de.wikipedia.org/wiki/Normteil> ;
rdfs:subClassOf cx:Part ;
skos:prefLabel "Normteil"@de,
"Norm Part"@en .
cx:PlattformPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:seeAlso <https://de.wikipedia.org/wiki/Gleichteil> ;
rdfs:subClassOf cx:Part ;
skos:altLabel "interchangeable part"@en ;
skos:prefLabel "Gleichteil"@de,
"Plattform Part"@en .
cx:ProductionPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf cx:Part ;
skos:prefLabel "Produktionsteil"@de,
"Production Part"@en .
cx:RawPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf cx:Part ;
skos:example "cast part"@en,
"smith part"@en ;
skos:prefLabel "Rohteil"@de,
"Raw Part"@en .
cx:RefurbishedSparePart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf cx:SparePart ;
skos:prefLabel "Aufgearbeiteter Ersatzteil"@de,
"Refurbished Spare Part"@en .
cx:ScopeOfSupply a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf cx:Part ;
skos:altLabel "LU"@de,
"Lieferumfang"@de,
"scope of delivery"@en,
"shipping unit"@en ;
skos:definition "A part that is composed of other parts."@en ;
skos:prefLabel "Lieferumfang"@de,
"Scope Of Supply"@en .
cx:SemiFinishedPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:seeAlso <https://de.wikipedia.org/wiki/Halbzeug> ;
rdfs:subClassOf cx:Part ;
skos:altLabel "semi-finished product"@en ;
skos:prefLabel "Halbzeug"@de,
"Semi-Finished Part"@en .
cx:SolitaryPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf cx:Part ;
skos:altLabel "Solitärteil"@de,
"new part"@en ;
skos:prefLabel "Neuteil"@de,
"Solitary Part"@en .
cx:SubAssembly a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf cx:Part ;
skos:definition "A sub assembly is a subset of the components that make up a larger assembly."@en ;
skos:prefLabel "Unterbaugruppe"@de,
"Sub Assembly"@en .
cx:AssemblyPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:seeAlso <https://de.wikipedia.org/wiki/Zusammenbau> ;
rdfs:subClassOf cx:Part ;
skos:altLabel "ZB"@de,
"Zusammenbau"@de ;
skos:definition "A part that is composed of other parts."@en ;
skos:prefLabel "Zusammenbau"@de,
"Assembly Part"@en .
cx:batchNumber a owl:DatatypeProperty ;
rdfs:domain cx:BatchPart ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Lot_number> ;
rdfs:subPropertyOf cx:number ;
skos:altLabel "lot number"@en ;
skos:prefLabel "Chargennummer"@de,
"Batch Number"@en .
cx:batchProductionDate a owl:DatatypeProperty ;
rdfs:domain cx:BatchPart ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:date ;
rdfs:subPropertyOf cx:date ;
skos:prefLabel "Batch Production Date"@en .
cx:batchProductionDateTime a owl:DatatypeProperty ;
rdfs:domain cx:BatchPart ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf cx:date ;
skos:prefLabel "Batch Production Date Time"@en .
cx:hardwareVersion a owl:DatatypeProperty ;
rdfs:domain cx:ElectronicPart ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:string ;
skos:altLabel "Hardwarestand"@en ;
skos:prefLabel "Hardware Version"@en .
cx:isProducedBy a owl:ObjectProperty ;
rdfs:domain cx:Part ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range cx:PartManufacturer ;
skos:prefLabel "is produced by"@en .
cx:isSuppliedBy a owl:ObjectProperty ;
rdfs:domain cx:Manufacturer ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range cx:PartSupplier ;
skos:prefLabel "is supplied by"@en .
cx:partCadFile a owl:DatatypeProperty ;
rdfs:domain cx:ConstructionPart ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:string ;
skos:prefLabel "Bauteil CAD Datei"@de,
"Part Cad File"@en .
cx:partGeneration a owl:DatatypeProperty ;
rdfs:domain cx:ElectronicPart ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:string ;
skos:prefLabel "Generationsstand"@de,
"Part Generation"@en .
cx:partId a owl:DatatypeProperty ;
rdfs:domain cx:Part ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx:identifier ;
skos:prefLabel "Bauteil Id"@de,
"Part Id"@en .
cx:partProductionDate a owl:DatatypeProperty ;
rdfs:domain cx:Part ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:date ;
rdfs:subPropertyOf cx:date ;
skos:prefLabel "Bauteil Produktionsdatum"@de,
"Part Production Date"@en .
cx:partProductionDateTime a owl:DatatypeProperty ;
rdfs:domain cx:Part ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf cx:date ;
skos:prefLabel "Bauteil Produktionszeitpunkt"@de,
"Part Production Date Time"@en .
cx:partSeries a owl:DatatypeProperty ;
rdfs:domain cx:Part ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:string ;
skos:prefLabel "Baureihe"@de,
"Part Series"@en .
cx:produces a owl:ObjectProperty ;
rdfs:domain cx:PartManufacturer ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range cx:Part ;
skos:prefLabel "produces"@en .
cx:serialNumber a owl:DatatypeProperty ;
rdfs:domain cx:SerializedPart ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx:number ;
skos:prefLabel "Seriennummer"@de,
"Serial Number"@en .
cx:softwareVersion a owl:DatatypeProperty ;
rdfs:domain cx:ElectronicPart ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:string ;
skos:altLabel "Softwarestand"@en ;
skos:prefLabel "Software Version"@en .
cx:supplies a owl:ObjectProperty ;
rdfs:domain cx:PartSupplier ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range cx:Part ;
skos:prefLabel "supplies"@en .
cx:Manufacturer rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty cx:isSuppliedBy ;
owl:someValuesFrom cx:PartSupplier ] .
cx:SerializedPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty cx:serialNumber ;
owl:someValuesFrom xsd:string ],
cx:MaterialThing,
cx:Part ;
skos:altLabel "part as built"@en,
"part as produced"@en ;
skos:definition "A part that has a unique serial number."@en ;
skos:note "unique identifiable physical object"@en ;
skos:prefLabel "Serienbauteil"@de,
"Serialized Part"@en .
cx:SparePart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Spare_part> ;
rdfs:subClassOf cx:FinalProduct,
cx:Part ;
skos:altLabel "service part"@en ;
skos:definition "A part that is replaced in a vehicle."@en ;
skos:prefLabel "Ersatzteil"@de,
"Spare Part"@en .
cx:isPartOf a owl:ObjectProperty ;
rdfs:domain cx:Part ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range cx:Part,
cx:Vehicle ;
skos:prefLabel "is part of"@en .
cx:partName a owl:DatatypeProperty ;
rdfs:domain cx:Part ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx:name ;
skos:altLabel "Teilebezeichnung"@de,
"Teilname"@de ;
skos:prefLabel "Bauteilname"@de,
"Part Name"@en .
cx:partVersion a owl:DatatypeProperty ;
rdfs:domain cx:ConstructionPart ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:string ;
skos:altLabel "Versionsstand"@de,
"Änderungsindex"@de ;
skos:prefLabel "Bauteil Version"@de,
"Part Version"@en .
cx:BatchPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty cx:batchNumber ;
owl:someValuesFrom xsd:string ],
[ a owl:Restriction ;
owl:onProperty cx:batchProductionDateTime ;
owl:someValuesFrom xsd:dateTime ],
[ a owl:Restriction ;
owl:onProperty cx:batchProductionDate ;
owl:someValuesFrom xsd:date ],
cx:MaterialThing,
cx:Part ;
skos:altLabel "lot part"@en ;
skos:definition "A part that has a unique batch number."@en ;
skos:note "unique physical object"@en ;
skos:prefLabel "Chargenbauteil"@de,
"Batch Part"@en .
cx:ConstructionPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty cx:partNumber ;
owl:someValuesFrom xsd:string ],
[ a owl:Restriction ;
owl:onProperty cx:partCadFile ;
owl:someValuesFrom xsd:string ],
[ a owl:Restriction ;
owl:onProperty cx:partVersion ;
owl:someValuesFrom xsd:string ],
[ a owl:Restriction ;
owl:onProperty cx:partNumber ;
owl:someValuesFrom xsd:string ],
[ a owl:Restriction ;
owl:onProperty cx:partNumber ;
owl:someValuesFrom xsd:string ],
[ a owl:Restriction ;
owl:onProperty cx:partVersion ;
owl:someValuesFrom xsd:string ],
cx:ImmaterialThing,
cx:Part ;
skos:altLabel "part as planned"@en ;
skos:definition "A part that has a part number."@en ;
skos:note "non-physical object"@en ;
skos:prefLabel "Konstruktionsbauteil"@de,
"Construction Part"@en .
cx:ElectronicPart a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Electronic_component> ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty cx:softwareVersion ;
owl:someValuesFrom xsd:string ],
[ a owl:Restriction ;
owl:onProperty cx:hardwareVersion ;
owl:someValuesFrom xsd:string ],
[ a owl:Restriction ;
owl:onProperty cx:partGeneration ;
owl:someValuesFrom xsd:string ],
cx:MaterialThing,
cx:SerializedPart ;
skos:definition "A part that has electronics components."@en ;
skos:note "unique physical object"@en ;
skos:prefLabel "Elektronisches Bauteil"@de,
"Electronic Part"@en .
cx:PartManufacturer a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty cx:produces ;
owl:someValuesFrom cx:Part ],
cx:Manufacturer ;
skos:definition "A manufacturer of a part."@en ;
skos:prefLabel "Bauteilhersteller"@de,
"Part Manufacturer"@en .
cx:PartSupplier a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty cx:supplies ;
owl:someValuesFrom cx:Part ],
cx:Supplier ;
skos:definition "A supplier of a part."@en ;
skos:prefLabel "Bauteillieferant"@de,
"Part Supplier"@en .
cx:partNumber a owl:DatatypeProperty ;
rdfs:domain cx:ConstructionPart ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Part_number> ;
rdfs:subPropertyOf cx:number ;
skos:altLabel "Bauteilnummer"@de,
"PN"@en,
"component number"@en,
"part number"@en ;
skos:prefLabel "Sachnummer"@de,
"Part Number"@en .
cx:Part a owl:Class ;
rdfs:isDefinedBy <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> ;
rdfs:seeAlso <https://de.wikipedia.org/wiki/Bauteil_> ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty cx:isProducedBy ;
owl:someValuesFrom cx:PartManufacturer ],
[ a owl:Restriction ;
owl:onProperty cx:partProductionDateTime ;
owl:someValuesFrom xsd:dateTime ],
[ a owl:Restriction ;
owl:onProperty cx:partName ;
owl:someValuesFrom xsd:string ],
[ a owl:Restriction ;
owl:onProperty cx:partProductionDate ;
owl:someValuesFrom xsd:date ],
[ a owl:Restriction ;
owl:onProperty cx:isPartOf ;
owl:someValuesFrom cx:Vehicle ],
[ a owl:Restriction ;
owl:onProperty cx:isPartOf ;
owl:someValuesFrom cx:Part ],
[ a owl:Restriction ;
owl:onProperty cx:partName ;
owl:someValuesFrom xsd:string ],
[ a owl:Restriction ;
owl:onProperty cx:partSeries ;
owl:someValuesFrom xsd:string ],
[ a owl:Restriction ;
owl:onProperty cx:partId ;
owl:someValuesFrom xsd:string ],
cx:Product ;
skos:altLabel "Komponente"@de,
"Teil"@de,
"component"@en ;
skos:definition "A part in the automotive context is a component of a vehicle, such as the engine, brakes, or transmission."@en ;
skos:note "non-physical object"@en ;
skos:prefLabel "Bauteil"@de,
"Part"@en .
<https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/part_ontology.ttl> a owl:Ontology ;
dc:creator "Zazralt Magic" ;
dc:date "2023-02-11"^^xsd:date ;
dc:description "In the automative production, parts are manufactured and assembled into vehicle components and ultimately vehicles." ;
dc:title "Part Ontology" ;
owl:imports <https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/common_ontology.ttl> ;
owl:versionInfo "0.0.1" .