-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgao-schemaorg-ee.ttl
2780 lines (2333 loc) · 79.6 KB
/
gao-schemaorg-ee.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <http://ontologies.makolab.com/gao/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
<http://ontologies.makolab.com/gao/> a owl:Ontology ;
owl:versionIRI :1.1 ;
rdfs:comment "General Automotive Ontology (GAO) is a web-based structured data vocabulary that extends auto.schema.org to support richer automotive data description. It is an external extension to schema.org that is fully independent and have its own workflows, review processes and infrastructure. GAO builds upon ontologies used by MakoLab for semantic Search Insights."@en ;
owl:versionInfo "version 1.0 (24-04-2017)"@en ;
rdfs:label "Automotive Schema.org External Extension"@en .
#
#
# #################################################################
# #
# # Annotation properties
# #
# #################################################################
#
#
# http://www.w3.org/2004/02/skos/core#altLabel
skos:altLabel a owl:AnnotationProperty .
#
# http://www.w3.org/2004/02/skos/core#closeMatch
skos:closeMatch a owl:AnnotationProperty .
#
# http://www.w3.org/2004/02/skos/core#exactMatch
skos:exactMatch a owl:AnnotationProperty .
#
# http://www.w3.org/2004/02/skos/core#hiddenLabel
skos:hiddenLabel a owl:AnnotationProperty .
#
#
#
# #################################################################
# #
# # Object Properties
# #
# #################################################################
#
#
# http://ontologies.makolab.com/gao/bodyType
:bodyType a owl:ObjectProperty ;
rdfs:range :BodyType ;
rdfs:comment "Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.)."@en ;
rdfs:label "body type"@en ;
skos:exactMatch "http://auto.schema.org/bodyType"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/engineType
:engineType a owl:ObjectProperty ;
rdfs:range :EngineType ;
rdfs:comment "The type of engine or engines powering the vehicle."@en ;
rdfs:label "engine type"@en ;
skos:exactMatch "http://auto.schema.org/engineType"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/transmission
:transmission a owl:ObjectProperty ;
rdfs:range :Transmission ;
rdfs:label "gearbox type"@en .
#
# http://ontologies.makolab.com/gao/vehicleSpecialUsage
:vehicleSpecialUsage a owl:ObjectProperty ;
rdfs:range :CarUsageType ;
rdfs:comment "Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale."@en ;
rdfs:label "vehicle special usage"@en ;
skos:exactMatch "http://auto.schema.org/vehicleSpecialUsage"^^xsd:anyURI .
#
#
#
# #################################################################
# #
# # Data properties
# #
# #################################################################
#
#
# http://ontologies.makolab.com/gao/accelerationTime
:accelerationTime a owl:DatatypeProperty ;
rdfs:comment """The time needed to accelerate the vehicle from a given start velocity to a given target velocity.
Typical unit code(s): SEC for seconds.
Note: There are unfortunately no standard unit codes for seconds/0..100 km/h or seconds/0..60 mph. Simply use \"SEC\" for seconds and indicate the velocities in the name of the QuantitativeValue, or use valueReference with a QuantitativeValue of 0..60 mph or 0..100 km/h to specify the reference speeds."""@en ;
rdfs:label "acceleration time"@en ;
skos:exactMatch "http://auto.schema.org/accelerationTime"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/acrissCode
:acrissCode a owl:DatatypeProperty ;
rdfs:comment "The ACRISS Car Classification Code is a code used by many car rental companies, for classifying vehicles. ACRISS stands for Association of Car Rental Industry Systems and Standards."@en ;
rdfs:label "acriss code"@en ;
skos:exactMatch "http://auto.schema.org/acrissCode"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/brakingTrailerWeight
:brakingTrailerWeight a owl:DatatypeProperty ;
rdfs:label "braking trailer weight"@en .
#
# http://ontologies.makolab.com/gao/combinedCycleFuelConsumption
:combinedCycleFuelConsumption a owl:DatatypeProperty ;
rdfs:subPropertyOf :fuelConsumption ;
rdfs:label "combined cycle fuel consumption"@en ;
skos:hiddenLabel "combined cycle"@en .
#
# http://ontologies.makolab.com/gao/compressionRatio
:compressionRatio a owl:DatatypeProperty ;
rdfs:domain :EngineType ;
rdfs:label "Compression ratio"@en .
#
# http://ontologies.makolab.com/gao/doors
:doors a owl:DatatypeProperty ;
rdfs:label "doors"@en , "drzwi"@pl .
#
# http://ontologies.makolab.com/gao/emissionsCO2
:emissionsCO2 a owl:DatatypeProperty ;
rdfs:comment "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 ;
rdfs:label "CO2 emission"@en ;
skos:exactMatch "http://auto.schema.org/emissionsCO2"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/emissionsCO2MixedCycle
:emissionsCO2MixedCycle a owl:DatatypeProperty ;
rdfs:subPropertyOf :emissionsCO2 ;
rdfs:label "CO2 emission mixed cycle"@en .
#
# http://ontologies.makolab.com/gao/engineCapacity
:engineCapacity a owl:DatatypeProperty ;
rdfs:domain :EngineType ;
rdfs:label "Engine capacity"@en .
#
# http://ontologies.makolab.com/gao/engineDisplacement
:engineDisplacement a owl:DatatypeProperty ;
rdfs:domain :EngineType ;
rdfs:comment """The volume swept by all of the pistons inside the cylinders of an internal combustion engine in a single movement.
Typical unit code(s): CMQ for cubic centimeter, LTR for liters, INQ for cubic inches * Note 1: You can link to information about how the given value has been determined using the valueReference property. * Note 2: You can use minValue and maxValue to indicate ranges."""@en ;
rdfs:label "engine displacement"@en ;
skos:exactMatch "http://auto.schema.org/engineDisplacement"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/enginePower
:enginePower a owl:DatatypeProperty ;
rdfs:domain :EngineType ;
rdfs:comment """The power of the vehicle's engine. Typical unit code(s): KWT for kilowatt, BHP for brake horsepower, N12 for metric horsepower (PS, with 1 PS = 735,49875 W)
Note 1: There are many different ways of measuring an engine's power. For an overview, see http://en.wikipedia.org/wiki/Horsepower#Enginepowertest_codes.
Note 2: You can link to information about how the given value has been determined using the valueReference property.
Note 3: You can use minValue and maxValue to indicate ranges."""@en ;
rdfs:label "engine power"@en ;
skos:exactMatch "http://auto.schema.org/enginePower"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/extraUrbancycleFuelConsumption
:extraUrbancycleFuelConsumption a owl:DatatypeProperty ;
rdfs:subPropertyOf :fuelConsumption ;
rdfs:label "extra urban cycle fuel consumption"@en ;
skos:hiddenLabel "Extra Urban cycle"@en .
#
# http://ontologies.makolab.com/gao/fuelCapacity
:fuelCapacity a owl:DatatypeProperty ;
rdfs:comment """The capacity of the fuel tank or in the case of electric cars, the battery. If there are multiple components for storage, this should indicate the total of all storage of the same type.
Typical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles)."""@en ;
rdfs:label "fuel capacity"@en ;
skos:altLabel "fuel tank capacity"@en ;
skos:exactMatch "http://auto.schema.org/fuelCapacity"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/fuelConsumption
:fuelConsumption a owl:DatatypeProperty ;
rdfs:label "fuel consumption"@en , "zużycie paliwa"@pl .
#
# http://ontologies.makolab.com/gao/gearsNumber
:gearsNumber a owl:DatatypeProperty ;
rdfs:label "number of gears"@en .
#
# http://ontologies.makolab.com/gao/grossTrainWeight
:grossTrainWeight a owl:DatatypeProperty ;
rdfs:label "GTW"@en , "Gross train weight"@en .
#
# http://ontologies.makolab.com/gao/grossVehicleWeight
:grossVehicleWeight a owl:DatatypeProperty ;
rdfs:label "GVW"@en , "Gross vehicle weight"@en .
#
# http://ontologies.makolab.com/gao/grossVehicleWeightRating
:grossVehicleWeightRating a owl:DatatypeProperty ;
rdfs:label "GVWR"@en , "Gross vehicle weight rating"@en .
#
# http://ontologies.makolab.com/gao/kerbWeight
:kerbWeight a owl:DatatypeProperty ;
rdfs:label "kerb weight"@en ;
skos:altLabel "curb weight"@en .
#
# http://ontologies.makolab.com/gao/kerbWeightOnFront
:kerbWeightOnFront a owl:DatatypeProperty ;
rdfs:label "Kerb weight on front"@en .
#
# http://ontologies.makolab.com/gao/kerbWeightOnRear
:kerbWeightOnRear a owl:DatatypeProperty ;
rdfs:label "Kerb weight on rear"@en .
#
# http://ontologies.makolab.com/gao/loadVolume
:loadVolume a owl:DatatypeProperty ;
rdfs:label "load volume"@en , "ładowność"@pl .
#
# http://ontologies.makolab.com/gao/lockToLockSteeringWheelTurns
:lockToLockSteeringWheelTurns a owl:DatatypeProperty ;
rdfs:label "Lock-to-lock steering wheel turns"@en .
#
# http://ontologies.makolab.com/gao/maxSpeed
:maxSpeed a owl:DatatypeProperty ;
rdfs:label "max speed"@en , "szybkość maksymalna"@pl .
#
# http://ontologies.makolab.com/gao/meetsEmissionStandard
:meetsEmissionStandard a owl:DatatypeProperty ;
rdfs:label "meets emission etandard"@en ;
skos:exactMatch "http://auto.schema.org/meetsEmissionStandard"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/modelDate
:modelDate a owl:DatatypeProperty ;
rdfs:range xsd:dateTime ;
rdfs:comment "The release date of a vehicle model (often used to differentiate versions of the same make and model)."@en ;
rdfs:label "model date"@en ;
skos:exactMatch "http://auto.schema.org/modelDate"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/numberOfCylinders
:numberOfCylinders a owl:DatatypeProperty ;
rdfs:label "Number of cylinders"@en ;
skos:altLabel "No. of cylinders"@en , "Valve"@en .
#
# http://ontologies.makolab.com/gao/numberOfSteeringWheelRotations
:numberOfSteeringWheelRotations a owl:DatatypeProperty ;
rdfs:label "Number of steering wheel rotations"@en ;
skos:altLabel "No. of steering wheel rotations"@en .
#
# http://ontologies.makolab.com/gao/payload
:payload a owl:DatatypeProperty ;
rdfs:comment """The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.
Typical unit code(s): KGM for kilogram, LBR for pound
Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of weight and payload
Note 2: You can indicate additional information in the name of the QuantitativeValue node.
Note 3: You may also link to a QualitativeValue node that provides additional information using valueReference.
Note 4: Note that you can use minValue and maxValue to indicate ranges."""@en ;
rdfs:label "payload"@en ;
skos:exactMatch "http://auto.schema.org/payload"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/roofLoad
:roofLoad a owl:DatatypeProperty ;
rdfs:comment """The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.
Typical unit code(s): KGM for kilogram, LBR for pound
Note 1: You can indicate additional information in the name of the QuantitativeValue node.
Note 2: You may also link to a QualitativeValue node that provides additional information using valueReference
Note 3: Note that you can use minValue and maxValue to indicate ranges."""@en ;
rdfs:label "roof load"@en ;
skos:exactMatch "http://auto.schema.org/roofLoad"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/seatingCapacity
:seatingCapacity a owl:DatatypeProperty ;
rdfs:comment """The number of persons that can be seated (e.g. in a vehicle), both in terms of the physical space available, and in terms of limitations set by law.
Typical unit code(s): C62 for persons"""@en ;
rdfs:label "seating capacity"@en ;
skos:exactMatch "http://auto.schema.org/seatingCapacity"@en .
#
# http://ontologies.makolab.com/gao/speed
:speed a owl:DatatypeProperty ;
rdfs:comment """The speed range of the vehicle. If the vehicle is powered by an engine, the upper limit of the speed range (indicated by maxValue should be the maximum speed achievable under regular conditions.
Typical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot
*Note 1: Use minValue and maxValue to indicate the range. Typically, the minimal value is zero. * Note 2: There are many different ways of measuring the speed range. You can link to information about how the given value has been determined using the valueReference property."""@en ;
rdfs:label "speed"@en ;
skos:exactMatch "http://auto.schema.org/speed"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/stoppingDistance1000m
:stoppingDistance1000m a owl:DatatypeProperty ;
rdfs:label "1000m stopping distance"@en .
#
# http://ontologies.makolab.com/gao/stoppingDistance400m
:stoppingDistance400m a owl:DatatypeProperty ;
rdfs:label "400m stopping distance"@en .
#
# http://ontologies.makolab.com/gao/timeFrom0To100
:timeFrom0To100 a owl:DatatypeProperty ;
rdfs:label "time 0-100 km/h"@en .
#
# http://ontologies.makolab.com/gao/tongueWeight
:tongueWeight a owl:DatatypeProperty ;
rdfs:comment """The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR)
Typical unit code(s): KGM for kilogram, LBR for pound
Note 1: You can indicate additional information in the name of the QuantitativeValue node.
Note 2: You may also link to a QualitativeValue node that provides additional information using valueReference.
Note 3: Note that you can use minValue and maxValue to indicate ranges."""@en ;
rdfs:label "tongue weight"@en ;
skos:exactMatch "http://auto.schema.org/tongueWeight"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/topSpeed
:topSpeed a owl:DatatypeProperty ;
rdfs:label "Top Speed"@en .
#
# http://ontologies.makolab.com/gao/trailerWeight
:trailerWeight a owl:DatatypeProperty ;
rdfs:comment """The permitted weight of a trailer attached to the vehicle.
Typical unit code(s): KGM for kilogram, LBR for pound * Note 1: You can indicate additional information in the name of the QuantitativeValue node. * Note 2: You may also link to a QualitativeValue node that provides additional information using valueReference. * Note 3: Note that you can use minValue and maxValue to indicate ranges."""@en ;
rdfs:label "trailer weight"@en ;
skos:exactMatch "http://auto.schema.org/trailerWeight"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/turningCircle
:turningCircle a owl:DatatypeProperty ;
rdfs:label "Turning circle between kerbs/walls (m)"@en .
#
# http://ontologies.makolab.com/gao/unbrakedTrailerWeight
:unbrakedTrailerWeight a owl:DatatypeProperty ;
rdfs:label "unbraked trailer weight"@en .
#
# http://ontologies.makolab.com/gao/urbanCycleFuelConsumption
:urbanCycleFuelConsumption a owl:DatatypeProperty ;
rdfs:subPropertyOf :fuelConsumption ;
rdfs:label "Urban cycle"@en .
#
# http://ontologies.makolab.com/gao/weightTotal
:weightTotal a owl:DatatypeProperty ;
rdfs:comment """The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.
Typical unit code(s): KGM for kilogram, LBR for pound
Note 1: You can indicate additional information in the name of the QuantitativeValue node.
Note 2: You may also link to a QualitativeValue node that provides additional information using valueReference.
Note 3: Note that you can use minValue and maxValue to indicate ranges."""@en ;
rdfs:label "weight total"@en ;
skos:exactMatch "http://auto.schema.org/weightTotal"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/wheelbase
:wheelbase a owl:DatatypeProperty ;
rdfs:comment """The distance between the centers of the front and rear wheels.
Typical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet"""@en ;
rdfs:label "wheel base"@en ;
skos:exactMatch "http://auto.schema.org/wheelbase"^^xsd:anyURI .
#
#
#
# #################################################################
# #
# # Classes
# #
# #################################################################
#
#
# http://ontologies.makolab.com/gao/ABS
:ABS a owl:Class ;
rdfs:subClassOf :ActiveSafetySystem ;
rdfs:label "anti-lock braking system"@en ;
skos:altLabel "ABS"@en ;
skos:hiddenLabel "anti-lock brake"@en .
#
# http://ontologies.makolab.com/gao/ASR
:ASR a owl:Class ;
rdfs:subClassOf :ActiveSafetySystem ;
rdfs:label "anti-slip regulation"@en ;
skos:altLabel "ASR"@en .
#
# http://ontologies.makolab.com/gao/AUXJack
:AUXJack a owl:Class ;
rdfs:subClassOf :Connecting ;
rdfs:label "AUX jack"@en ;
skos:hiddenLabel "jack"@en .
#
# http://ontologies.makolab.com/gao/ActiveOrPassiveSafetySystem
:ActiveOrPassiveSafetySystem a owl:Class ;
rdfs:subClassOf :Safety ;
rdfs:label "active and passive safety system"@en .
#
# http://ontologies.makolab.com/gao/ActiveSafetySystem
:ActiveSafetySystem a owl:Class ;
rdfs:subClassOf :ActiveOrPassiveSafetySystem ;
rdfs:comment "urządzenie zapobiegające stłuczce lub wypadkowi"@pl ;
rdfs:label "active safety system"@en , "system bezpeczeństwa czynnego"@pl .
#
# http://ontologies.makolab.com/gao/AdjustableDriverSeat
:AdjustableDriverSeat a owl:Class ;
rdfs:subClassOf :Seat ;
rdfs:label "adjustable driver seat"@en .
#
# http://ontologies.makolab.com/gao/AdjustablePassengerSeat
:AdjustablePassengerSeat a owl:Class ;
rdfs:subClassOf :PassengerSeat ;
rdfs:label "adjustable passenger seat"@en .
#
# http://ontologies.makolab.com/gao/AdjustableSteeringWheel
:AdjustableSteeringWheel a owl:Class ;
rdfs:subClassOf :SteeringWheel ;
rdfs:label "adjustable steering wheel"@en .
#
# http://ontologies.makolab.com/gao/AirConditioning
:AirConditioning a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "air conditioning"@en .
#
# http://ontologies.makolab.com/gao/AirDeflector
:AirDeflector a owl:Class ;
rdfs:subClassOf :ExternalCarAccessory ;
rdfs:label "air deflector"@en .
#
# http://ontologies.makolab.com/gao/AirQualitySensor
:AirQualitySensor a owl:Class ;
rdfs:subClassOf :Sensor ;
rdfs:label "air quality sensor"@en .
#
# http://ontologies.makolab.com/gao/Airbag
:Airbag a owl:Class ;
rdfs:subClassOf :PassiveSafetySystem ;
rdfs:label "airbag"@en .
#
# http://ontologies.makolab.com/gao/AirconditioningVent
:AirconditioningVent a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "air conditioning vent"@en .
#
# http://ontologies.makolab.com/gao/Alarm
:Alarm a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "alarm"@en .
#
# http://ontologies.makolab.com/gao/AlloyWheel
:AlloyWheel a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "alloy wheel"@en , "felga aluminiowa"@pl .
#
# http://ontologies.makolab.com/gao/AntiDrillDoorLock
:AntiDrillDoorLock a owl:Class ;
rdfs:subClassOf :AntiIntruderSystem ;
rdfs:label "anti-drill door lock"@en .
#
# http://ontologies.makolab.com/gao/AntiDrillgnitionBarrel
:AntiDrillgnitionBarrel a owl:Class ;
rdfs:subClassOf :AntiIntruderSystem ;
rdfs:label "anti-drill ignition barrel"@en .
#
# http://ontologies.makolab.com/gao/AntiIntruderSystem
:AntiIntruderSystem a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "anti-intruder system"@en ;
skos:altLabel "anti-intruder device"@en , "anti-intrusion device"@en .
#
# http://ontologies.makolab.com/gao/AntiSubmarinSystem
:AntiSubmarinSystem a owl:Class ;
rdfs:subClassOf :PassiveSafetySystem ;
rdfs:label "anti-submarin system"@en .
#
# http://ontologies.makolab.com/gao/AntiTheftEmergencySpareWheelCradle
:AntiTheftEmergencySpareWheelCradle a owl:Class ;
rdfs:subClassOf :AntiIntruderSystem ;
rdfs:label "anti-theft emergency spare wheel cradle"@en .
#
# http://ontologies.makolab.com/gao/ArmRest
:ArmRest a owl:Class ;
rdfs:subClassOf :InternalCarAccessory ;
rdfs:label "arm rest"@en .
#
# http://ontologies.makolab.com/gao/Ashtray
:Ashtray a owl:Class ;
rdfs:subClassOf :InternalCarAccessory ;
rdfs:label "ashtray"@en .
#
# http://ontologies.makolab.com/gao/AudioSystemElement
:AudioSystemElement a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "audio system element"@en .
#
# http://ontologies.makolab.com/gao/AutoLightingSensor
:AutoLightingSensor a owl:Class ;
rdfs:subClassOf :Sensor , :VisibilityAndLighting ;
rdfs:label "light sensor"@en .
#
# http://ontologies.makolab.com/gao/AutoRainSensor
:AutoRainSensor a owl:Class ;
rdfs:subClassOf :Sensor , :VisibilityAndLighting ;
rdfs:label "rain sensor"@en .
#
# http://ontologies.makolab.com/gao/AutomaticAirConditioning
:AutomaticAirConditioning a owl:Class ;
rdfs:subClassOf :AirConditioning ;
rdfs:label "automatic air-conditioning"@en .
#
# http://ontologies.makolab.com/gao/AutomaticHazardWarningLight
:AutomaticHazardWarningLight a owl:Class ;
rdfs:subClassOf :ActiveSafetySystem ;
rdfs:label "automatic hazard warning light"@en .
#
# http://ontologies.makolab.com/gao/AutomaticLoweringAirSuspension
:AutomaticLoweringAirSuspension a owl:Class ;
rdfs:subClassOf :Suspension ;
rdfs:label "automatic lowering air suspension"@en .
#
# http://ontologies.makolab.com/gao/AutomaticQuickReleaseTowBar
:AutomaticQuickReleaseTowBar a owl:Class ;
rdfs:subClassOf :TowBar ;
rdfs:label "automatic quick release tow bar"@en .
#
# http://ontologies.makolab.com/gao/AutomaticWindscreenWiper
:AutomaticWindscreenWiper a owl:Class ;
rdfs:subClassOf :Wiper ;
rdfs:label "automatic windscreen wipers"@en .
#
# http://ontologies.makolab.com/gao/BAS
:BAS a owl:Class ;
rdfs:subClassOf :ActiveSafetySystem ;
rdfs:label "brake assist system"@en ;
skos:altLabel "BAS"@en .
#
# http://ontologies.makolab.com/gao/BedMat
:BedMat a owl:Class ;
rdfs:subClassOf :Mat ;
rdfs:label "bed mat"@en .
#
# http://ontologies.makolab.com/gao/BiXenonDirectionalHeadlight
:BiXenonDirectionalHeadlight a owl:Class ;
rdfs:subClassOf :Frontlight ;
rdfs:label "bi-xenon directional headlight"@en .
#
# http://ontologies.makolab.com/gao/BicycleCarrier
:BicycleCarrier a owl:Class ;
rdfs:subClassOf :ExternalCarAccessory ;
rdfs:label "bicycle carrier"@en .
#
# http://ontologies.makolab.com/gao/Blanket
:Blanket a owl:Class ;
rdfs:subClassOf :InternalCarAccessory ;
rdfs:label "blanket"@en .
#
# http://ontologies.makolab.com/gao/Bluetooth
:Bluetooth a owl:Class ;
rdfs:subClassOf :Connecting ;
rdfs:label "bluetooth"@en .
#
# http://ontologies.makolab.com/gao/BodyType
:BodyType a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "body type"@en .
#
# http://ontologies.makolab.com/gao/BootLight
:BootLight a owl:Class ;
rdfs:subClassOf :LightingElement ;
rdfs:label "boot light"@en .
#
# http://ontologies.makolab.com/gao/BottleHolder
:BottleHolder a owl:Class ;
rdfs:subClassOf :StorageArea ;
rdfs:label "bottle holder"@en .
#
# http://ontologies.makolab.com/gao/Brake
:Brake a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "brake"@en .
#
# http://ontologies.makolab.com/gao/Bumper
:Bumper a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "bumper"@en .
#
# http://ontologies.makolab.com/gao/BumperGuard
:BumperGuard a owl:Class ;
rdfs:subClassOf :ExternalCarAccessory ;
rdfs:label "bumper guard"@en .
#
# http://ontologies.makolab.com/gao/BusOrCoach
:BusOrCoach a owl:Class ;
rdfs:subClassOf :Vehicle ;
rdfs:comment "A bus (also omnibus or autobus) is a road vehicle designed to carry passengers. Coaches are luxury busses, usually in service for long distance travel."@en ;
rdfs:label "bus or coach"@en ;
skos:exactMatch "https://schema.org/BusOrCoach"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/ButterflyDoors
:ButterflyDoors a owl:Class ;
rdfs:subClassOf :Door ;
rdfs:label "butterfly doors"@en .
#
# http://ontologies.makolab.com/gao/CD
:CD a owl:Class ;
rdfs:subClassOf :AudioSystemElement ;
rdfs:label "CD"@en .
#
# http://ontologies.makolab.com/gao/Car
:Car a owl:Class ;
rdfs:subClassOf :Vehicle ;
rdfs:comment "Road vehicle with an engine, four wheels, and seats for a small number of people."@en , "This cars' classification is based on the United States National Highway Traffic Safety Administration (NHTSA) classification of cars."@en ;
rdfs:label "car"@en , "samochód"@pl ;
skos:exactMatch "https://schema.org/Car"^^xsd:anyURI ;
skos:hiddenLabel "model"@en .
#
# http://ontologies.makolab.com/gao/CarBattery
:CarBattery a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "car battery"@en .
#
# http://ontologies.makolab.com/gao/CarUsageType
:CarUsageType a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "car usage type"@en ;
skos:exactMatch "http://auto.schema.org/CarUsageType"^^xsd:anyURI .
#
# http://ontologies.makolab.com/gao/CargoAreaLighting
:CargoAreaLighting a owl:Class ;
rdfs:subClassOf :LightingElement ;
rdfs:label "cargo area lighting"@en .
#
# http://ontologies.makolab.com/gao/CargoNet
:CargoNet a owl:Class ;
rdfs:subClassOf :Net ;
rdfs:label "cargo net"@en ;
skos:altLabel "cargo boot net"@en .
#
# http://ontologies.makolab.com/gao/CarpetMat
:CarpetMat a owl:Class ;
rdfs:subClassOf :FloorMat ;
rdfs:label "carpet mat"@en .
#
# http://ontologies.makolab.com/gao/Cassette
:Cassette a owl:Class ;
rdfs:subClassOf :AudioSystemElement ;
rdfs:label "cassette"@en .
#
# http://ontologies.makolab.com/gao/CentralConsole
:CentralConsole a owl:Class ;
rdfs:subClassOf :InteriorPresentation ;
rdfs:label "central console"@en .
#
# http://ontologies.makolab.com/gao/ChildSafety
:ChildSafety a owl:Class ;
rdfs:subClassOf :Safety ;
rdfs:label "child safety"@en .
#
# http://ontologies.makolab.com/gao/CigaretteLighter
:CigaretteLighter a owl:Class ;
rdfs:subClassOf :InternalCarAccessory ;
rdfs:label "cigarette lighter"@en .
#
# http://ontologies.makolab.com/gao/CleanBox
:CleanBox a owl:Class ;
rdfs:subClassOf :InternalCarAccessory ;
rdfs:label "clean box"@en .
#
# http://ontologies.makolab.com/gao/CoatHanger
:CoatHanger a owl:Class ;
rdfs:subClassOf :InternalCarAccessory ;
rdfs:label "coat hanger"@en .
#
# http://ontologies.makolab.com/gao/Color
:Color a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "colour"@en ;
skos:altLabel "color"@en ;
skos:hiddenLabel "paint"@en .
#
# http://ontologies.makolab.com/gao/CommercialVehicle
:CommercialVehicle a owl:Class ;
rdfs:subClassOf :Car ;
rdfs:label "commercial vehicle"@en ;
skos:altLabel "VAN"@en .
#
# http://ontologies.makolab.com/gao/CompleteTowBar
:CompleteTowBar a owl:Class ;
rdfs:subClassOf :SwanNeckTowBar ;
rdfs:label "complete tow bar"@en .
#
# http://ontologies.makolab.com/gao/Connecting
:Connecting a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "connecting"@en ;
skos:hiddenLabel "multimedia"@en .
#
# http://ontologies.makolab.com/gao/CorneringFogLight
:CorneringFogLight a owl:Class ;
rdfs:subClassOf :Foglamp ;
rdfs:label "cornering fog light "@en .
#
# http://ontologies.makolab.com/gao/CourtesyLight
:CourtesyLight a owl:Class ;
rdfs:subClassOf :Frontlight ;
rdfs:label "courtesy light"@en .
#
# http://ontologies.makolab.com/gao/CruiseControl
:CruiseControl a owl:Class ;
rdfs:subClassOf :ActiveSafetySystem ;
rdfs:label "cruise control"@en ;
skos:altLabel "autocruise"@en , "speed control"@en , "speed limiter"@en , "tempomat"@pl .
#
# http://ontologies.makolab.com/gao/CupChassis
:CupChassis a owl:Class ;
rdfs:subClassOf :InternalCarAccessory ;
rdfs:label "cup chassis"@en .
#
# http://ontologies.makolab.com/gao/CupHolder
:CupHolder a owl:Class ;
rdfs:subClassOf :StorageArea ;
rdfs:label "cup holder"@en .
#
# http://ontologies.makolab.com/gao/DSC
:DSC a owl:Class ;
rdfs:subClassOf :ActiveSafetySystem ;
rdfs:label "directional stability control"@en ;
skos:altLabel "DSC"@en .
#
# http://ontologies.makolab.com/gao/DashboardIllumination
:DashboardIllumination a owl:Class ;
rdfs:subClassOf :LightingElement ;
rdfs:label "dashboard illumination"@en .
#
# http://ontologies.makolab.com/gao/DashboardOval
:DashboardOval a owl:Class ;
rdfs:subClassOf :InteriorPresentation ;
rdfs:label "dashboard oval"@en .
#
# http://ontologies.makolab.com/gao/DaytimeRunningLight
:DaytimeRunningLight a owl:Class ;
rdfs:subClassOf :LightingElement ;
rdfs:label "daytime running light"@en .
#
# http://ontologies.makolab.com/gao/DecorativeStrip
:DecorativeStrip a owl:Class ;
rdfs:subClassOf :InteriorPresentation ;
rdfs:label "decorative strip"@en .
#
# http://ontologies.makolab.com/gao/DefoggingRearWindow
:DefoggingRearWindow a owl:Class ;
rdfs:subClassOf :RearWindow ;
rdfs:label "defogging rear window"@en .
#
# http://ontologies.makolab.com/gao/DefrostFunction
:DefrostFunction a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "defrost function"@en .
#
# http://ontologies.makolab.com/gao/DefrostingRearWindow
:DefrostingRearWindow a owl:Class ;
rdfs:subClassOf :RearWindow ;
rdfs:label "defrosting rear window"@en .
#
# http://ontologies.makolab.com/gao/DigitalSpeedometer
:DigitalSpeedometer a owl:Class ;
rdfs:subClassOf :Connecting ;
rdfs:label "digital speedometer"@en .
#
# http://ontologies.makolab.com/gao/DisplayMultifunction
:DisplayMultifunction a owl:Class ;
rdfs:subClassOf :Connecting ;
rdfs:label "display multifunction"@en .
#
# http://ontologies.makolab.com/gao/Door
:Door a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "door"@en .
#
# http://ontologies.makolab.com/gao/DoorHandle
:DoorHandle a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "door handle"@en .
#
# http://ontologies.makolab.com/gao/DoorLocking
:DoorLocking a owl:Class ;
rdfs:subClassOf :KeySystem ;
rdfs:label "door locking"@en .
#
# http://ontologies.makolab.com/gao/DoorMirror
:DoorMirror a owl:Class ;
rdfs:subClassOf :Mirror ;
rdfs:label "door mirror"@en ;
skos:altLabel "fender mirror"@en , "side view mirror"@en , "wing mirror"@en .
#
# http://ontologies.makolab.com/gao/DoorMirrorCap
:DoorMirrorCap a owl:Class ;
rdfs:subClassOf :ExternalCarAccessory ;
rdfs:label "door mirror cap"@en .
#
# http://ontologies.makolab.com/gao/DoorOpenIndicator
:DoorOpenIndicator a owl:Class ;
rdfs:subClassOf :KeySystem ;
rdfs:label "door open indicator"@en .
#
# http://ontologies.makolab.com/gao/DoorSill
:DoorSill a owl:Class ;
rdfs:subClassOf :Sill ;
rdfs:label "door sill"@en .
#
# http://ontologies.makolab.com/gao/DoorStriping
:DoorStriping a owl:Class ;
rdfs:subClassOf :ExteriorAppearance ;
rdfs:label "door striping"@en .
#
# http://ontologies.makolab.com/gao/DrinkHolder
:DrinkHolder a owl:Class ;
rdfs:subClassOf :StorageArea ;
rdfs:label "drink holder"@en .
#
# http://ontologies.makolab.com/gao/DriverAirBag
:DriverAirBag a owl:Class ;
rdfs:subClassOf :Airbag ;
rdfs:label "driver airbag"@en .
#
# http://ontologies.makolab.com/gao/DualHorn
:DualHorn a owl:Class ;
rdfs:subClassOf :ElementOfCarEquipement ;
rdfs:label "dual horn"@en .
#
# http://ontologies.makolab.com/gao/EBA
:EBA a owl:Class ;
rdfs:subClassOf :ActiveSafetySystem ;
rdfs:label "emergency brake assist"@en ;
skos:altLabel "EBA"@en .
#
# http://ontologies.makolab.com/gao/EBD
:EBD a owl:Class ;
rdfs:subClassOf :ActiveSafetySystem ;
rdfs:label "electronic brake distribution"@en ;
skos:altLabel "EBD"@en .
#
# http://ontologies.makolab.com/gao/EBV
:EBV a owl:Class ;
rdfs:subClassOf :ActiveSafetySystem ;
rdfs:label "electronic brakeforce distribution"@en ;
skos:altLabel "EBV"@en .
#
# http://ontologies.makolab.com/gao/ESC
:ESC a owl:Class ;
rdfs:subClassOf :ActiveSafetySystem ;
rdfs:label "electronic stability control"@en ;
skos:altLabel "ESC"@en .
#
# http://ontologies.makolab.com/gao/ESP
:ESP a owl:Class ;
rdfs:subClassOf :ActiveSafetySystem ;
rdfs:label "electronic stability programme"@en ;
skos:altLabel "ESP"@en .
#
# http://ontologies.makolab.com/gao/ElectricCar
:ElectricCar a owl:Class ;
rdfs:subClassOf :Car ;
rdfs:label "electric car"@en ;
skos:hiddenLabel "electric"@en .
#
# http://ontologies.makolab.com/gao/ElectricLock
:ElectricLock a owl:Class ;
rdfs:subClassOf :KeySystem ;
rdfs:label "electric lock"@en .
#
# http://ontologies.makolab.com/gao/ElectricRearWindow
:ElectricRearWindow a owl:Class ;
rdfs:subClassOf :RearWindow ;
rdfs:label "electric rear window"@en .
#
# http://ontologies.makolab.com/gao/ElectricSunroof
:ElectricSunroof a owl:Class ;
rdfs:subClassOf :Roof ;
rdfs:label "electric sunroof"@en .
#
# http://ontologies.makolab.com/gao/ElectricWindow
:ElectricWindow a owl:Class ;
rdfs:subClassOf :Window ;
rdfs:label "electric window"@en .
#
# http://ontologies.makolab.com/gao/ElectricWingMirror
:ElectricWingMirror a owl:Class ;
rdfs:subClassOf :DoorMirror ;
rdfs:label "electric wing mirror"@en ;