-
Notifications
You must be signed in to change notification settings - Fork 5
/
ontology.ttl
2942 lines (2607 loc) · 119 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) 2022,2023 T-Systems International GmbH
# Copyright (c) 2022,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
# Copyright (c) 2022,2023 ZF Friedrichshafen AG
# Copyright (c) 2022,2023 Mercedes-Benz AG
# Copyright (c) 2022,2023 Contributors to the Catena-X Association
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# SPDX-License-Identifier: Apache-2.0
@prefix cx-behaviour: <https://w3id.org/catenax/ontology/behaviour#> .
@prefix cx-common: <https://w3id.org/catenax/ontology/common#> .
@prefix cx-core: <https://w3id.org/catenax/ontology/core#> .
@prefix cx-fx: <https://w3id.org/catenax/ontology/function#> .
@prefix cx-reliability: <https://w3id.org/catenax/ontology/reliability#> .
@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 schema: <https://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
dc:contributor a owl:AnnotationProperty ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl>,
<file:ontology/reliability_ontology.ttl>,
<file:ontology/vehicle_ontology.ttl> .
dc:creator a owl:AnnotationProperty ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl>,
<file:ontology/core_ontology.ttl>,
<file:ontology/function_ontology.ttl>,
<file:ontology/reliability_ontology.ttl>,
<file:ontology/vehicle_ontology.ttl> .
dc:date a owl:AnnotationProperty ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl>,
<file:ontology/core_ontology.ttl>,
<file:ontology/function_ontology.ttl>,
<file:ontology/reliability_ontology.ttl>,
<file:ontology/vehicle_ontology.ttl> .
dc:description a owl:AnnotationProperty ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl>,
<file:ontology/core_ontology.ttl>,
<file:ontology/function_ontology.ttl>,
<file:ontology/reliability_ontology.ttl>,
<file:ontology/vehicle_ontology.ttl> .
dc:title a owl:AnnotationProperty ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl>,
<file:ontology/core_ontology.ttl>,
<file:ontology/function_ontology.ttl>,
<file:ontology/reliability_ontology.ttl>,
<file:ontology/vehicle_ontology.ttl> .
skos:altLabel a owl:AnnotationProperty ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl>,
<file:ontology/core_ontology.ttl>,
<file:ontology/function_ontology.ttl>,
<file:ontology/reliability_ontology.ttl>,
<file:ontology/vehicle_ontology.ttl> .
skos:definition a owl:AnnotationProperty ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl>,
<file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl>,
<file:ontology/vehicle_ontology.ttl> .
skos:example a owl:AnnotationProperty ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl>,
<file:ontology/core_ontology.ttl>,
<file:ontology/function_ontology.ttl>,
<file:ontology/reliability_ontology.ttl>,
<file:ontology/vehicle_ontology.ttl> .
skos:note a owl:AnnotationProperty ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl>,
<file:ontology/vehicle_ontology.ttl> .
skos:prefLabel a owl:AnnotationProperty ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl>,
<file:ontology/core_ontology.ttl>,
<file:ontology/function_ontology.ttl>,
<file:ontology/reliability_ontology.ttl>,
<file:ontology/vehicle_ontology.ttl> .
sh:shapesGraph a owl:ObjectProperty ;
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:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:target rdfs:Resource .
<https://w3id.org/catenax/ontology> a owl:Ontology ;
dc:creator "Catena-X Knowledge Agents Team" ;
dc:date "2023-08-04"^^xsd:date ;
dc:description "Catena-X Ontology for the Autmotive Industry." ;
dc:title "Catena-X Ontology" .
cx-behaviour:RemainingUsefulLife a cx-fx:Function ;
dc:description "Remaining Useful Life is a Prediction of the Estimated Mileage/Runtime until a Breakdown."@en ;
dc:title "Remaining Useful Life" ;
rdfs:isDefinedBy <file:ontology/behaviour_ontology.ttl> ;
cx-fx:input cx-behaviour:bodyClasses,
cx-behaviour:bodyCountsList,
cx-behaviour:classification,
cx-behaviour:component,
cx-behaviour:countingMethod,
cx-behaviour:countingUnit,
cx-behaviour:countingValue,
cx-behaviour:headerChannels,
cx-behaviour:metadata,
cx-behaviour:notification,
cx-behaviour:recipient,
cx-behaviour:recipientConnector,
cx-behaviour:sender,
cx-behaviour:senderConnector,
cx-behaviour:severity,
cx-behaviour:status,
cx-behaviour:statusDate,
cx-behaviour:statusMileage,
cx-behaviour:statusOperatingHours,
cx-behaviour:targetDate,
cx-behaviour:timeStamp ;
cx-fx:result cx-behaviour:response .
cx-common:SkillDistribution%3Frun%3Dall a cx-common:SkillDistribution ;
rdfs:comment "The skill may be invoked in any computing environment (provider or consumer)."@en ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
skos:prefLabel "All Distribution Mode"@en .
cx-common:SkillDistribution%3Frun%3Dconsumer a cx-common:SkillDistribution ;
rdfs:comment "The skill may only be invoked remote in the computing environment of the consumer."@en ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
skos:prefLabel "Consumer Distribution Mode"@en .
cx-common:SkillDistribution%3Frun%3Dprovider a cx-common:SkillDistribution ;
rdfs:comment "The skill may only be invoked local to the computing environment of the provider."@en ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
skos:prefLabel "Provider Distribution Mode"@en .
cx-common:authenticationCode a owl:DatatypeProperty ;
rdfs:comment "An authentication code under which authentication information are transmitted." ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:subPropertyOf cx-common:authenticationInformation .
cx-common:authenticationKey a owl:DatatypeProperty ;
rdfs:comment "An authentication key which encodes some authentication proof." ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:subPropertyOf cx-common:authenticationInformation .
cx-common:contentType a owl:DatatypeProperty ;
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:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:description a owl:DatatypeProperty ;
rdfs:comment "This property contains description of asset." ;
rdfs:domain cx-common:Asset ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
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:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:range cx-common:DataspaceConnector ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-common:id a owl:DatatypeProperty ;
rdfs:comment "This property contains unique identifier of Bussiness Partner/Connector/Asset."@en ;
rdfs:domain owl:Thing ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:implementsProtocol a owl:DatatypeProperty ;
rdfs:comment "This property refers to the network protocol implemented by the asset."@en ;
rdfs:domain cx-common:Asset ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:isFederated a owl:DatatypeProperty ;
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:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:range xsd:boolean ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:name a owl:DatatypeProperty ;
rdfs:comment "This property contains name of asset."@en ;
rdfs:domain cx-common:Asset ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:offers a owl:ObjectProperty ;
rdfs:comment "This property refers to the offered assets."@en ;
rdfs:domain cx-common:DataspaceConnector ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:range cx-common:Asset ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-common:publishedUnderContract a owl:ObjectProperty ;
rdfs:comment "This property refers to the contract associated with the asset."@en ;
rdfs:domain cx-common:Asset ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:target cx-common:Contract .
cx-common:url a owl:DatatypeProperty ;
rdfs:domain cx-common:DataspaceConnector ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:range xsd:anyURI ;
rdfs:subPropertyOf owl:topDataProperty .
cx-common:version a owl:DatatypeProperty ;
rdfs:comment "This property contains version of asset."@en ;
rdfs:domain cx-common:Asset ;
rdfs:isDefinedBy <file:ontology/common_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-core:endDateTime a owl:DatatypeProperty ;
rdfs:label "end dateTime"@en ;
rdfs:comment "End time of the activity."@en ;
rdfs:domain cx-core:Activity ;
rdfs:isDefinedBy <file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty .
cx-core:hasParticipant a owl:ObjectProperty ;
rdfs:label "has participant"@en ;
rdfs:comment "This property describes the active or passive participation of instances of Actors in an Activity." ;
rdfs:domain cx-core:Activity ;
rdfs:isDefinedBy <file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-core:Actor ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-core:hosts a owl:ObjectProperty ;
rdfs:domain cx-core:Place ;
rdfs:isDefinedBy <file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-core:Activity ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-core:id a owl:DatatypeProperty ;
rdfs:domain owl:Thing ;
rdfs:isDefinedBy <file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-core: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 cx-core:ConceptualObject,
cx-core:PhysicalObject ;
rdfs:isDefinedBy <file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-core:Activity .
cx-core:name a owl:DatatypeProperty ;
rdfs:domain owl:Thing ;
rdfs:isDefinedBy <file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-core:participatesIn a owl:ObjectProperty ;
rdfs:label "participates in"@en ;
rdfs:comment "Inverse of 'has participant'"@en ;
rdfs:domain cx-core:Actor ;
rdfs:isDefinedBy <file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-core:Activity ;
rdfs:subPropertyOf owl:topObjectProperty .
cx-core:relatedToPlace a owl:ObjectProperty ;
rdfs:label "This property describes that an actor has a relationship to a particular place, such as reside, own, or manage, etc."@en,
"related to place"@en ;
rdfs:domain cx-core:Actor ;
rdfs:isDefinedBy <file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-core:Place .
cx-core:role a owl:DatatypeProperty ;
rdfs:domain owl:Thing ;
rdfs:isDefinedBy <file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty .
cx-core:startDateTime a owl:DatatypeProperty ;
rdfs:label "start dateTime"@en ;
rdfs:comment "Start time of the activity."@en ;
rdfs:domain cx-core:Activity ;
rdfs:isDefinedBy <file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty .
cx-core:takesPlaceAt a owl:ObjectProperty ;
rdfs:label "takes place at"@en ;
rdfs:comment "This property describes the spatial location of an activity."@en ;
rdfs:domain cx-core:Activity ;
rdfs:isDefinedBy <file:ontology/core_ontology.ttl>,
<file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-core:Place .
cx-fx:argumentName a owl:DatatypeProperty ;
rdfs:comment "Determines the name or index of the function argument." ;
rdfs:domain cx-fx:Argument ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:altLabel "Argument Name or Index"@en ;
skos:example "age",
"arg0" ;
skos:prefLabel "Argument Name"@en .
cx-fx:batch a owl:DatatypeProperty ;
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:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:long ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:altLabel "Maximal Batch Size"@en ;
skos:example "100"^^xsd:long ;
skos:prefLabel "Batch Size"@en .
cx-fx:callbackProperty a owl:DatatypeProperty ;
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,
cx-fx:Result ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:altLabel "Function Callback ID/Address Property"@en ;
skos:example "callbackAddress" ;
skos:prefLabel "Callback Address"@en .
cx-fx:dataType a owl:DatatypeProperty ;
rdfs:comment "Determines the data type of an argument or return value." ;
rdfs:domain cx-fx:Argument,
cx-fx:ReturnValue ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
skos:altLabel "Argument or Result Data Type"@en ;
skos:example xsd:long,
json:Object ;
skos:prefLabel "Argument or Result Data Type"@en .
cx-fx:default a owl:DatatypeProperty ;
rdfs:comment "Determines a default for the given argument which is taken if this is a mandatory argument (see <https://w3id.org/catenax/ontology/function#mandatory>)"@en ;
rdfs:domain cx-fx:Argument ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:anyType ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:altLabel "Argument Default"@en ;
skos:example <urn:default:uri>,
"a default string"^^xsd:string ;
skos:prefLabel "Default"@en .
cx-fx:input a owl:ObjectProperty ;
rdfs:comment "Describes the arguments of a function."@en ;
rdfs:domain cx-fx:Function ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range cx-fx:Argument ;
skos:prefLabel "Input Argument"@en .
cx-fx:inputProperty a owl:DatatypeProperty ;
rdfs:comment "Determines a path/name in the input document under which all input arguments are encoded. Default is '.'"@en ;
rdfs:domain cx-fx:Function ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:altLabel "Function Input Property"@en ;
skos:example "." ;
skos:prefLabel "Input Property"@en .
cx-fx:invocationIdProperty a owl:DatatypeProperty ;
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:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:altLabel "Function Invocation ID Property"@en ;
skos:example "requestId" ;
skos:prefLabel "Invocation ID Property"@en .
cx-fx:invocationMethod a owl:DatatypeProperty ;
rdfs:comment "Determines the invocation method of the function in case that the target service provides several possibilities."@en ;
rdfs:domain cx-fx:Function ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:example "DEFAULT",
"GET",
"POST-JSON",
"POST-JSON-MF",
"POST-XML",
"POST-XML-MF" ;
skos:prefLabel "Invocation Method"@en .
cx-fx:output a owl:ObjectProperty ;
rdfs:domain cx-fx:Result ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range cx-fx:ReturnValue ;
skos:altLabel "Function Return Output"@en ;
skos:prefLabel "Output"@en .
cx-fx:outputProperty a owl:DatatypeProperty ;
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:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:altLabel "Function Output Property"@en ;
skos:example "." ;
skos:prefLabel "Output of Function"@en .
cx-fx:priority a owl:DatatypeProperty ;
rdfs:comment "Determines the priority with which the argument is processed. Default is '10'"@en ;
rdfs:domain cx-fx:Argument ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:altLabel "Argument Priority"@en ;
skos:example -1 ;
skos:prefLabel "Priority"@en .
cx-fx:result a owl:ObjectProperty ;
rdfs:comment "Describes the result of a function."@en ;
rdfs:domain cx-fx:Function ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range cx-fx:Result ;
skos:prefLabel "Output Result"@en .
cx-fx:resultIdProperty a owl:DatatypeProperty ;
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:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:altLabel "Function Result ID Property"@en ;
skos:example "componentId" ;
skos:prefLabel "Result ID Property"@en .
cx-fx:targetUri a owl:DatatypeProperty ;
rdfs:comment "The target URI of the function should resolve to some existing service (URL)."@en ;
rdfs:domain cx-fx:Function ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:string ;
skos:example <class:org.eclipse.tractusx.agents.remoting.TestFunction#test>,
<http://tiera-backend:5005/api/rul>,
<https://api.agify.io> ;
skos:prefLabel "Target URI"@en .
cx-fx:valuePath a owl:DatatypeProperty ;
rdfs:comment "Determines a path in the output response under which a return value is transmitted."@en ;
rdfs:domain cx-fx:ReturnValue ;
rdfs:isDefinedBy <file:ontology/function_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:altLabel "Function Result Value Path"@en ;
skos:example "age" ;
skos:prefLabel "Value Path"@en .
cx-reliability:LoadSpectrumAnalysis a owl:Class ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:subClassOf cx-reliability:OnBoardTelematics ;
skos:prefLabel "Load Spectrum Analysis"@en .
cx-reliability:TelematicsResult a owl:Class ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:subClassOf cx-reliability:AnalysisResult ;
skos:prefLabel "Telematics Result"@en .
cx-reliability:analysedPart a owl:ObjectProperty ;
rdfs:domain cx-reliability:Analysis ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-vehicle:Part ;
rdfs:subPropertyOf cx-reliability:analysedObject ;
skos:prefLabel "analysed Part"@en .
cx-reliability:analysedVehicle a owl:ObjectProperty ;
rdfs:domain cx-reliability:Analysis ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-vehicle:Vehicle ;
rdfs:subPropertyOf cx-reliability:analysedObject ;
skos:prefLabel "analysed Vehicle"@en .
cx-reliability:channel a owl:ObjectProperty ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-reliability:LoadSpectrumChannel ;
skos:prefLabel "load spectrum channel"@en .
cx-reliability:channels a owl:DatatypeProperty ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range json:Object .
cx-reliability:class a owl:ObjectProperty ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-reliability:LoadSpectrumClass .
cx-reliability:classes a owl:DatatypeProperty ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range json:Object .
cx-reliability:countingMethod a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrumValues ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
skos:prefLabel "Load Spectrum Counting Method"@en .
cx-reliability:countingUnit a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrumValues ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
skos:example "frequency"@en,
"seconds"@en ;
skos:prefLabel "Load Spectrum Counting Unit"@en .
cx-reliability:countingValue a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrumValues ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
skos:prefLabel "Load Spectrum Counting Value"@en .
cx-reliability:datetime a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:definition "start of the measurement of load spectrum"@en ;
skos:prefLabel "Lastkollektiv Startzeitpunkt"@de,
"Load Spectrum Start Datetime"@en .
cx-reliability:description a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:definition "details about the load spectrum: who, what, where, when, how?"@en ;
skos:example "gear"@en,
"oil"@en ;
skos:prefLabel "Lastkollektiv Beschreibung"@de,
"Load Spectrum Description"@en .
cx-reliability:endDatetime a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:definition "end of the measurement of load spectrum"@en ;
skos:prefLabel "Lastkollektiv Endzeitpunkt"@de,
"Load Spectrum End Datetime"@en .
cx-reliability:hasValues a owl:ObjectProperty ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-reliability:LoadSpectrumValues .
cx-reliability:id a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrum ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:prefLabel "Lastkollektiv Id"@de,
"Load Spectrum Id"@en .
cx-reliability:index a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrumValues ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
skos:example "2"@en,
"3]"@en,
"[1"@en ;
skos:prefLabel "Load Spectrum Channel Index"@en .
cx-reliability:lowerLimit a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrumChannel ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:float ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:example "-40"@en ;
skos:prefLabel "Load Spectrum Channel Lower Limit"@en .
cx-reliability:mileageOfVehicle a owl:DatatypeProperty ;
rdfs:domain cx-reliability:Analysis ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:prefLabel "Mileage of Vehicle"@en .
cx-reliability:name a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrum,
cx-reliability:LoadSpectrumChannel ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:example "rotational speed"@en ;
skos:prefLabel "Lastkollektiv Name"@de,
"Load Spectrum Name"@en .
cx-reliability:numberOfBins a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrumChannel ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:example "52"@en ;
skos:prefLabel "Load Spectrum Channel Number Of Bins"@en .
cx-reliability:operatingHoursOfPart a owl:DatatypeProperty ;
rdfs:domain cx-reliability:Analysis ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:float ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:prefLabel "operating Hours of Part"@en .
cx-reliability:operatingHoursOfVehicle a owl:DatatypeProperty ;
rdfs:domain cx-reliability:Analysis ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:float ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:prefLabel "operating Hours of Vehicle"@en .
cx-reliability:result a owl:ObjectProperty ;
rdfs:domain cx-reliability:Analysis ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range cx-reliability:AnalysisResult ;
rdfs:subPropertyOf cx-core:refersToConceptualObject ;
skos:prefLabel "result"@en .
cx-reliability:type a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrum,
cx-reliability:LoadSpectrumChannel ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:example "count"@en,
"sum"@en ;
skos:prefLabel "Lastkollektivtyp"@de,
"Load Spectrum Type"@en .
cx-reliability:unit a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrumChannel ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:string ;
skos:prefLabel "Load Spectrum Channel Unit"@en .
cx-reliability:upperLimit a owl:DatatypeProperty ;
rdfs:domain cx-reliability:LoadSpectrumChannel ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range xsd:float ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:example "220"@en ;
skos:prefLabel "Load Spectrum Channel Upper Limit"@en .
cx-reliability:values a owl:DatatypeProperty ;
rdfs:isDefinedBy <file:ontology/reliability_ontology.ttl> ;
rdfs:range json:Object ;
skos:example "3"@en,
"4]"@en,
"[2"@en ;
skos:prefLabel "Load Spectrum Channel Values"@en .
cx-vehicle:acceleration a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:integer ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/0_to_60_mph>,
schema:accelerationTime ;
rdfs:subPropertyOf cx-vehicle:performanceInformation ;
skos:definition "The time needed to accelerate the vehicle from 0 to 100 km/h."@en ;
skos:example "5"@en ;
skos:note "in seconds"@en ;
skos:prefLabel "Beschleunigung"@de,
"Vehicle Acceleration"@en .
cx-vehicle:adblueTankCapacity a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:double ;
rdfs:subPropertyOf cx-vehicle:fuelInformation ;
skos:example "8"@en ;
skos:note "in liter"@en ;
skos:prefLabel "Adblue Tank Capacity"@en .
cx-vehicle:age a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf cx-vehicle:stateInformation ;
skos:definition "The current age of the vehicle in years."@en ;
skos:example "3"@en ;
skos:note "in years"@en ;
skos:prefLabel "Fahrzeugalter"@de,
"Vehicle Age"@en .
cx-vehicle:airConditioningType a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Air_conditioning> ;
rdfs:subPropertyOf cx-vehicle:interiorInformation ;
skos:example "automatic"@en,
"manual"@en ;
skos:prefLabel "Air Conditioning Type"@en .
cx-vehicle:assemblyCountry a owl:DatatypeProperty ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:seeAlso schema:countryOfAssembly ;
rdfs:subPropertyOf cx-vehicle:productionInformation ;
skos:definition "The place where the item was assembled."@en ;
skos:prefLabel "Montageland"@de,
"Assembly Country"@en .
cx-vehicle:assemblyPlant a owl:DatatypeProperty ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-vehicle:productionInformation ;
skos:prefLabel "Montagewerk"@de,
"Assembly Plant"@en .
cx-vehicle:assistanceSystem a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-vehicle:suspensionInformation ;
skos:prefLabel "Assistance System"@en .
cx-vehicle:batteryCapacity a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf cx-vehicle:batteryInformation ;
skos:note "in kWhs"@en ;
skos:prefLabel "Battery Capacity"@en .
cx-vehicle:batteryType a owl:DatatypeProperty ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-vehicle:batteryInformation ;
skos:example "Li-Ion"@en ;
skos:prefLabel "Battery Type"@en .
cx-vehicle:batteryWeight a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf cx-vehicle:batteryInformation ;
skos:example "250"@en ;
skos:note "in kilogramms"@en ;
skos:prefLabel "Battery Weight"@en .
cx-vehicle:bodyStyle a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:seeAlso schema:bodyType ;
rdfs:subPropertyOf cx-vehicle:bodyInformation ;
skos:altLabel "Kategorie"@de,
"body type"@en ;
skos:definition "Indicates the design and body style of the vehicle ."@en ;
skos:example "coupe"@en,
"sedan"@en,
"station wagon"@en ;
skos:prefLabel "Body Style"@en .
cx-vehicle:bore a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:double ;
rdfs:subPropertyOf cx-vehicle:engineInformation ;
skos:note "in mm"@en ;
skos:prefLabel "Bore"@en .
cx-vehicle:brand a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:seeAlso schema:brand ;
rdfs:subPropertyOf cx-vehicle:modelInformation ;
skos:altLabel "make"@en,
"marque"@en ;
skos:example "Audi"@en,
"BMW"@en,
"Mercedes"@en ;
skos:prefLabel "Marke"@de,
"Make"@en .
cx-vehicle:breaking a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:integer ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Brake> ;
rdfs:subPropertyOf cx-vehicle:performanceInformation ;
skos:definition "The time needed to decelerate the vehicle from 100 to 0 km/h."@en ;
skos:example "5"@en ;
skos:note "in seconds"@en ;
skos:prefLabel "Bremsung"@de,
"Vehicle Breaking"@en .
cx-vehicle:camshaftValvetrainConfiguration a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-vehicle:engineInformation ;
skos:example "DOHC"@en ;
skos:prefLabel "Camshaft Valvetrain Configuration"@en .
cx-vehicle:cargoVolume a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:double ;
rdfs:seeAlso schema:cargoVolume ;
rdfs:subPropertyOf cx-vehicle:cargoInformation ;
skos:altLabel "cargo capacity"@en ;
skos:definition "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume."@en ;
skos:example "500"@en ;
skos:note "in liters"@en ;
skos:prefLabel "Cargo Volume"@en .
cx-vehicle:chargingTime a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:double ;
rdfs:subPropertyOf cx-vehicle:batteryInformation ;
skos:note "in hours"@en ;
skos:prefLabel "Charging Time"@en .
cx-vehicle:classification a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:EClassType ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:prefLabel "EClass classification"@en .
cx-vehicle:clutchType a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Clutch> ;
rdfs:subPropertyOf cx-vehicle:powertrainInformation ;
skos:example "centrifugal"@en,
"wet"@en ;
skos:prefLabel "Kupplungsart"@de,
"Clutch Type"@en .
cx-vehicle:co2Emissions a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:integer ;
rdfs:seeAlso schema:emissionsCO2 ;
rdfs:subPropertyOf cx-vehicle:fuelInformation ;
skos:definition "The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put \"g/km\" into the unitText property of that value, since there is no UN/CEFACT Common Code for \"g/km\"."@en ;
skos:example "130"@en ;
skos:note "in g/km"@en ;
skos:prefLabel "Co2 Emissions"@en .
cx-vehicle:co2EmissionsWltp a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:integer ;
rdfs:seeAlso schema:emissionsCO2 ;
rdfs:subPropertyOf cx-vehicle:fuelInformation ;
skos:definition "The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put \"g/km\" into the unitText property of that value, since there is no UN/CEFACT Common Code for \"g/km\"."@en ;
skos:example "130"@en ;
skos:note "in g/km"@en ;
skos:prefLabel "Co2 Emissions Wltp"@en .
cx-vehicle:configuration a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:seeAlso schema:vehicleConfiguration ;
skos:definition "A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'."@en ;
skos:prefLabel "Vehicle Configuration"@en .
cx-vehicle:countryOption a owl:DatatypeProperty ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-vehicle:productionInformation ;
skos:altLabel "national-market version"@en ;
skos:example "CN"@en,
"EUR"@en,
"US"@en ;
skos:prefLabel "Länderausführung"@de,
"Country Option"@en .
cx-vehicle:curbWeight a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:double ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Vehicle_weight#Curb_weight> ;
rdfs:subPropertyOf cx-vehicle:bodyInformation ;
skos:altLabel "Leermasse"@de,
"kerb weight"@en ;
skos:definition "The total mass of a vehicle with standard equipment and all necessary operating consumables such as motor oil, transmission oil, brake fluid, coolant, air conditioning refrigerant, and sometimes a full tank of fuel, while not loaded with either passengers or cargo."@en ;
skos:example "1500"@en ;
skos:note "in kilogramms"@en ;
skos:prefLabel "Leergewicht"@de,
"Vehicle Curb Weight"@en .
cx-vehicle:deliveryCountry a owl:DatatypeProperty ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-vehicle:productionInformation ;
skos:prefLabel "Auslieferland"@de,
"Delivery Country"@en .
cx-vehicle:deliveryDate a owl:DatatypeProperty ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:date ;
rdfs:subPropertyOf cx-vehicle:productionInformation ;
skos:prefLabel "Auslieferdatum"@de,
"Delivery Date"@en .
cx-vehicle:deliveryPrice a owl:DatatypeProperty ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf cx-vehicle:productionInformation ;
skos:prefLabel "Lieferpreis"@de,
"Delivery Price"@en .
cx-vehicle:description a owl:DatatypeProperty ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:prefLabel "Description"@en .
cx-vehicle:developmentSeries a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf cx-vehicle:modelInformation ;
skos:altLabel "Baureihe"@de,
"Derivat"@de,
"E-Baureihe"@de,
"E-Reihe"@de,
"EBR"@de,
"Entwicklungsbaureihe"@de,
"Entwicklungsbezeichnung"@de,
"Entwicklungscode"@de,
"derivative"@en,
"development code"@en,
"development model range"@en,
"development series"@en,
"e-series"@en ;
skos:definition "internal series number"@en ;
skos:example "BMW: G26"@en,
"Mercedes: W212"@en ;
skos:prefLabel "Fahrzeugbaureihe"@de,
"Development Series"@en .
cx-vehicle:dragCoefficient a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:double ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Automobile_drag_coefficient> ;
rdfs:subPropertyOf cx-vehicle:bodyInformation ;
skos:altLabel "Cd"@en ;
skos:definition "aerodynamic drag coefficient"@en ;
skos:example "0.3"@en ;
skos:prefLabel "Vehicle Drag Coefficient"@en .
cx-vehicle:driveWheelType a owl:DatatypeProperty ;
rdfs:domain cx-vehicle:Vehicle ;
rdfs:isDefinedBy <file:ontology/vehicle_ontology.ttl> ;
rdfs:range xsd:string ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Drive_wheel>,
schema:driveWheelConfiguration ;
rdfs:subPropertyOf cx-vehicle:powertrainInformation ;
skos:altLabel "drive wheel configuration"@en,
"driveline"@en ;