saref4auto.ttl 74.2 KB
Newer Older
@prefix : <https://saref.etsi.org/saref4auto/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix saref: <https://saref.etsi.org/core/> .
@prefix s4city: <https://saref.etsi.org/saref4city/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix s4syst: <https://saref.etsi.org/saref4syst/> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix geosp: <http://www.opengis.net/ont/geosparql#> .
@prefix sf: <http://www.opengis.net/ont/sf#> .
@prefix s4auto: <https://saref.etsi.org/saref4auto/> .
@base <https://saref.etsi.org/saref4auto> .


<https://saref.etsi.org/saref4auto> rdf:type owl:Ontology .

#################################################################
#    Object Properties
#################################################################

###  http://www.opengis.net/ont/geosparql#hasGeometry
<http://www.opengis.net/ont/geosparql#hasGeometry> rdf:type owl:ObjectProperty ;
                                                   rdfs:subPropertyOf owl:topObjectProperty ;
                                                   rdfs:domain <http://www.opengis.net/ont/geosparql#Feature> ;
                                                   rdfs:range <http://www.opengis.net/ont/geosparql#Geometry> .


###  http://www.opengis.net/ont/geosparql#sfContains
<http://www.opengis.net/ont/geosparql#sfContains> rdf:type owl:ObjectProperty ;
                                                  rdfs:subPropertyOf owl:topObjectProperty .


###  http://www.w3.org/2002/07/owl#topObjectProperty
owl:topObjectProperty rdfs:range <https://saref.etsi.org/core/State> .


###  http://www.w3.org/2003/01/geo/wgs84_pos#location
<http://www.w3.org/2003/01/geo/wgs84_pos#location> rdf:type owl:ObjectProperty ;
                                                   rdfs:subPropertyOf owl:topObjectProperty ;
                                                   rdfs:domain <http://www.opengis.net/ont/geosparql#SpatialThing> ;
                                                   rdfs:range [ rdf:type owl:Restriction ;
                                                                owl:onProperty <http://www.w3.org/2003/01/geo/wgs84_pos#location> ;
                                                                owl:someValuesFrom <http://www.w3.org/2003/01/geo/wgs84_pos#Point>
                                                              ] .


###  https://saref.etsi.org/core/hasState
<https://saref.etsi.org/core/hasState> rdf:type owl:ObjectProperty ;
                                        rdfs:subPropertyOf owl:topObjectProperty ;
                                        rdfs:domain <https://saref.etsi.org/core/Device> .


###  https://saref.etsi.org/core/makesMeasurement
<https://saref.etsi.org/core/makesMeasurement> rdf:type owl:ObjectProperty ;
                                                rdfs:subPropertyOf owl:topObjectProperty ;
                                                owl:inverseOf <https://saref.etsi.org/core/measurementMadeBy> ;
                                                rdfs:label "makesMeasurement"@en .


###  https://saref.etsi.org/core/measurementMadeBy
<https://saref.etsi.org/core/measurementMadeBy> rdf:type owl:ObjectProperty ;
                                                 rdfs:subPropertyOf owl:topObjectProperty ;
                                                 rdfs:label "measurementMadeBy"@en .


###  https://saref.etsi.org/core/measuresProperty
<https://saref.etsi.org/core/measuresProperty> rdf:type owl:ObjectProperty ;
                                                rdfs:subPropertyOf owl:topObjectProperty ;
                                                rdfs:domain <https://saref.etsi.org/core/Device> ;
                                                rdfs:range <https://saref.etsi.org/core/Property> .


###  https://saref.etsi.org/saref4auto/hasShape
:hasShape rdf:type owl:ObjectProperty .


###  https://saref.etsi.org/saref4auto/hasMovement
:hasMovement rdf:type owl:ObjectProperty .


###  https://saref.etsi.org/saref4auto/consistsOf
:consistsOf rdf:type owl:ObjectProperty ;
            rdfs:label "consistsOf"@en .


###  https://saref.etsi.org/saref4auto/detectsPosition
:detectsPosition rdf:type owl:ObjectProperty ;
                 rdfs:subPropertyOf owl:topObjectProperty .


###  https://saref.etsi.org/saref4auto/hasAutomationLevel
:hasAutomationLevel rdf:type owl:ObjectProperty ;
                    rdfs:subPropertyOf owl:topObjectProperty .


###  https://saref.etsi.org/saref4auto/hasBrakeCapacity
:hasBrakeCapacity rdf:type owl:ObjectProperty ;
                  rdfs:subPropertyOf owl:topObjectProperty ;
                  rdfs:range :BrakeCapacity .


###  https://saref.etsi.org/saref4auto/hasDestination
:hasDestination rdf:type owl:ObjectProperty ;
                rdfs:subPropertyOf owl:topObjectProperty ;
                rdfs:comment "A relation that defines the destination of an automotive object. For example, in aplatoon, the current platoon leader defines the platoon destination. Following vehicles will share (partially) the route of the leader and can, therefore, have different final destinations." .


###  https://saref.etsi.org/saref4auto/hasEstimatedRendezvousLocation
:hasEstimatedRendezvousLocation rdf:type owl:ObjectProperty ;
                                rdfs:subPropertyOf owl:topObjectProperty ;
                                rdfs:range :RendezvousLocation ;
                                rdfs:comment "A relation to express that, during the forming state, a vehicle member of a platoon is given an estimated rendezvous location for joining" .


###  https://saref.etsi.org/saref4auto/hasHeight
:hasHeight rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf owl:topObjectProperty .


###  https://saref.etsi.org/saref4auto/hasIdentifier
:hasIdentifier rdf:type owl:ObjectProperty ;
               rdfs:subPropertyOf owl:topObjectProperty ;
               rdfs:range <https://saref.etsi.org/saref4auto/Identifier> ;
               rdfs:comment "relation between an entity and its identifier"@en ;
               rdfs:label "hasIdentifier"@en .


###  https://saref.etsi.org/saref4auto/hasLength
:hasLength rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf owl:topObjectProperty .


###  https://saref.etsi.org/saref4auto/hasMaxSize
:hasMaxSize rdf:type owl:ObjectProperty ;
            rdfs:comment "A relation to express that a platoon can have a maximum size, namely the maximum number of vehicles allowed to join the platoon due to safety requirements" .


###  https://saref.etsi.org/saref4auto/hasMember
:hasMember rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf owl:topObjectProperty ;
           rdfs:label "hasMember"@en .


###  https://saref.etsi.org/saref4auto/hasMovement
:hasMovement rdf:type owl:ObjectProperty ;
             rdfs:label "hasMovement" .


###  https://saref.etsi.org/saref4auto/hasOpeningTimeAvailability
:hasOpeningTimeAvailability rdf:type owl:ObjectProperty .


###  https://saref.etsi.org/saref4auto/hasOrigin
:hasOrigin rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf owl:topObjectProperty .


###  https://saref.etsi.org/saref4auto/hasPosition
:hasPosition rdf:type owl:ObjectProperty ;
             rdfs:subPropertyOf owl:topObjectProperty ;
             rdfs:range <https://saref.etsi.org/saref4auto/RelativePosition> .


###  https://saref.etsi.org/saref4auto/hasRole
:hasRole rdf:type owl:ObjectProperty ;
         rdfs:subPropertyOf owl:topObjectProperty ;
         rdfs:range <https://saref.etsi.org/saref4auto/Role> .


###  https://saref.etsi.org/saref4auto/hasRoute
:hasRoute rdf:type owl:ObjectProperty ;
          rdfs:subPropertyOf owl:topObjectProperty .


###  https://saref.etsi.org/saref4auto/hasShape
:hasShape rdf:type owl:ObjectProperty ;
          rdfs:label "hasShape" .


###  https://saref.etsi.org/saref4auto/hasSize
:hasSize rdf:type owl:ObjectProperty ;
         rdfs:subPropertyOf owl:topObjectProperty .


###  https://saref.etsi.org/saref4auto/hasWidth
:hasWidth rdf:type owl:ObjectProperty ;
          rdfs:subPropertyOf owl:topObjectProperty .


###  https://saref.etsi.org/saref4auto/isCollectionOf
:isCollectionOf rdf:type owl:ObjectProperty ;
                rdfs:subPropertyOf owl:topObjectProperty .


###  https://saref.etsi.org/saref4auto/isMeasuredIn
:isMeasuredIn rdf:type owl:ObjectProperty .


###  https://saref.etsi.org/saref4auto/isMemberOf
:isMemberOf rdf:type owl:ObjectProperty ;
            rdfs:subPropertyOf owl:topObjectProperty ;
            rdfs:label "isMemberOf"@en .


###  https://saref.etsi.org/saref4auto/isPartOf
:isPartOf rdf:type owl:ObjectProperty ;
          rdfs:domain <https://saref.etsi.org/saref4auto/Vehicle> ;
          rdfs:label "isPartOf"@en .


###  https://saref.etsi.org/saref4auto/usesMeasurement
:usesMeasurement rdf:type owl:ObjectProperty .


###  https://saref.etsi.org/saref4syst/hasSubSystem
<https://saref.etsi.org/saref4syst/hasSubSystem> rdf:type owl:ObjectProperty ;
                                                 rdfs:subPropertyOf owl:topObjectProperty ;
                                                 owl:inverseOf <https://saref.etsi.org/saref4syst/subSystemOf> .


###  https://saref.etsi.org/saref4syst/subSystemOf
<https://saref.etsi.org/saref4syst/subSystemOf> rdf:type owl:ObjectProperty ;
                                                rdfs:subPropertyOf owl:topObjectProperty .


###  https://saref.etsi.org/saref4auto/hasConfidence
<https://saref.etsi.org/saref4auto/hasConfidence> rdf:type owl:ObjectProperty ;
                                                 rdfs:subPropertyOf owl:topObjectProperty ;
                                                 owl:inverseOf <https://saref.etsi.org/saref4auto/isConfidenceOf> ;
                                                 rdfs:range <https://saref.etsi.org/saref4auto/Confidence> .


###  https://saref.etsi.org/saref4auto/isConfidenceOf
<https://saref.etsi.org/saref4auto/isConfidenceOf> rdf:type owl:ObjectProperty ;
                                                  rdfs:subPropertyOf owl:topObjectProperty .


#################################################################
#    Data properties
#################################################################

###  https://etsi.saref.org/core/hasTimestamp
<https://etsi.saref.org/core/hasTimestamp> rdf:type owl:DatatypeProperty ;
                                            rdfs:subPropertyOf owl:topDataProperty .


###  https://saref.etsi.org/core/hasValue
<https://saref.etsi.org/core/hasValue> rdf:type owl:DatatypeProperty ;
                                        rdfs:subPropertyOf owl:topDataProperty .


###  https://saref.etsi.org/saref4auto/hasConfidenceValue
:hasConfidenceValue rdf:type owl:DatatypeProperty ;
                         rdfs:subPropertyOf owl:topDataProperty .


###  https://saref.etsi.org/saref4auto/hasDescriptionName
:hasDescriptionName rdf:type owl:DatatypeProperty .


###  https://saref.etsi.org/saref4auto/hasEstimatedJoiningTime
:hasEstimatedJoiningTime rdf:type owl:DatatypeProperty ;
                         rdfs:range xsd:dateTime ;
                         rdfs:comment "A relation to express that, during the forming state, a vehicle member of a platoon is given an estimated time for joining" .


###  https://saref.etsi.org/saref4auto/hasIDValue
:hasIDValue rdf:type owl:DatatypeProperty ;
            rdfs:subPropertyOf owl:topDataProperty ;
            rdfs:label "saref:hasIDValue"@en .


###  https://saref.etsi.org/saref4auto/hasPlatoonIndex
:hasPlatoonIndex rdf:type owl:DatatypeProperty ;
                 rdfs:subPropertyOf owl:topDataProperty ;
                 rdfs:range xsd:int .


###  https://saref.etsi.org/saref4auto/hasRole
:hasRole rdf:type owl:DatatypeProperty ;
         rdfs:subPropertyOf owl:topDataProperty .


###  https://saref.etsi.org/saref4auto/hasTimestamp
:hasTimestamp rdf:type owl:DatatypeProperty ;
              rdfs:subPropertyOf owl:topDataProperty ;
              rdfs:range xsd:dateTime .


###  https://saref.etsi.org/saref4auto/hasCoordinateX
<https://saref.etsi.org/saref4auto/hasCoordinateX> rdf:type owl:DatatypeProperty ;
                                                  rdfs:subPropertyOf owl:topDataProperty .


###  https://saref.etsi.org/saref4auto/hasCoordinateY
<https://saref.etsi.org/saref4auto/hasCoordinateY> rdf:type owl:DatatypeProperty ;
                                                  rdfs:subPropertyOf owl:topDataProperty .


###  https://saref.etsi.org/saref4auto/hasCoordinateZ
<https://saref.etsi.org/saref4auto/hasCoordinateZ> rdf:type owl:DatatypeProperty ;
                                                  rdfs:subPropertyOf owl:topDataProperty .


#################################################################
#    Classes
#################################################################

###  http://www.opengis.net/ont/geosparql#AbsolutePosition
<http://www.opengis.net/ont/geosparql#AbsolutePosition> rdf:type owl:Class ;
                                                        rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ,
                                                                        :Position ;
                                                        rdfs:label """AbsolutePosition
"""@en .


###  http://www.opengis.net/ont/geosparql#Feature
<http://www.opengis.net/ont/geosparql#Feature> rdf:type owl:Class ;
                                               rdfs:subClassOf <http://www.opengis.net/ont/geosparql#SpatialThing> ,
                                                               [ rdf:type owl:Restriction ;
                                                                 owl:onProperty <http://www.opengis.net/ont/geosparql#hasGeometry> ;
                                                                 owl:someValuesFrom <http://www.opengis.net/ont/geosparql#Geometry>
                                                               ] ;
                                               rdfs:label "Feature"@en .


###  http://www.opengis.net/ont/geosparql#Geometry
<http://www.opengis.net/ont/geosparql#Geometry> rdf:type owl:Class ;
                                                rdfs:subClassOf <http://www.opengis.net/ont/geosparql#SpatialThing> ;
                                                rdfs:label "Geometry"@en .


###  http://www.opengis.net/ont/geosparql#SpatialThing
<http://www.opengis.net/ont/geosparql#SpatialThing> rdf:type owl:Class ;
                                                    rdfs:label "SpatialObject"@en .


###  http://www.w3.org/2003/01/geo/wgs84_pos#Point
<http://www.w3.org/2003/01/geo/wgs84_pos#Point> rdf:type owl:Class ;
                                                rdfs:subClassOf <http://www.opengis.net/ont/geosparql#Geometry> ;
                                                rdfs:label "Point"@en .


###  http://www.w3.org/2006/time#Instant
<http://www.w3.org/2006/time#Instant> rdf:type owl:Class ;
                                      rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
                                      rdfs:label "Instant"@en .


###  http://www.w3.org/2006/time#Interval
<http://www.w3.org/2006/time#Interval> rdf:type owl:Class ;
                                       rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
                                       rdfs:label "Interval"@en .


###  http://www.w3.org/2006/time#TemporalEntity
<http://www.w3.org/2006/time#TemporalEntity> rdf:type owl:Class ;
                                             rdfs:label "TemporaryEntity"@en .


###  https://saref.etsi.org/core/Actuator
<https://saref.etsi.org/core/Actuator> rdf:type owl:Class ;
                                        rdfs:subClassOf <https://saref.etsi.org/core/Device> ;
                                        rdfs:label "Actuator"@en .


###  https://saref.etsi.org/core/Device
<https://saref.etsi.org/core/Device> rdf:type owl:Class ;
                                      rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                        owl:onProperty <https://saref.etsi.org/core/makesMeasurement> ;
                                                        owl:someValuesFrom <https://saref.etsi.org/core/Measurement>
                                                      ] ;
                                      rdfs:label "Device"@en .


###  https://saref.etsi.org/core/FeatureOfInterest
<https://saref.etsi.org/core/FeatureOfInterest> rdf:type owl:Class ;
                                                 rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                                   owl:onProperty :hasIdentifier ;
                                                                   owl:someValuesFrom <https://saref.etsi.org/saref4auto/Identifier>
                                                                 ] ;
                                                 rdfs:label "FeatureOfInterest"@en .


###  https://saref.etsi.org/core/Measurement
<https://saref.etsi.org/core/Measurement> rdf:type owl:Class ;
                                           rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                             owl:onProperty <https://saref.etsi.org/core/measurementMadeBy> ;
                                                             owl:someValuesFrom <https://saref.etsi.org/core/Device>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty <https://saref.etsi.org/saref4auto/hasConfidence> ;
                                                             owl:someValuesFrom <https://saref.etsi.org/saref4auto/Confidence>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty <https://etsi.saref.org/core/hasTimestamp> ;
                                                             owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                                             owl:onDataRange xsd:dateTime
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty <https://saref.etsi.org/core/hasValue> ;
                                                             owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                                             owl:onDataRange xsd:nonNegativeInteger
                                                           ] ;
                                           rdfs:label "Measurement"@en .


###  https://saref.etsi.org/core/Property
<https://saref.etsi.org/core/Property> rdf:type owl:Class ;
                                        rdfs:label "Property"@en .


###  https://saref.etsi.org/core/Sensor
<https://saref.etsi.org/core/Sensor> rdf:type owl:Class ;
                                      rdfs:subClassOf <https://saref.etsi.org/core/Device> ;
                                      rdfs:label "Sensor"@en .


###  https://saref.etsi.org/core/State
<https://saref.etsi.org/core/State> rdf:type owl:Class ;
                                     rdfs:label "State"@en .


###  https://saref.etsi.org/core/UnitOfMeasure
<https://saref.etsi.org/core/UnitOfMeasure> rdf:type owl:Class ;
                                             rdfs:label "UnitOfMeasure"@en .


###  https://saref.etsi.org/saref4auto/AbsoluteSpeed
:AbsoluteSpeed rdf:type owl:Class ;
               rdfs:subClassOf :Speed ;
               rdfs:label "AbsoluteSpeed"@en .


###  https://saref.etsi.org/saref4auto/Acceleration
:Acceleration rdf:type owl:Class ;
              rdfs:subClassOf <https://saref.etsi.org/core/Property> ;
              rdfs:label "Acceleration"@en .


###  https://saref.etsi.org/saref4auto/AccelerationConfidence
:AccelerationConfidence rdf:type owl:Class ;
                        rdfs:subClassOf <https://saref.etsi.org/saref4auto/Confidence> ,
                                        [ rdf:type owl:Restriction ;
                                          owl:onProperty <https://saref.etsi.org/saref4auto/hasConfidenceValue> ;
                                          owl:someValuesFrom xsd:int
                                        ] ;
                        rdfs:comment "absolute accuracy of a reported vehicle acceleration value with a predefined confidence level (e.g. 95 %)"^^xsd:string ;
                        rdfs:label "AccelerationConfidence" .


###  https://saref.etsi.org/saref4auto/Adress
:Adress rdf:type owl:Class ;
        rdfs:comment "A class to define common information related to an address. "@en ;
        rdfs:label "Adress"@en .


###  https://saref.etsi.org/saref4auto/AngularDirection
:AngularDirection rdf:type owl:Class ;
                  rdfs:subClassOf :Heading ;
                  rdfs:label "AngularDirection"@en .


###  https://saref.etsi.org/saref4auto/AutomationLevel
:AutomationLevel rdf:type owl:Class ;
                 rdfs:comment "The level of automation a platoon of vehicles or a singular vehicle"@en ;
                 rdfs:label "AutomationLevel"@en .


###  https://saref.etsi.org/saref4auto/AutomotiveObject
:AutomotiveObject rdf:type owl:Class ;
                  rdfs:comment "The main objects of interest in the automotive domain."@en ;
                  rdfs:label "AutomotiveObject"@en .


###  https://saref.etsi.org/saref4auto/BrakeCapacity
:BrakeCapacity rdf:type owl:Class ;
               rdfs:subClassOf <https://saref.etsi.org/core/Property> ;
               rdfs:label "BrakeCapacity"@en .


###  https://saref.etsi.org/saref4auto/ElectricChargingParkingSpot
:ElectricChargingParkingSpot rdf:type owl:Class ;
                             rdfs:subClassOf :ParkingSpot ;
                             rdfs:label "ElectricChargingParkingSpot"@en .


###  https://saref.etsi.org/saref4auto/EndPoint
:EndPoint rdf:type owl:Class ;
          rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
          rdfs:label "EndPoint"@en .


###  https://saref.etsi.org/saref4auto/Heading
:Heading rdf:type owl:Class ;
         rdfs:subClassOf <https://saref.etsi.org/core/Property> ;
         rdfs:label "Heading"@en .


###  https://saref.etsi.org/saref4auto/Height
:Height rdf:type owl:Class ;
        rdfs:subClassOf <https://saref.etsi.org/core/Property> ;
        rdfs:label "Height"@en .


###  https://saref.etsi.org/saref4auto/LateralAcceleration
:LateralAcceleration rdf:type owl:Class ;
                     rdfs:subClassOf :Acceleration .


###  https://saref.etsi.org/saref4auto/Length
:Length rdf:type owl:Class ;
        rdfs:subClassOf <https://saref.etsi.org/core/Property> ;
        rdfs:label "Length"@en .


###  https://saref.etsi.org/saref4auto/LongitudinalAcceleration
:LongitudinalAcceleration rdf:type owl:Class ;
                          rdfs:subClassOf :Acceleration .


###  https://saref.etsi.org/saref4auto/ParkingSpot
:ParkingSpot rdf:type owl:Class ;
             rdfs:subClassOf <http://www.opengis.net/ont/geosparql#Feature> ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty <https://saref.etsi.org/core/hasState> ;
                               owl:someValuesFrom :ParkingSpotState
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :hasHeight ;
                               owl:someValuesFrom :Height
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :hasIdentifier ;
                               owl:someValuesFrom <https://saref.etsi.org/saref4auto/Identifier>
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :hasLength ;
                               owl:someValuesFrom :Length
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :hasOpeningTimeAvailability ;
                               owl:someValuesFrom <http://www.w3.org/2006/time#TemporalEntity>
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :hasWidth ;
                               owl:someValuesFrom :Width
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :hasDescriptionName ;
                               owl:someValuesFrom xsd:string
                             ] ;
             rdfs:comment "A location that is designated for parking. A parking spot has a geometry defining the parking area boundaries and its centre point" ;
             rdfs:label "ParkingSpot"@en .


###  https://saref.etsi.org/saref4auto/ParkingSpotState
:ParkingSpotState rdf:type owl:Class ;
                  rdfs:subClassOf <https://saref.etsi.org/core/State> ;
                  rdfs:comment "A parking spot has a state. Possible values for parking spot state are Free, occupied, reserved, closed, charging" ;
                  rdfs:label "ParkingSpotState"@en .


###  https://saref.etsi.org/saref4auto/ParkingVehicleState
:ParkingVehicleState rdf:type owl:Class ;
                     rdfs:subClassOf <https://saref.etsi.org/core/State> ;
                     rdfs:comment "A vehicle can be found at different states (or parking phases) during parking . Possible values for parking state (or parking phase) of a vehicle are: At drop-off spot, at pick-up spot, driving to parking spot, driving to pick up spot, parking, parked, charging." ;
                     rdfs:label "ParkingVehicleState"@en .


###  https://saref.etsi.org/saref4auto/PlatoonAutomationLevel
:PlatoonAutomationLevel rdf:type owl:Class ;
                        rdfs:subClassOf :AutomationLevel ;
                        rdfs:comment """A vehicle has a level of automation for platooning. defined? 
For example, in the ENSEMBLE project  there are three levels of automation for platooning being defined: Level A, Level B, Level C. Level C represents the highest level of automation for platooning in terms of longitudinal and lateral control, shortest time gap supported, wider range of situations handled and support for merging of entire platoons.""" ;
                        rdfs:label "PlatoonAutomationLevel"@en .


###  https://saref.etsi.org/saref4auto/PlatoonPosition
:PlatoonPosition rdf:type owl:Class ;
                 rdfs:subClassOf :Position ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty :hasPlatoonIndex ;
                                   owl:someValuesFrom xsd:dateTime
                                 ] ;
                 rdfs:comment "A vehicle member of a platoon has a platoon position that is defined as the index of the vehicle in the platoon starting from zero (leader) up to N (trailing vehicle)." ;
                 rdfs:label "PlatoonPosition"@en .


###  https://saref.etsi.org/saref4auto/PlatoonState
:PlatoonState rdf:type owl:Class ;
              rdfs:subClassOf <https://saref.etsi.org/core/State> ,
                              [ rdf:type owl:Restriction ;
                                owl:onProperty :hasTimestamp ;
                                owl:someValuesFrom xsd:dateTime
                              ] ;
              rdfs:comment "Examples of states for a platoon are: unknown, standalone, assembling, platooning, disengaging, etc." ;
              rdfs:label "PlatoonState"@en .


###  https://saref.etsi.org/saref4auto/PlatoonVehicleState
:PlatoonVehicleState rdf:type owl:Class ;
                     rdfs:subClassOf <https://saref.etsi.org/core/State> ,
                                     [ rdf:type owl:Restriction ;
                                       owl:onProperty :hasTimestamp ;
                                       owl:someValuesFrom xsd:dateTime
                                     ] ;
                     rdfs:comment "Examples of states for a vehicle in a platoon are: unknown, standalone, engaging, platooning, disengaging, searching, forming." ;
                     rdfs:label "PlatoonVehicleState"@en .


###  https://saref.etsi.org/saref4auto/Position
:Position rdf:type owl:Class ;
          rdfs:subClassOf <https://saref.etsi.org/core/Property> ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty <https://saref.etsi.org/saref4auto/hasConfidence> ;
                            owl:someValuesFrom <https://saref.etsi.org/saref4auto/Confidence>
                          ] ;
          rdfs:label "Position"@en .


###  https://saref.etsi.org/saref4auto/PositionConfidenceEllipse
:PositionConfidenceEllipse rdf:type owl:Class ;
                           rdfs:subClassOf <https://saref.etsi.org/saref4auto/Confidence> ;
                           rdfs:comment "horizontal position accuracy in a shape of ellipse with a predefined confidence level (e.g. 95 %). The centre of the ellipse shape corresponds to the reference position point for which the position accuracy is evaluated"^^xsd:string ;
                           rdfs:label "PositionConfidenceEllipse" .


###  https://saref.etsi.org/saref4auto/RegularParkingSpot
:RegularParkingSpot rdf:type owl:Class ;
                    rdfs:subClassOf :ParkingSpot ;
                    rdfs:label "RegularParkingSpot"@en .


###  https://saref.etsi.org/saref4auto/RelativeSpeed
:RelativeSpeed rdf:type owl:Class ;
               rdfs:subClassOf :Speed ;
               rdfs:label "RelativeSpeed"@en .


###  https://saref.etsi.org/saref4auto/RendezvousLocation
:RendezvousLocation rdf:type owl:Class ;
                    rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
                    rdfs:comment "It is the estimated location where the vehicle member joins the platoon. It is expressed in global coordinates (lat, long, alt), e.g. according to WGS 84." ;
                    rdfs:label "RendezvousLocation"@en .


###  https://saref.etsi.org/saref4auto/RoadEntity
:RoadEntity rdf:type owl:Class ;
            rdfs:subClassOf [ rdf:type owl:Restriction ;
                              owl:onProperty :RCHFHDeXziCQ60ytoZWbPrS ;
                              owl:someValuesFrom :Shape
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :RDPi0RzXwTRRRRzugSeTSzz ;
                              owl:someValuesFrom <https://saref.etsi.org/saref4auto/Movement>
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :consistsOf ;
                              owl:someValuesFrom <https://saref.etsi.org/saref4auto/CriticalObject>
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :consistsOf ;
                              owl:someValuesFrom <https://saref.etsi.org/saref4auto/NotifiedEvent>
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :consistsOf ;
                              owl:someValuesFrom <https://saref.etsi.org/saref4auto/RoadSideEquipment>
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :consistsOf ;
                              owl:someValuesFrom <https://saref.etsi.org/saref4auto/VulnerableRoadUser>
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :hasHeight ;
                              owl:someValuesFrom :Height
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :hasLength ;
                              owl:someValuesFrom :Length
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :hasPosition ;
                              owl:someValuesFrom <http://www.opengis.net/ont/geosparql#AbsolutePosition>
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :hasPosition ;
                              owl:someValuesFrom :RoadTopologyPosition
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :hasPosition ;
                              owl:someValuesFrom <https://saref.etsi.org/saref4auto/RelativePosition>
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :hasWidth ;
                              owl:someValuesFrom :Width
                            ] ;
            rdfs:comment "Entity present on the road in the neighbouring area of a vehicle"^^xsd:string ;
            rdfs:label "RoadEntity" .


###  https://saref.etsi.org/saref4auto/RoadObject
:RoadObject rdf:type owl:Class ;
            rdfs:subClassOf <https://saref.etsi.org/core/FeatureOfInterest> ;
            rdfs:comment "Road side sensors measure properties (such as speed, position, dimension, direction, etc.) of road objects. Types of relevant road objects are Pedestrian, vehicles, obstacles, traffic signs, etc." ;
            rdfs:label "RoadObject"@en .


###  https://saref.etsi.org/saref4auto/RoadSideActuator
:RoadSideActuator rdf:type owl:Class ;
                  rdfs:subClassOf <https://saref.etsi.org/core/Actuator> ;
                  rdfs:comment "Devices deployed along the road that produce signals based on road side sensor data measurements. Types of road side actuators that are relevant are devices such as traffic light controllers changing from red to green based on detected vehicles." ;
                  rdfs:label """RoadSideActuator
"""@en .


###  https://saref.etsi.org/saref4auto/RoadSideSensor
:RoadSideSensor rdf:type owl:Class ;
                rdfs:subClassOf <https://saref.etsi.org/core/Sensor> ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty <https://saref.etsi.org/core/measuresProperty> ;
                                  owl:someValuesFrom <http://www.opengis.net/ont/geosparql#AbsolutePosition>
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty <https://saref.etsi.org/core/measuresProperty> ;
                                  owl:someValuesFrom :Heading
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty <https://saref.etsi.org/core/measuresProperty> ;
                                  owl:someValuesFrom :Height
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty <https://saref.etsi.org/core/measuresProperty> ;
                                  owl:someValuesFrom :Length
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty <https://saref.etsi.org/core/measuresProperty> ;
                                  owl:someValuesFrom :Speed
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty <https://saref.etsi.org/core/measuresProperty> ;
                                  owl:someValuesFrom :Width
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty <https://saref.etsi.org/core/measuresProperty> ;
                                  owl:someValuesFrom <https://saref.etsi.org/saref4auto/RelativePosition>
                                ] ;
                rdfs:comment "Sensors such as cameras, radars that are deployed along the road (e.g. at intersections and at poles along a highway)" ;
                rdfs:label "RoadSideSensor"@en .


###  https://saref.etsi.org/saref4auto/RoadTopologyPosition
:RoadTopologyPosition rdf:type owl:Class ;
                      rdfs:subClassOf :Position ;
                      rdfs:label "Road Topology Position"@en .


###  https://saref.etsi.org/saref4auto/Route
:Route rdf:type owl:Class ;
       rdfs:subClassOf [ rdf:type owl:Restriction ;
                         owl:onProperty :hasDestination ;
                         owl:someValuesFrom :EndPoint
                       ] ,
                       [ rdf:type owl:Restriction ;
                         owl:onProperty :hasOrigin ;
                         owl:someValuesFrom :StartPoint
                       ] ,
                       [ rdf:type owl:Restriction ;
                         owl:onProperty :isCollectionOf ;
                         owl:someValuesFrom :RoutePoint
                       ] ;
       rdfs:comment "The route of a platoon is defined as the route of the current vehicle leader in the platoon that other follower vehicles (partially) share" ;
       rdfs:label "Route" .


###  https://saref.etsi.org/saref4auto/RoutePoint
:RoutePoint rdf:type owl:Class ;
            rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
            rdfs:label "RoutePoint"@en .


###  https://saref.etsi.org/saref4auto/Shape
:Shape rdf:type owl:Class ;
       rdfs:subClassOf <https://saref.etsi.org/core/Property> ;
       rdfs:comment "overall shape of an entity: Sphere, Torus, Cylinder, Cone, Ellipsoid, Cube, Cuboid, Pyramid, Prism, Multiple shapes"^^xsd:string ;
       rdfs:label "Shape" .


###  https://saref.etsi.org/saref4auto/Size
:Size rdf:type owl:Class ;
      rdfs:comment "A platoon has a size. Tis size is defined as 1) the total number of vehicles currently in the platoon; or 2) Length of the platoon (sum of all vehicles' length + inter-vehicle distance)" ;
      rdfs:label "Size"@en .


###  https://saref.etsi.org/saref4auto/SpecialPermitParkingSpot
:SpecialPermitParkingSpot rdf:type owl:Class ;
                          rdfs:subClassOf :ParkingSpot ;
                          rdfs:comment "Parking spot reserved for special permits (authorities, disabled, blue Zone, resident ...)" ;
                          rdfs:label "SpecialPermitParkingSpot"@en .


###  https://saref.etsi.org/saref4auto/Speed
:Speed rdf:type owl:Class ;
       rdfs:subClassOf <https://saref.etsi.org/core/Property> ;
       rdfs:label "Speed"@en .


###  https://saref.etsi.org/saref4auto/SpeedConfidence
:SpeedConfidence rdf:type owl:Class ;
                 rdfs:subClassOf <https://saref.etsi.org/saref4auto/Confidence> ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty <https://saref.etsi.org/saref4auto/hasConfidenceValue> ;
                                   owl:someValuesFrom xsd:int
                                 ] ;
                 rdfs:comment "absolute accuracy of a speed value in cm/s"^^xsd:string ;
                 rdfs:label "SpeedConfidence" .


###  https://saref.etsi.org/saref4auto/StartPoint
:StartPoint rdf:type owl:Class ;
            rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
            rdfs:label "StartPoint"@en .


###  https://saref.etsi.org/saref4auto/TrafficLight
:TrafficLight rdf:type owl:Class ;
              rdfs:subClassOf :RoadSideActuator ,
                              [ rdf:type owl:Restriction ;
                                owl:onProperty :usesMeasurement ;
                                owl:someValuesFrom <https://saref.etsi.org/core/Measurement>
                              ] ;
              rdfs:comment "A device that automatically operates coloured lights, typically red, amber, and green, for controlling traffic at road junctions, pedestrian crossings, and roundabouts." ;
              rdfs:label "TrafficLight"@en .


###  https://saref.etsi.org/saref4auto/VehicleAutomationLevel
:VehicleAutomationLevel rdf:type owl:Class ;
                        rdfs:subClassOf :AutomationLevel ;
                        rdfs:comment """According to SAE J3016, there are five levels of automation:
- Level 0: No Driving Automation.
- Level 1: Driver assistance.
- Level 2: Partial driving automation.
- Level 3: Conditional driving automation.
- Level 4: High driving automation.
- Level 5: Full Driving automation.""" ;
                        rdfs:label "VehicleAutomationLevel"@en .


###  https://saref.etsi.org/saref4auto/VehicleLight
:VehicleLight rdf:type owl:Class ;
              rdfs:subClassOf <https://saref.etsi.org/core/Actuator> ,
                              [ rdf:type owl:Restriction ;
                                owl:onProperty <https://saref.etsi.org/core/hasState> ;
                                owl:someValuesFrom :VehicleLightState
                              ] ,
                              [ rdf:type owl:Restriction ;
                                owl:onProperty <https://saref.etsi.org/saref4syst/subSystemOf> ;
                                owl:someValuesFrom <https://saref.etsi.org/saref4auto/ElectronicControlUnit>
                              ] ;
              rdfs:label "VehicleLight"@en .


###  https://saref.etsi.org/saref4auto/VehicleLightState
:VehicleLightState rdf:type owl:Class ;
                   rdfs:subClassOf <https://saref.etsi.org/core/State> ;
                   rdfs:label "VehicleLightState"@en .


###  https://saref.etsi.org/saref4auto/Weight
:Weight rdf:type owl:Class ;
        rdfs:subClassOf <https://saref.etsi.org/core/Property> ;
        rdfs:label "Weight"@en .


###  https://saref.etsi.org/saref4auto/Width
:Width rdf:type owl:Class ;
       rdfs:subClassOf <https://saref.etsi.org/core/Property> ;
       rdfs:label "Width"@en .


###  https://saref.etsi.org/saref4auto/YawRate
:YawRate rdf:type owl:Class ;
         rdfs:subClassOf :Heading ;
         rdfs:label "YawRate"@en .


###  https://saref.etsi.org/saref4syst/System
<https://saref.etsi.org/saref4syst/System> rdf:type owl:Class ;
                                           rdfs:label "System"@en .


###  https://saref.etsi.org/saref4auto/Car
<https://saref.etsi.org/saref4auto/Car> rdf:type owl:Class ;
                                       rdfs:subClassOf <https://saref.etsi.org/saref4auto/Vehicle> ;
                                       rdfs:comment "A type of vehicle"@en ;
                                       rdfs:label "Car"@en .


###  https://saref.etsi.org/saref4auto/Confidence
<https://saref.etsi.org/saref4auto/Confidence> rdf:type owl:Class ;
                                              rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                                owl:onProperty :isMeasuredIn ;
                                                                owl:someValuesFrom <https://saref.etsi.org/core/UnitOfMeasure>
                                                              ] ,
                                                              [ rdf:type owl:Restriction ;
                                                                owl:onProperty :hasConfidenceValue ;
                                                                owl:someValuesFrom xsd:int
                                                              ]                                                             
                                                              ;
                                              rdfs:label "Confidence"@en .


###  https://saref.etsi.org/saref4auto/CriticalObject
<https://saref.etsi.org/saref4auto/CriticalObject> rdf:type owl:Class ;
                                                  rdfs:subClassOf owl:Thing ;
                                                  rdfs:comment "critical objects are small object, medium object, large object"^^xsd:string ;
                                                  rdfs:label "CriticalObject"@en .


###  https://saref.etsi.org/saref4auto/ElectronicControlUnit
<https://saref.etsi.org/saref4auto/ElectronicControlUnit> rdf:type owl:Class ;
                                                         rdfs:subClassOf <https://saref.etsi.org/core/Device> ,
                                                                         <https://saref.etsi.org/saref4syst/System> ,
                                                                         [ rdf:type owl:Restriction ;
                                                                           owl:onProperty <https://saref.etsi.org/core/measuresProperty> ;
                                                                           owl:someValuesFrom :Acceleration
                                                                         ] ,
                                                                         [ rdf:type owl:Restriction ;
                                                                           owl:onProperty <https://saref.etsi.org/core/measuresProperty> ;
                                                                           owl:someValuesFrom :Heading
                                                                         ] ,
                                                                         [ rdf:type owl:Restriction ;
                                                                           owl:onProperty <https://saref.etsi.org/core/measuresProperty> ;
                                                                           owl:someValuesFrom :Position
                                                                         ] ,
                                                                         [ rdf:type owl:Restriction ;
                                                                           owl:onProperty <https://saref.etsi.org/core/measuresProperty> ;
                                                                           owl:someValuesFrom :Speed
                                                                         ] ,
                                                                         [ rdf:type owl:Restriction ;
                                                                           owl:onProperty <https://saref.etsi.org/saref4syst/hasSubSystem> ;
                                                                           owl:someValuesFrom :VehicleLight
                                                                         ] ,
                                                                         [ rdf:type owl:Restriction ;
                                                                           owl:onProperty <https://saref.etsi.org/saref4syst/subSystemOf> ;
                                                                           owl:someValuesFrom <https://saref.etsi.org/saref4auto/Vehicle>
                                                                         ] ;
                                                         rdfs:label "ElectronicControlUnit"@en .


###  https://saref.etsi.org/saref4auto/Identifier
<https://saref.etsi.org/saref4auto/Identifier> rdf:type owl:Class ;
                                              rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                                owl:onProperty :hasIDValue ;
                                                                owl:someValuesFrom xsd:string
                                                              ] ;
                                              rdfs:comment "A class used to identify 1)  a vehicle (station) during data exchange with other devices/stations 2) a platoon during data exchange with other devices/stations, 3)  a parking spot within a parking area during data exchange with other devices/stations. In all cases, this identifier may be a pseudonym. It may change over space and/or over time." ;
                                              rdfs:label "Identifier"@en .


###  https://saref.etsi.org/saref4auto/Movement
<https://saref.etsi.org/saref4auto/Movement> rdf:type owl:Class ;
                                            rdfs:subClassOf <https://saref.etsi.org/core/Property> ;
                                            rdfs:comment "Relevant types of movement are: Static (position only), moving in same direction (speed, acceleration), moving in reverse direction (speed acceleration), crossing (speed, acceleration, direction)"^^xsd:string ;
                                            rdfs:label "Movement" .


###  https://saref.etsi.org/saref4auto/NotifiedEvent
<https://saref.etsi.org/saref4auto/NotifiedEvent> rdf:type owl:Class ;
                                                 rdfs:subClassOf owl:Thing ;
                                                 rdfs:comment "The relevant types of events are trafficCondition, accident, roadworks, impassability, adverseWeatherCondition-Adhesion, aquaplannning, hazardousLocation-SurfaceCondition, hazardousLocation-ObstacleOnTheRoad, hazardousLocation-AnimalOnTheRoad, humanPresenceOnTheRoad, wrongWayDriving, rescueAndRecoveryWorkInProgress, adverseWeatherCondition-ExtremeWeatherCondition, adverseWeatherCondition-Visibility, adverseWeatherCondition-Precipitation, slowVehicle, dangerousEndOfQueue, vehicleBreakdown, postCrash, humanProblem, stationaryVehicle, emergencyVehicleApproaching, hazardousLocation-DangerousCurve, collisionRisk, signalViolation, dangerousSituation"^^xsd:string ;
                                                 rdfs:label "NotifiedEvent"@en .


###  https://saref.etsi.org/saref4auto/PersonalDevice
<https://saref.etsi.org/saref4auto/PersonalDevice> rdf:type owl:Class ;
                                                  rdfs:subClassOf :AutomotiveObject ;
                                                  rdfs:label "PersonalDevice"@en .


###  https://saref.etsi.org/saref4auto/Platoon
<https://saref.etsi.org/saref4auto/Platoon> rdf:type owl:Class ;
                                           rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasDestination ;
                                                             owl:someValuesFrom :EndPoint
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasIdentifier ;
                                                             owl:someValuesFrom <https://saref.etsi.org/saref4auto/Identifier>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasMaxSize ;
                                                             owl:someValuesFrom :Size
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasMember ;
                                                             owl:someValuesFrom <https://saref.etsi.org/saref4auto/Vehicle>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasRoute ;
                                                             owl:someValuesFrom :Route
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasSize ;
                                                             owl:someValuesFrom :Size
                                                           ] ;
                                           rdfs:comment "A group of vehicles automatically following each other at a relatively close distance" ;
                                           rdfs:label "Platoon"@en .


###  https://saref.etsi.org/saref4auto/PlatoonRole
<https://saref.etsi.org/saref4auto/PlatoonRole> rdf:type owl:Class ;
                                               rdfs:subClassOf <https://saref.etsi.org/saref4auto/Role> ;
                                               rdfs:comment "In platoon a vehicle can assume roles such as: unknown, leader, follower, ready-for-leading, trailing, etc." ;
                                               rdfs:label "PlatoonRole"@en .


###  https://saref.etsi.org/saref4auto/PublicTransport
<https://saref.etsi.org/saref4auto/PublicTransport> rdf:type owl:Class ;
                                                   rdfs:subClassOf <https://saref.etsi.org/saref4auto/Vehicle> ;
                                                   rdfs:comment "A type of vehicle"@en ;
                                                   rdfs:label "PublicTransport"@en .


###  https://saref.etsi.org/saref4auto/RelativePosition
<https://saref.etsi.org/saref4auto/RelativePosition> rdf:type owl:Class ;
                                                    rdfs:subClassOf :Position ,
                                                                    [ rdf:type owl:Restriction ;
                                                                      owl:onProperty <https://saref.etsi.org/saref4auto/hasCoordinateX> ;
                                                                      owl:someValuesFrom xsd:float
                                                                    ] ,
                                                                    [ rdf:type owl:Restriction ;
                                                                      owl:onProperty <https://saref.etsi.org/saref4auto/hasCoordinateY> ;
                                                                      owl:someValuesFrom xsd:float
                                                                    ] ,
                                                                    [ rdf:type owl:Restriction ;
                                                                      owl:onProperty <https://saref.etsi.org/saref4auto/hasCoordinateZ> ;
                                                                      owl:someValuesFrom xsd:float
                                                                    ] ;
                                                    rdfs:comment "It represents the relative position of a vehicle (e.g., a car is x,y,z in front of another car)"@en ;
                                                    rdfs:label "RelativePosition"@en .


###  https://saref.etsi.org/saref4auto/RoadSideEquipment
<https://saref.etsi.org/saref4auto/RoadSideEquipment> rdf:type owl:Class ;
                                                     rdfs:subClassOf :AutomotiveObject ;
                                                     rdfs:label "RoadSideEquipment"@en .


###  https://saref.etsi.org/saref4auto/Role
<https://saref.etsi.org/saref4auto/Role> rdf:type owl:Class ;
                                        rdfs:label "Role"@en .


###  https://saref.etsi.org/saref4auto/StationID
<https://saref.etsi.org/saref4auto/StationID> rdf:type owl:Class ;
                                             rdfs:subClassOf <https://saref.etsi.org/saref4auto/Identifier> ;
                                             rdfs:comment "A type of identifier for vehicles and platoons, as defined in ETSI TS 102 894-2." ;
                                             rdfs:label "StationID"@en .


###  https://saref.etsi.org/saref4auto/TrafficManagementCentre
<https://saref.etsi.org/saref4auto/TrafficManagementCentre> rdf:type owl:Class ;
                                                           rdfs:subClassOf :AutomotiveObject ;
                                                           rdfs:label "TrafficManagementCentre"@en .


###  https://saref.etsi.org/saref4auto/Truck
<https://saref.etsi.org/saref4auto/Truck> rdf:type owl:Class ;
                                         rdfs:subClassOf <https://saref.etsi.org/saref4auto/Vehicle> ;
                                         rdfs:comment "A type of vehicle"@en ;
                                         rdfs:label "Truck"@en .


###  https://saref.etsi.org/saref4auto/TwoWheeler
<https://saref.etsi.org/saref4auto/TwoWheeler> rdf:type owl:Class ;
                                              rdfs:subClassOf <https://saref.etsi.org/saref4auto/Vehicle> ;
                                              rdfs:comment "A type of vehicle"@en ;
                                              rdfs:label "TwoWheeler"@en .


###  https://saref.etsi.org/saref4auto/UUID
<https://saref.etsi.org/saref4auto/UUID> rdf:type owl:Class ;
                                        rdfs:subClassOf <https://saref.etsi.org/saref4auto/Identifier> ;
                                        rdfs:comment "A type of identifier for vehicles and platoons" ;
                                        rdfs:label "UUID"@en .


###  https://saref.etsi.org/saref4auto/Vehicle
<https://saref.etsi.org/saref4auto/Vehicle> rdf:type owl:Class ;
                                           rdfs:subClassOf <https://saref.etsi.org/core/FeatureOfInterest> ,
                                                           :AutomotiveObject ,
                                                           <https://saref.etsi.org/saref4syst/System> ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasAutomationLevel ;
                                                             owl:someValuesFrom :AutomationLevel
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasBrakeCapacity ;
                                                             owl:someValuesFrom :BrakeCapacity
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasDestination ;
                                                             owl:someValuesFrom :Adress
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasDestination ;
                                                             owl:someValuesFrom :EndPoint
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasEstimatedRendezvousLocation ;
                                                             owl:someValuesFrom :RendezvousLocation
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasHeight ;
                                                             owl:someValuesFrom :Height
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasIdentifier ;
                                                             owl:someValuesFrom <https://saref.etsi.org/saref4auto/Identifier>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasLength ;
                                                             owl:someValuesFrom :Length
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasPosition ;
                                                             owl:someValuesFrom <http://www.opengis.net/ont/geosparql#AbsolutePosition>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasPosition ;
                                                             owl:someValuesFrom :PlatoonPosition
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasPosition ;
                                                             owl:someValuesFrom :RoadTopologyPosition
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasPosition ;
                                                             owl:someValuesFrom <https://saref.etsi.org/saref4auto/RelativePosition>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasRole ;
                                                             owl:someValuesFrom <https://saref.etsi.org/saref4auto/VehicleRole>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasRoute ;
                                                             owl:someValuesFrom :Route
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasWidth ;
                                                             owl:someValuesFrom :Width
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :isMemberOf ;
                                                             owl:someValuesFrom <https://saref.etsi.org/saref4auto/Platoon>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :isMemberOf ;
                                                             owl:someValuesFrom <https://saref.etsi.org/saref4auto/VehicleEnvironment>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty <https://saref.etsi.org/saref4syst/hasSubSystem> ;
                                                             owl:someValuesFrom <https://saref.etsi.org/saref4auto/ElectronicControlUnit>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty :hasEstimatedJoiningTime ;
                                                             owl:someValuesFrom xsd:dateTime
                                                           ] ;
                                           rdfs:comment """A vehicle is the main object of interest in the automotive domain. Example of types of vehicles are car, truck, public transport and two wheeler. See ETSI
TS 102 894-2 spec for full list of vehicles, which are type of \"stations\". See also the SENSORIS data model for possible type of vehicles."""@en ;
                                           rdfs:label "Vehicle"@en .


###  https://saref.etsi.org/saref4auto/VehicleEnvironment
<https://saref.etsi.org/saref4auto/VehicleEnvironment> rdf:type owl:Class ;
                                                      rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                                        owl:onProperty :consistsOf ;
                                                                        owl:someValuesFrom :RoadEntity
                                                                      ] ,
                                                                      [ rdf:type owl:Restriction ;
                                                                        owl:onProperty :consistsOf ;
                                                                        owl:someValuesFrom <https://saref.etsi.org/saref4auto/Vehicle>
                                                                      ] ;
                                                      rdfs:label "VehicleEnvironment"@en .


###  https://saref.etsi.org/saref4auto/VehicleRole
<https://saref.etsi.org/saref4auto/VehicleRole> rdf:type owl:Class ;
                                               rdfs:subClassOf <https://saref.etsi.org/saref4auto/Role> ;
                                               rdfs:comment "The role the vehicle plays in traffic. If not specified, it is assumed that it takes a default value. Otherwise, possible values to be specified are: publicTransport, specialTransport, dangerousGoods, roadWork, rescue, emergency, safetyCar, agriculture, commercial, military, roadOperator, taxi."^^xsd:string ;
                                               rdfs:label "VehicleRole"@en .


###  https://saref.etsi.org/saref4auto/VulnerableRoadUser
<https://saref.etsi.org/saref4auto/VulnerableRoadUser> rdf:type owl:Class ;
                                                      rdfs:subClassOf owl:Thing ;
                                                      rdfs:label "VulnerableRoadUser"@en .


#################################################################
#    Individuals
#################################################################

###  https://etsi.saref.org/saref4auto/agriculture
<https://etsi.saref.org/saref4auto/agriculture> rdf:type owl:NamedIndividual ,
                                                         <https://saref.etsi.org/saref4auto/VehicleRole> ;
                                                rdfs:label "agriculture"@en .


###  https://etsi.saref.org/saref4auto/specialTransport
<https://etsi.saref.org/saref4auto/specialTransport> rdf:type owl:NamedIndividual ,
                                                              <https://saref.etsi.org/saref4auto/VehicleRole> ;
                                                     rdfs:label "specialTransport"@en .


###  https://saref.etsi.org/saref4auto/bus
:bus rdf:type owl:NamedIndividual ;
                         rdfs:label "bus"@en .


###  https://saref.etsi.org/saref4auto/passengerCar
:passengerCar rdf:type owl:NamedIndividual ;
                         rdfs:label "passengerCar"@en .


###  https://saref.etsi.org/saref4auto/tram
:tram rdf:type owl:NamedIndividual ,
                                  <https://saref.etsi.org/saref4auto/PublicTransport> ;
                         rdfs:label "tram"@en .


###  https://saref.etsi.org/saref4auto/heavyTruck
:heavyTruck rdf:type owl:NamedIndividual ;
                         rdfs:label "heavyTruck"@en .


###  https://saref.etsi.org/saref4auto/lightTruck
:lightTruck rdf:type owl:NamedIndividual ;
                         rdfs:label "lightTruck"@en .


###  https://saref.etsi.org/saref4auto/trailer
:trailer rdf:type owl:NamedIndividual ;
                         rdfs:label "trailer"@en .


###  https://saref.etsi.org/saref4auto/animal
:animal rdf:type owl:NamedIndividual ,
                 <https://saref.etsi.org/saref4auto/VulnerableRoadUser> ;
        rdfs:comment "animals presenting a safety risk to other road users, for example : dogs, wild animals, horses, cows, sheep, kangaroos, etc."^^xsd:string ;
        rdfs:label "animals"@en .


###  https://saref.etsi.org/saref4auto/assembling
:assembling rdf:type owl:NamedIndividual ,
                     :PlatoonState ;
            rdfs:label "assembling"@en .


###  https://saref.etsi.org/saref4auto/bicyclist
:bicyclist rdf:type owl:NamedIndividual ,
                    <https://saref.etsi.org/saref4auto/VulnerableRoadUser> ;
           rdfs:comment "for example: user of bicycle, wheelchair, skater, scooter, Segway, or a mounted horse rider"^^xsd:string ;
           rdfs:label "bicyclist"@en .


###  https://saref.etsi.org/saref4auto/commercial
:commercial rdf:type owl:NamedIndividual ,
                     <https://saref.etsi.org/saref4auto/VehicleRole> ;
            rdfs:label "commercial"@en .


###  https://saref.etsi.org/saref4auto/dangerousGood
:dangerousGood rdf:type owl:NamedIndividual ,
                        <https://saref.etsi.org/saref4auto/VehicleRole> ;
               rdfs:label "dangerousGoods"@en .


###  https://saref.etsi.org/saref4auto/disengaging
:disengaging rdf:type owl:NamedIndividual ,
                      :PlatoonState ,
                      :PlatoonVehicleState ;
             rdfs:label "disengaging"@en .


###  https://saref.etsi.org/saref4auto/emergency
:emergency rdf:type owl:NamedIndividual ,
                    <https://saref.etsi.org/saref4auto/VehicleRole> ;
           rdfs:label "emergency"@en .


###  https://saref.etsi.org/saref4auto/engaging
:engaging rdf:type owl:NamedIndividual ,
                   :PlatoonVehicleState .


###  https://saref.etsi.org/saref4auto/follower
:follower rdf:type owl:NamedIndividual ,
                   <https://saref.etsi.org/saref4auto/PlatoonRole> .


###  https://saref.etsi.org/saref4auto/forming
:forming rdf:type owl:NamedIndividual ,
                  :PlatoonVehicleState .


###  https://saref.etsi.org/saref4auto/largeObject
:largeObject rdf:type owl:NamedIndividual ,
                      <https://saref.etsi.org/saref4auto/CriticalObject> ;
             rdfs:label "largeObject" .


###  https://saref.etsi.org/saref4auto/leader
:leader rdf:type owl:NamedIndividual ,
                 <https://saref.etsi.org/saref4auto/PlatoonRole> .


###  https://saref.etsi.org/saref4auto/mediumObject
:mediumObject rdf:type owl:NamedIndividual ,
                       <https://saref.etsi.org/saref4auto/CriticalObject> ;
              rdfs:label "mediumObject" .


###  https://saref.etsi.org/saref4auto/military
:military rdf:type owl:NamedIndividual ,
                   <https://saref.etsi.org/saref4auto/VehicleRole> ;
          rdfs:label "military"@en .


###  https://saref.etsi.org/saref4auto/motorcycle
:motorcycle rdf:type owl:NamedIndividual ,
                     <https://saref.etsi.org/saref4auto/VulnerableRoadUser> ;
            rdfs:label "motorcycle"@en .


###  https://saref.etsi.org/saref4auto/pedestrian
:pedestrian rdf:type owl:NamedIndividual ,
                     <https://saref.etsi.org/saref4auto/VulnerableRoadUser> ;
            rdfs:comment "for example: adult, child, elderly person, pram, animal, blind person guided by a dog, rider off its bike"^^xsd:string ;
            rdfs:label "pedestrians"@en .


###  https://saref.etsi.org/saref4auto/platooning
:platooning rdf:type owl:NamedIndividual ,
                     :PlatoonState ,
                     :PlatoonVehicleState ;
            rdfs:label "platooning"@en .


###  https://saref.etsi.org/saref4auto/publicTransport
:publicTransport rdf:type owl:NamedIndividual ,
                          <https://saref.etsi.org/saref4auto/VehicleRole> ;
                 rdfs:label "publicTransport"@en .


###  https://saref.etsi.org/saref4auto/ready_for_leading
:ready_for_leading rdf:type owl:NamedIndividual ,
                            <https://saref.etsi.org/saref4auto/PlatoonRole> .


###  https://saref.etsi.org/saref4auto/rescue
:rescue rdf:type owl:NamedIndividual ,
                 <https://saref.etsi.org/saref4auto/VehicleRole> ;
        rdfs:label "rescue"@en .


###  https://saref.etsi.org/saref4auto/roadOperator
:roadOperator rdf:type owl:NamedIndividual ,
                       <https://saref.etsi.org/saref4auto/VehicleRole> ;
              rdfs:label "roadOperator"@en .


###  https://saref.etsi.org/saref4auto/roadWork
:roadWork rdf:type owl:NamedIndividual ,
                   <https://saref.etsi.org/saref4auto/VehicleRole> ;
          rdfs:label "roadWork"@en .


###  https://saref.etsi.org/saref4auto/safetyCar
:safetyCar rdf:type owl:NamedIndividual ,
                    <https://saref.etsi.org/saref4auto/VehicleRole> ;
           rdfs:label "safetyCar"@en .


###  https://saref.etsi.org/saref4auto/searching
:searching rdf:type owl:NamedIndividual ,
                    :PlatoonVehicleState .


###  https://saref.etsi.org/saref4auto/smallObject
:smallObject rdf:type owl:NamedIndividual ,
                      <https://saref.etsi.org/saref4auto/CriticalObject> ;
             rdfs:label "smallObject" .


###  https://saref.etsi.org/saref4auto/standalone
:standalone rdf:type owl:NamedIndividual ,
                     :PlatoonState ,
                     :PlatoonVehicleState ;
            rdfs:label "standalone"@en .


###  https://saref.etsi.org/saref4auto/taxi
:taxi rdf:type owl:NamedIndividual ,
               <https://saref.etsi.org/saref4auto/VehicleRole> ;
      rdfs:label "taxi"@en .


###  https://saref.etsi.org/saref4auto/trailing
:trailing rdf:type owl:NamedIndividual ,
                   <https://saref.etsi.org/saref4auto/PlatoonRole> .


###  https://saref.etsi.org/saref4auto/unknown
:unknown rdf:type owl:NamedIndividual ,
                  :PlatoonState ,
                  :PlatoonVehicleState ,
                  <https://saref.etsi.org/saref4auto/PlatoonRole> ;
         rdfs:label "unknown"@en .


#################################################################
#    Annotations
#################################################################

:hasRole rdfs:label "hasRole"@en ;
         rdfs:comment "The role the vehicle plays in traffic. Possible values are: publicTransport, specialTransport, dangerousGoods, roadWork, rescue, emergency, safetyCar, agriculture, commercial, military, roadOperator, taxi."^^xsd:string .

###  Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi