This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
forked from eclipse-tractusx/sldt-ontology-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ontology.ttl
1337 lines (1136 loc) · 55.1 KB
/
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
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
#######################################################################
# Copyright (c) 2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This work is made available under the terms of the
# Creative Commons Attribution 4.0 International (CC-BY-4.0) license,
# which is available at
# https://creativecommons.org/licenses/by/4.0/legalcode.
#
# SPDX-License-Identifier: CC-BY-4.0
#######################################################################
@prefix : <https://w3id.org/catenax/ontology/core#> .
@prefix cx-behaviour: <https://w3id.org/catenax/ontology/behaviour#> .
@prefix cx-bom: <https://w3id.org/catenax/ontology/bill-of-material#> .
@prefix cx-common: <https://w3id.org/catenax/ontology/common#> .
@prefix cx-fx: <https://w3id.org/catenax/ontology/function#> .
@prefix cx-reliability: <https://w3id.org/catenax/ontology/reliability#> .
@prefix cx-scm: <https://w3id.org/catenax/ontology/supply-chain#> .
@prefix cx-vehicle: <https://w3id.org/catenax/ontology/vehicle#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix json: <https://json-schema.org/draft/2020-12/schema#> .
@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 sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
dc:contributor a owl:AnnotationProperty .
dc:creator a owl:AnnotationProperty .
dc:date a owl:AnnotationProperty .
dc:description a owl:AnnotationProperty .
dc:title a owl:AnnotationProperty .
sh:shapesGraph a owl:DatatypeProperty ;
rdfs:label "shapes graph"@en ;
rdfs:comment "This property refers to a SHACL expression in which the RDF data Contraints are defined. In particular, the structure of the identifiers."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:anyURI .
<https://w3id.org/catenax/ontology> a owl:Ontology ;
dc:description "The main ontology is a merge of domain ontologies and is created automatically, see Domain Ontologies for details." ;
dc:title "Catena-X Main Ontology" .
cx-behaviour:RemainingUsefulLifeArgument a owl:DatatypeProperty ;
rdfs:label "Remaining Useful Life Argument"@en ;
rdfs:comment "Super property of remaining useful life function arguments."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:anyType ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument .
cx-behaviour:adaptionValueList a owl:DatatypeProperty ;
rdfs:label "Adaption Value List Values"@en ;
rdfs:comment "A Health Indicator Adaption needs an array of adaption values."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:HealthIndicationArgument ;
cx-fx:argumentName "adaptionValueList.values" .
cx-behaviour:adaptionValueMileage a owl:DatatypeProperty ;
rdfs:label "Adaption Value List Mileage"@en ;
rdfs:comment "A Health Indicator Adaption needs a mileage of the embedding vehicle."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:HealthIndicationArgument ;
cx-fx:argumentName "adaptionValueList.mileage_km" .
cx-behaviour:adaptionValueOperatingTime a owl:DatatypeProperty ;
rdfs:label "Adaption Value List Operating Time"@en ;
rdfs:comment "A Health Indicator Adaption needs an operating time of the embedding vehicle."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:HealthIndicationArgument ;
cx-fx:argumentName "adaptionValueList.operatingtime_s" .
cx-behaviour:adaptionValueTimestamp a owl:DatatypeProperty ;
rdfs:label "Adaption Value List Timestamp"@en ;
rdfs:comment "A Health Indicator Adaption needs a timestamp."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:HealthIndicationArgument ;
cx-fx:argumentName "adaptionValueList.timestamp" .
cx-behaviour:adaptionValueVersion a owl:DatatypeProperty ;
rdfs:label "Adaption Value List Version"@en ;
rdfs:comment "A Health Indicator Adaption needs a version."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:HealthIndicationArgument ;
cx-fx:argumentName "adaptionValueList.version" .
cx-behaviour:bodyClasses a owl:DatatypeProperty,
owl:ObjectProperty ;
rdfs:label "Loadspectrum Classes"@en ;
rdfs:comment "Classes of Load Spectrum."@en ;
rdfs:domain cx-behaviour:PrognosisFunction ;
rdfs:range json:Object ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType json:Object .
cx-behaviour:bodyCountsList a owl:DatatypeProperty,
owl:ObjectProperty ;
rdfs:label "Loadspectrum Counts List"@en ;
rdfs:comment "Counts List of Load Spectrum."@en ;
rdfs:domain cx-behaviour:PrognosisFunction ;
rdfs:range json:Object ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType json:Object .
cx-behaviour:classification a owl:DatatypeProperty ;
rdfs:label "Notification Classification"@en ;
rdfs:comment "Classification of the notification."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:string .
cx-behaviour:classifiedLoadCollectiveChannels a owl:DatatypeProperty ;
rdfs:label "Classified Load Collective Channels"@en ;
rdfs:comment "A Load Collective has descriptors for all channels."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:argumentName "classifiedLoadCollective.header.channels" .
cx-behaviour:classifiedLoadCollectiveClasses a owl:DatatypeProperty ;
rdfs:label "Classified Load Collective Classes"@en ;
rdfs:comment "A Load Collective has a body with the class indices."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:argumentName "classifiedLoadCollective.body.classes" .
cx-behaviour:classifiedLoadCollectiveComponentDescription a owl:DatatypeProperty ;
rdfs:label "Classified Load Collective Component Description"@en ;
rdfs:comment "A Load Collective has a component description."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:argumentName "classifiedLoadCollective.metadata.componentDescription" .
cx-behaviour:classifiedLoadCollectiveCountingMethod a owl:DatatypeProperty ;
rdfs:label "Classified Load Collective Counting Method"@en ;
rdfs:comment "A Load Collective has a method for the counting dimension."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:argumentName "classifiedLoadCollective.header.countingMethod" .
cx-behaviour:classifiedLoadCollectiveCountingUnit a owl:DatatypeProperty ;
rdfs:label "Classified Load Collective Counting Unit"@en ;
rdfs:comment "A Load Collective has a unit for the counting dimension."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:argumentName "classifiedLoadCollective.header.countingUnit" .
cx-behaviour:classifiedLoadCollectiveCountingValue a owl:DatatypeProperty ;
rdfs:label "Classified Load Collective Counting Value"@en ;
rdfs:comment "A Load Collective has a value for the counting dimension."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:argumentName "classifiedLoadCollective.header.countingValue" ;
cx-fx:mandatory false .
cx-behaviour:classifiedLoadCollectiveCounts a owl:DatatypeProperty ;
rdfs:label "Classified Load Collective Counts"@en ;
rdfs:comment "A Load Collective has a body with the raw measurements."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:argumentName "classifiedLoadCollective.body.counts" .
cx-behaviour:classifiedLoadCollectiveProjectDescription a owl:DatatypeProperty ;
rdfs:label "Classified Load Collective Project Description"@en ;
rdfs:comment "A Load Collective has a project description."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:argumentName "classifiedLoadCollective.metadata.projectDescription" ;
cx-fx:mandatory false .
cx-behaviour:component a owl:ObjectProperty ;
rdfs:label "Predicted Component"@en ;
rdfs:comment "Component of the Predicition."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range cx-vehicle:Part ;
cx-fx:dataType cx-vehicle:Part .
cx-behaviour:countingMethod a owl:DatatypeProperty ;
rdfs:label "Loadspectrum Counting Method"@en ;
rdfs:comment "Counting Method of Load Spectrum."@en ;
rdfs:domain cx-behaviour:PrognosisFunction ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:string .
cx-behaviour:countingUnit a owl:DatatypeProperty ;
rdfs:label "Loadspectrum Counting Unit"@en ;
rdfs:comment "Counting Unit of Load Spectrum."@en ;
rdfs:domain cx-behaviour:PrognosisFunction ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:string .
cx-behaviour:countingValue a owl:DatatypeProperty ;
rdfs:label "Loadspectrum Counting Value"@en ;
rdfs:comment "Counting Value Name of Load Spectrum."@en ;
rdfs:domain cx-behaviour:PrognosisFunction ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:string .
cx-behaviour:headerChannels a owl:DatatypeProperty,
owl:ObjectProperty ;
rdfs:label "Loadspectrum Channels"@en ;
rdfs:comment "Channels of Load Spectrum."@en ;
rdfs:domain cx-behaviour:PrognosisFunction ;
rdfs:range json:Object ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType json:Object .
cx-behaviour:healthIndicatorValues a owl:DatatypeProperty,
owl:ObjectProperty ;
rdfs:label "Health Indicator Values"@en ;
rdfs:comment "Health Indicator Values are percentages."@en ;
rdfs:domain cx-behaviour:HealthIndicatorResult ;
rdfs:range json:Object ;
rdfs:subPropertyOf cx-fx:returnValue ;
cx-fx:dataType json:Object ;
cx-fx:valuePath "healthIndicatorValues" .
cx-behaviour:indicatorVersion a owl:DatatypeProperty ;
rdfs:label "Health Indicator Prognosis Version" ;
rdfs:comment "Version of the health indicator prognosis."@en ;
rdfs:domain cx-behaviour:HealthIndicatorResult ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-fx:returnValue ;
cx-fx:dataType xsd:string ;
cx-fx:valuePath "version" .
cx-behaviour:metadata a owl:DatatypeProperty,
owl:ObjectProperty ;
rdfs:label "Loadspectrum Metadata"@en ;
rdfs:comment "Additional Metadata of the Loadspectrum."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range json:Object ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType json:Object .
cx-behaviour:notification a owl:DatatypeProperty,
owl:ObjectProperty ;
rdfs:label "Notification Template"@en ;
rdfs:comment "An optional notification output template."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range json:Object ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType json:Object .
cx-behaviour:observationType a owl:DatatypeProperty ;
rdfs:domain cx-behaviour:PrognosisFunction ;
rdfs:range xsd:anyURI ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument .
cx-behaviour:recipient a owl:DatatypeProperty ;
rdfs:label "Notification Recipient"@en ;
rdfs:comment "Recipient of the notification as a BPN."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:anyURI ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:anyURI .
cx-behaviour:recipientConnector a owl:DatatypeProperty ;
rdfs:label "Notification Recipient Address"@en ;
rdfs:comment "Recipient Address of the notification as a URL."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:anyURI ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:anyURI .
cx-behaviour:remainingOperatingHours a owl:DatatypeProperty ;
rdfs:label "Remaining Useful Life Operating Hours"@en ;
rdfs:comment "Predicted Operating Hours of Remaining Useful Life Response"@en ;
rdfs:domain cx-behaviour:RemainingUsefulLifeResult ;
rdfs:range xsd:float ;
rdfs:subPropertyOf cx-fx:returnValue ;
cx-fx:dataType xsd:float .
cx-behaviour:remainingRunningDistance a owl:DatatypeProperty ;
rdfs:label "Remaining Useful Life Distance"@en ;
rdfs:comment "Predicted Distance of Remaining Useful Life Response"@en ;
rdfs:domain cx-behaviour:RemainingUsefulLifeResult ;
rdfs:range xsd:int ;
rdfs:subPropertyOf cx-fx:returnValue ;
cx-fx:dataType xsd:int .
cx-behaviour:requestComponentId a owl:DatatypeProperty ;
rdfs:label "Prognosis Component Id"@en ;
rdfs:comment "A Health Indicator Input relates to a component."@en ;
rdfs:domain cx-behaviour:HealthIndication ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:argumentName "componentId" .
cx-behaviour:responseComponentId a owl:DatatypeProperty ;
rdfs:label "Health Indicator Prognosis Component Id"@en ;
rdfs:comment "Component Id of the health indicator prognosis."@en ;
rdfs:domain cx-behaviour:HealthIndicatorResult ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-fx:returnValue ;
cx-fx:dataType xsd:string ;
cx-fx:valuePath "componentId" .
cx-behaviour:sender a owl:DatatypeProperty ;
rdfs:label "Notification Sender"@en ;
rdfs:comment "Sender of the notification as a BPN."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:anyURI ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:anyURI .
cx-behaviour:senderConnector a owl:DatatypeProperty ;
rdfs:label "Notification Sender Address"@en ;
rdfs:comment "Sender Address of the notification as a URL."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:anyURI ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:anyURI .
cx-behaviour:severity a owl:DatatypeProperty ;
rdfs:label "Notification Severity"@en ;
rdfs:comment "Severity of the notification."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:string .
cx-behaviour:status a owl:DatatypeProperty ;
rdfs:label "Notification Status"@en ;
rdfs:comment "Status of the notification."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:string .
cx-behaviour:statusDate a owl:DatatypeProperty ;
rdfs:label "Loadspectrum Recording Time"@en ;
rdfs:comment "Time of Recording."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:dateTime .
cx-behaviour:statusMileage a owl:DatatypeProperty ;
rdfs:label "Loadspectrum Mileage"@en ;
rdfs:comment "Mileage of Component at Time of Recording."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:int ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:int .
cx-behaviour:statusOperatingHours a owl:DatatypeProperty ;
rdfs:label "Loadspectrum Operating Hours"@en ;
rdfs:comment "Operating Hours of Target Component at Time of Recording."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:float ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:float .
cx-behaviour:targetDate a owl:DatatypeProperty ;
rdfs:label "Notification Target Date"@en ;
rdfs:comment "Target Date of the notification."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:dateTime .
cx-behaviour:timeStamp a owl:DatatypeProperty ;
rdfs:label "Notification Timestamp"@en ;
rdfs:comment "Timestamp of the notification."@en ;
rdfs:domain cx-behaviour:RemainingUsefulLife ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf cx-behaviour:prognosisFunctionArgument ;
cx-fx:dataType xsd:dateTime .
cx-bom:assembler a owl:ObjectProperty ;
rdfs:label "Assembler"@en ;
rdfs:comment "The assembler of the assembly."@en ;
rdfs:domain cx-bom:BillOfMaterial ;
rdfs:range cx-common:BusinessPartner .
cx-bom:assembly a owl:ObjectProperty ;
rdfs:label "Has Assembly"@en ;
rdfs:comment "Refers the assembly of a bill of material."@en ;
rdfs:domain cx-bom:BillOfMaterial ;
rdfs:range :PhysicalObject .
cx-bom:assemblyConcept a owl:ObjectProperty ;
rdfs:label "Has Assembly"@en ;
rdfs:comment "Refers the assembly concept of a bill of material."@en ;
rdfs:domain cx-bom:BillOfMaterial ;
rdfs:range :ConceptualObject .
cx-bom:component a owl:ObjectProperty ;
rdfs:label "Has Component"@en ;
rdfs:comment "Lists the components of a bill of material."@en ;
rdfs:domain cx-bom:BillOfMaterial ;
rdfs:range :PhysicalObject .
cx-bom:concept a owl:ObjectProperty ;
rdfs:label "has concept"@en ;
rdfs:comment "Lists the concepts of a bill of material."@en ;
rdfs:domain cx-bom:BillOfMaterial ;
rdfs:range :ConceptualObject .
cx-bom:hasBom a owl:ObjectProperty ;
rdfs:label "Has Bill Of Material"@en ;
rdfs:comment "Refers the bill of material of an assembly."@en ;
rdfs:domain :PhysicalObject ;
rdfs:range cx-bom:BillOfMaterial .
cx-bom:quantityMeasure a owl:DatatypeProperty ;
rdfs:label "Quantity Measure"@en ;
rdfs:comment "The measure of quantity that a component contributes to an assymbly in a bill of material ."@en ;
rdfs:domain cx-bom:BillOfMaterial ;
rdfs:range xsd:float ;
rdfs:subPropertyOf cx-bom:quantity .
cx-bom:quantityUnit a owl:DatatypeProperty ;
rdfs:label "Quantity Unit"@en ;
rdfs:comment "The unit of quantity that a component contributes to an assymbly in a bill of material ."@en ;
rdfs:domain cx-bom:BillOfMaterial ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-bom:quantity .
cx-bom:supplier a owl:ObjectProperty ;
rdfs:label "Supplier"@en ;
rdfs:comment "The supplier of the component(s)."@en ;
rdfs:domain cx-bom:BillOfMaterial ;
rdfs:range cx-common:BusinessPartner .
cx-bom:validityPeriodEnd a owl:DatatypeProperty ;
rdfs:label "Validity Period End"@en ;
rdfs:comment "The end of validity."@en ;
rdfs:domain cx-bom:BillOfMaterial ;
rdfs:range xsd:date ;
rdfs:subPropertyOf cx-bom:validityPeriod .
cx-bom:validityPeriodStart a owl:DatatypeProperty ;
rdfs:label "Validity Period Start"@en ;
rdfs:comment "The start of validity."@en ;
rdfs:domain cx-bom:BillOfMaterial ;
rdfs:range xsd:date ;
rdfs:subPropertyOf cx-bom:validityPeriod .
cx-common:authenticatedResource a rdfs:DatatypeProperty ;
rdfs:label "Authenticated Resource"@en ;
rdfs:comment "An resource that requires authentication."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:anyURI .
cx-common:authenticationCode a owl:DatatypeProperty ;
rdfs:label "authentication code"@en ;
rdfs:comment "An authentication code under which authentication information are transmitted." ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-common:authenticationInformation .
cx-common:authenticationKey a owl:DatatypeProperty ;
rdfs:label "authentication key"@en ;
rdfs:comment "An authentication key which encodes some authentication proof." ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-common:authenticationInformation .
cx-common:contentType a owl:DatatypeProperty ;
rdfs:label "content type"@en ;
rdfs:comment "This property describes in which format the data will be output, i.e. XML or JSON."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:description a owl:DatatypeProperty ;
rdfs:label "description"@en ;
rdfs:comment "This property contains description of asset."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:distributionMode a owl:DatatypeProperty ;
rdfs:label "Distribution Mode"@en ;
rdfs:comment "The skill may only be invoked local to the computing environment of the provider."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:string .
cx-common:hasDataspaceConnector a owl:ObjectProperty ;
rdfs:label "has Dataspace Connector"@en ;
rdfs:comment "This property describes which connectors belong to which business partners."@en ;
rdfs:domain cx-common:BusinessPartner ;
rdfs:range cx-common:DataspaceConnector ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-common:id a owl:DatatypeProperty ;
rdfs:label "id"@en ;
rdfs:comment "This property contains unique identifier of Bussiness Partner/Connector/Asset."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:implementsProtocol a owl:DatatypeProperty ;
rdfs:label "implements protocol"@en ;
rdfs:comment "This property refers to the network protocol implemented by the asset."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:isFederated a owl:DatatypeProperty ;
rdfs:label "is federated"@en ;
rdfs:comment "If this property is set to true, it means that this connector will federate with other connectors."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:boolean ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:name a owl:DatatypeProperty ;
rdfs:label "name"@en ;
rdfs:comment "This property contains name of asset."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:offers a owl:ObjectProperty ;
rdfs:label "offers"@en ;
rdfs:comment "This property refers to the offered assets."@en ;
rdfs:domain cx-common:DataspaceConnector ;
rdfs:range cx-common:Asset ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-common:publishedUnderContract a owl:DatatypeProperty ;
rdfs:label "published under contract"@en ;
rdfs:comment "This property refers to the contract associated with the asset."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:satisfiesRole a owl:DatatypeProperty ;
rdfs:label "satisfies role"@en ;
rdfs:comment "Use Case Role IRI."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:anyURI ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:url a owl:DatatypeProperty ;
rdfs:label "url"@en ;
rdfs:comment "Uniform Resource Locator of SPARQL Endpoint."@en ;
rdfs:domain cx-common:DataspaceConnector ;
rdfs:range xsd:anyURI ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:version a owl:DatatypeProperty ;
rdfs:label "version"@en ;
rdfs:comment "Version of the asset."@en ;
rdfs:domain cx-common:Asset ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
:city a owl:DatatypeProperty ;
rdfs:label "city"@en ;
rdfs:comment "City name of a legal address."@en ;
rdfs:domain :Address ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
:country a owl:DatatypeProperty ;
rdfs:label "country"@en ;
rdfs:comment "Country name of a legal address."@en ;
rdfs:domain :Address ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
:describedByConceptualObject a owl:ObjectProperty ;
rdfs:label "described by conceptual object"@en ;
rdfs:comment "Inverse of 'describes physical object' property."@en ;
rdfs:domain :PhysicalObject ;
rdfs:range :ConceptualObject ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf :describesPhysicalObject .
:endDateTime a owl:DatatypeProperty ;
rdfs:label "end dateTime"@en ;
rdfs:comment "End time of the activity."@en ;
rdfs:domain :Activity ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty .
:hasAddress a owl:ObjectProperty ;
rdfs:label "has address"@en ;
rdfs:comment "Inverse of 'describes physical object' property."@en ;
rdfs:domain :Place ;
rdfs:range :Address ;
rdfs:subPropertyOf owl:topObjectProperty .
:hosts a owl:ObjectProperty ;
rdfs:label "hosts"@en ;
rdfs:comment "Inverse of 'takes place at' property." ;
rdfs:domain :Place ;
rdfs:range :Activity ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf :takesPlaceAt .
:houseNumber a owl:DatatypeProperty ;
rdfs:label "house number"@en ;
rdfs:comment "House number of a legal address."@en ;
rdfs:domain :Address ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
:id a owl:DatatypeProperty ;
rdfs:label "id"@en ;
rdfs:comment "Unique identification of the exchanged Catena-X objects."@en ;
rdfs:domain :Activity,
:Actor,
:ConceptualObject,
:PhysicalObject,
:Place ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
:involvedIn a owl:ObjectProperty ;
rdfs:label "involved in"@en ;
rdfs:comment "This property describes in which activity the physical object is involved."@en ;
rdfs:domain :ConceptualObject,
:PhysicalObject ;
rdfs:range :Activity ;
owl:inverseOf :refersToConceptualObject,
:refersToPhysicalObject .
:name a owl:DatatypeProperty ;
rdfs:label "name"@en ;
rdfs:comment "Global name of an object."@en ;
rdfs:domain :Activity,
:Actor,
:ConceptualObject,
:PhysicalObject,
:Place ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
:participatesIn a owl:ObjectProperty ;
rdfs:label "participates in"@en ;
rdfs:comment "Inverse of 'has participant' property."@en ;
rdfs:domain :Actor ;
rdfs:range :Activity ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf :hasParticipant .
:postalCode a owl:DatatypeProperty ;
rdfs:label "postal code"@en ;
rdfs:comment "Postal code of a legal address."@en ;
rdfs:domain :Address ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
:relatedToPlace a owl:ObjectProperty ;
rdfs:label "related to place."@en ;
rdfs:comment "This property describes that an actor has a relationship to a particular place, such as reside, own, or manage, etc."@en ;
rdfs:domain :Actor ;
rdfs:range :Place .
:startDateTime a owl:DatatypeProperty ;
rdfs:label "start dateTime"@en ;
rdfs:comment "Start time of an activity."@en ;
rdfs:domain :Activity ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty .
:street a owl:DatatypeProperty ;
rdfs:label "street"@en ;
rdfs:comment "Street name of alegal address."@en ;
rdfs:domain :Address ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-fx:argumentName a owl:AnnotationProperty ;
rdfs:label "argument name"@en ;
rdfs:comment "Determines the name or index of the function argument."@en ;
rdfs:domain cx-fx:argument ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-fx:argumentConfigurationProperty .
cx-fx:batch a owl:AnnotationProperty ;
rdfs:label "Batch Size"@en ;
rdfs:comment "Determines maximal batch size for function invocations. Default is '1' which means that each invocation is done separately"@en ;
rdfs:domain cx-fx:Function ;
rdfs:range xsd:long ;
rdfs:subPropertyOf cx-fx:functionConfigurationProperty .
cx-fx:callbackProperty a owl:AnnotationProperty ;
rdfs:label "Callback Address"@en ;
rdfs:comment "Determines a (set of) paths in the input document and the output response under which the callback address (see <https://w3id.org/catenax/ontology/function#callbackAddress>) and the referring callback id will be transmitted."@en ;
rdfs:domain cx-fx:Function ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-fx:functionConfigurationProperty .
cx-fx:dataType a owl:AnnotationProperty ;
rdfs:label "Argument or Result Data Type"@en ;
rdfs:comment "Determines the data type of an argument or return value."@en ;
rdfs:domain cx-fx:argument ;
rdfs:range xsd:anyType ;
rdfs:subPropertyOf cx-fx:argumentConfigurationProperty .
cx-fx:default a owl:AnnotationProperty ;
rdfs:label "Default"@en ;
rdfs:comment "Determines a default for the given argument which is taken if this is a mandatory argument"@en ;
rdfs:domain cx-fx:argument ;
rdfs:range xsd:anyType ;
rdfs:subPropertyOf cx-fx:argumentConfigurationProperty .
cx-fx:inputProperty a owl:AnnotationProperty ;
rdfs:label "Input Property"@en ;
rdfs:comment "Determines a path/name in the input document under which all input arguments are encoded. Default is '.'"@en ;
rdfs:domain cx-fx:argument ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-fx:argumentConfigurationProperty .
cx-fx:invocationIdProperty a owl:AnnotationProperty ;
rdfs:label "Invocation ID Property"@en ;
rdfs:comment "Determines a (set of) paths in the input document under which the IRI of the invocation (instance of Function) will be transmitted."@en ;
rdfs:domain cx-fx:Function ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-fx:functionConfigurationProperty .
cx-fx:invocationMethod a owl:AnnotationProperty ;
rdfs:label "Invocation Method"@en ;
rdfs:comment "Determines the invocation method of the function in case that the target service provides several possibilities (DEFAULT, GET, POST-JSON , POST-JSON-MF , POST-XML , POST-XML-MF). "@en ;
rdfs:domain cx-fx:Function ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-fx:functionConfigurationProperty .
cx-fx:mandatory a owl:AnnotationProperty .
cx-fx:output a owl:ObjectProperty ;
rdfs:label "Output Result"@en ;
rdfs:comment "Refers to the result of a function."@en ;
rdfs:domain cx-fx:Function ;
rdfs:range cx-fx:Result .
cx-fx:outputProperty a owl:AnnotationProperty ;
rdfs:label "Output of Function"@en ;
rdfs:comment "Determines a path/name in the output response under which all output arguments are encoded. Default is '.'"@en ;
rdfs:domain cx-fx:Result ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-fx:resultConfigurationProperty .
cx-fx:priority a owl:AnnotationProperty ;
rdfs:label "Priority"@en ;
rdfs:comment "Determines the priority with which the argument is processed. Default is '10'"@en ;
rdfs:domain cx-fx:argument ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf cx-fx:argumentConfigurationProperty .
cx-fx:resultIdProperty a owl:AnnotationProperty ;
rdfs:label "Result ID Property"@en ;
rdfs:comment "Determines a path in the output response under which the IRI of the result component will be transmitted."@en ;
rdfs:domain cx-fx:Result ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-fx:resultConfigurationProperty .
cx-fx:targetUri a owl:AnnotationProperty ;
rdfs:label "Target URI"@en ;
rdfs:comment "The target URI of the function should resolve to some existing service (URL)."@en ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-fx:functionConfigurationProperty .
cx-fx:valuePath a owl:AnnotationProperty ;
rdfs:label "Value Path"@en ;
rdfs:comment "Determines a path in the output response under which a return value is transmitted."@en ;
rdfs:domain cx-fx:argument ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-fx:argumentConfigurationProperty .
cx-reliability:LoadSpectrumAnalysis a owl:Class ;
rdfs:label "Load Spectrum Analysis"@en ;
rdfs:comment "Load spectrum analysis is an analysis that calculates load spectrum values for a vehicle part."@en ;
rdfs:subClassOf cx-reliability:Analysis .
cx-reliability:actualCause a owl:ObjectProperty ;
rdfs:label "actual cause"@en ;
rdfs:comment "Refers to the actual error cause."@en ;
rdfs:domain cx-reliability:DiagnosticTroubleCode ;
rdfs:range cx-reliability:ErrorCause ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-reliability:analysedPart a owl:ObjectProperty ;
rdfs:label "analysed Part"@en ;
rdfs:comment "Refers to the analysed part."@en ;
rdfs:domain cx-reliability:Analysis ;
rdfs:range cx-vehicle:Part ;
rdfs:subPropertyOf cx-reliability:analysedObject .
cx-reliability:analysedVehicle a owl:ObjectProperty ;
rdfs:label "analysed Vehicle"@en ;
rdfs:comment "Refers to the analysed vehicle."@en ;
rdfs:domain cx-reliability:Analysis ;
rdfs:range cx-vehicle:Vehicle ;
rdfs:subPropertyOf cx-reliability:analysedObject .
cx-reliability:channel a owl:ObjectProperty ;
rdfs:label "load spectrum channel"@en ;
rdfs:comment "Refers to load spectrum channel."@en ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:range cx-reliability:LoadSpectrumChannel .
cx-reliability:class a owl:ObjectProperty ;
rdfs:label "load spectrum class"@en ;
rdfs:comment "Refers to load spectrum class."@en ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:range cx-reliability:LoadSpectrumClass .
cx-reliability:countingMethod a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Counting Method"@en ;
rdfs:comment "Counting method of Load spectrum."@en ;
rdfs:domain cx-reliability:LoadSpectrumValue ;
rdfs:range xsd:string .
cx-reliability:countingUnit a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Counting Unit"@en ;
rdfs:comment "Counting unit of load spectrum."@en ;
rdfs:domain cx-reliability:LoadSpectrumValue ;
rdfs:range xsd:string .
cx-reliability:countingValue a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Counting Value"@en ;
rdfs:comment "Counting value of load spectrum."@en ;
rdfs:domain cx-reliability:LoadSpectrumValue ;
rdfs:range xsd:string .
cx-reliability:datetime a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Start Datetime"@en ;
rdfs:comment "Start of the measurement of load spectrum."@en ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:description a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Description"@en ;
rdfs:comment "Details about the load spectrum: who, what, where, when, how?"@en ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:diagnosticTroubleCodeId a owl:DatatypeProperty ;
rdfs:label "Diagnostic Trouble Code Id"@en ;
rdfs:comment "Id of diagnostic trouble code."@en ;
rdfs:domain cx-reliability:DiagnosticTroubleCode ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:diagnosticTroubleCodeName a owl:DatatypeProperty ;
rdfs:label "Diagnostic Trouble Code Name"@en ;
rdfs:comment "Name of diagnostic trouble code."@en ;
rdfs:domain cx-reliability:DiagnosticTroubleCode ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-reliability:name .
cx-reliability:endDatetime a owl:DatatypeProperty ;
rdfs:label "Load Spectrum End Datetime"@en ;
rdfs:comment "End of the measurement of load spectrum."@en ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:hasDiagnosticTroubleCode a owl:ObjectProperty ;
rdfs:label "has diagnostic trouble code"@en ;
rdfs:comment "Refers to diagnostic trouble code."@en ;
rdfs:domain cx-reliability:Diagnosis ;
rdfs:range cx-reliability:DiagnosticTroubleCode .
cx-reliability:id a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Id"@en ;
rdfs:comment "Id of load spectrum."@en ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:index a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Index"@en ;
rdfs:comment "Index of load spectrum values."@en ;
rdfs:domain cx-reliability:LoadSpectrumValue ;
rdfs:range xsd:string .
cx-reliability:lowerLimit a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Channel Lower Limit"@en ;
rdfs:comment "Lower limit of load spectrum channel."@en ;
rdfs:domain cx-reliability:LoadSpectrumChannel ;
rdfs:range xsd:float ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:mileageOfVehicle a owl:DatatypeProperty ;
rdfs:label "Mileage of Vehicle"@en ;
rdfs:comment "Mileage of analysed vehicle."@en ;
rdfs:domain cx-reliability:Analysis ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:numberOfBins a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Channel Number Of Bins"@en ;
rdfs:comment "Bins number of load spectrum channel."@en ;
rdfs:domain cx-reliability:LoadSpectrumChannel ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:operatingHoursOfPart a owl:DatatypeProperty ;
rdfs:label "operating Hours of Part"@en ;
rdfs:comment "Operating hours Of analysed part."@en ;
rdfs:domain cx-reliability:Analysis ;
rdfs:range xsd:float ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:operatingHoursOfVehicle a owl:DatatypeProperty ;
rdfs:label "operating Hours of Vehicle"@en ;
rdfs:comment "Operating hours Of vehicle."@en ;
rdfs:domain cx-reliability:Analysis ;
rdfs:range xsd:float ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:performs a owl:ObjectProperty ;
rdfs:label "performs"@en ;
rdfs:comment "A device performs an analysis."@en ;
rdfs:domain cx-reliability:AnalysisDevice ;
rdfs:range cx-reliability:Analysis ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-reliability:possibleCause a owl:ObjectProperty ;
rdfs:label "possible cause"@en ;
rdfs:comment "Refers to possible cause."@en ;
rdfs:domain cx-reliability:DiagnosticTroubleCode ;
rdfs:range cx-reliability:ErrorCause .
cx-reliability:result a owl:ObjectProperty ;
rdfs:label "result"@en ;
rdfs:comment "Refers to analysis result."@en ;
rdfs:domain cx-reliability:Analysis ;
rdfs:range cx-reliability:AnalysisResult ;
rdfs:subPropertyOf :refersToConceptualObject .
cx-reliability:type a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Type"@en ;
rdfs:comment "Type of load spectrum."@en ;
rdfs:domain cx-reliability:LoadSpectrum,
cx-reliability:LoadSpectrumChannel ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:unit a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Channel Unit"@en ;
rdfs:comment "Unit of load spectrum."@en ;
rdfs:domain cx-reliability:LoadSpectrumChannel ;
rdfs:range xsd:string .
cx-reliability:upperLimit a owl:DatatypeProperty ;
rdfs:label "Load Spectrum Channel Upper Limit"@en ;
rdfs:comment "Upper limit of load spectrum."@en ;
rdfs:domain cx-reliability:LoadSpectrumChannel ;
rdfs:range xsd:float ;
rdfs:subPropertyOf owl:topDataProperty .
cx-reliability:value a owl:ObjectProperty ;
rdfs:label "load spectrum value"@en ;
rdfs:comment "Refers to load spectrum value."@en ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:range cx-reliability:LoadSpectrumValue ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-scm:good a owl:ObjectProperty ;
rdfs:label "Good"@en ;
rdfs:comment "Refers to the goods in the supply chain."@en ;
rdfs:domain cx-scm:SupplyChain ;
rdfs:range :PhysicalObject ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-scm:recipient a owl:ObjectProperty ;
rdfs:label "Has Recipient"@en ;
rdfs:comment "Refers to the recipient."@en ;
rdfs:domain cx-scm:SupplyChain ;
rdfs:range cx-common:BusinessPartner ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-scm:supplier a owl:ObjectProperty ;
rdfs:label "Has Supplier"@en ;
rdfs:comment "Refers to the supplier."@en ;
rdfs:domain cx-scm:SupplyChain ;
rdfs:range cx-common:BusinessPartner ;
rdfs:subPropertyOf owl:topObjectProperty .