-
Notifications
You must be signed in to change notification settings - Fork 11
/
mobivoc_v1.1.4.ttl
2100 lines (1852 loc) · 110 KB
/
mobivoc_v1.1.4.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 cc: <http://creativecommons.org/ns#> .
@prefix wgs: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix ecc: <https://ns.eccenca.com/> .
@prefix datex: <http://vocab.datex.org/terms#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix mv: <http://schema.mobivoc.org/#> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dbpedia: <http://dbpedia.org/resource/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vcard: <http://www.w3.org/2001/vcard-rdf/3.0#> .
@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix dbo: <http://dbpedia.org/> .
@prefix olo: <http://purl.org/ontology/olo/core#> .
@prefix s: <http://schema.org/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
mv:Action a owl:Class ;
rdfs:comment "Action that is done."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Aktion"@de , "Action"@en ;
dct:created "2017-06-23"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:vehicleHeightLimitInM
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "Indicates the height limit in meter for vehicles using the parking facility."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy mv: ;
rdfs:label "Höhenbegrenzung für Fahrzeuge"@de , "vechicle height limit"@en ;
rdfs:range xsd:decimal ;
dct:created "2017-04-13"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:Charger a owl:Class , rdfs:Class ;
rdfs:comment "Civic structure that supplies electric energy for the recharging of electric vehicles."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Ladegerät"@de , "Charger"@en ;
rdfs:subClassOf s:CivicStructure ;
skos:altLabel "Ladepunkt"@de , "Charging point"@en .
mv:ownedBy a rdf:Property , owl:ObjectProperty ;
rdfs:comment "The owner of a civic structure or facility. Owner and operator can be different business entities."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy mv: ;
rdfs:label "in Besitz von"@de , "owned by"@en ;
rdfs:range gr:BusinessEntity ;
dct:created "2017-04-05"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:startTimeOverall a owl:DatatypeProperty ;
rdfs:comment "The overall start time of a situation record validity."@en ;
rdfs:domain mv:Validity ;
rdfs:isDefinedBy mv: ;
rdfs:label "start time overall"@en ;
rdfs:range xsd:dateTime ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
mv:batteryCapacityinKW
a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the battery capacity of an electric vehicle in kW."@en ;
rdfs:domain mv:ElectricVehicle ;
rdfs:isDefinedBy mv: ;
rdfs:label "Batteriekapazität in kW"@de , "battery capacity in kW"@en ;
rdfs:range xsd:double .
mv:Carpooling a mv:ParkingFacilityConnection ;
rdfs:comment "Parking facility used for carpooling or ridesharing."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Parken und Mitfahren"@de , "Carpooling" ;
skos:altLabel "Parken und Mitnehmen"@de , "Park & Drive" , "P+M" , "P&M" .
mv:Location a owl:Class ;
rdfs:comment "Describes the location of a situation record."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Location"@en ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date ;
owl:equivalentClass datex:Location ;
vs:term_status "testing" .
mv:id a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "ID of the entity."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "ID"@en , "ID"@de ;
rdfs:range xsd:string ;
dct:created "2017-05-11"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
s:Place a owl:Class ;
rdfs:comment "Entities that have a somewhat fixed, physical extension."@en ;
rdfs:isDefinedBy s: ;
rdfs:label "Ort"@de , "Place"@en .
mv:SecondaryLocation a owl:Class ;
rdfs:comment "The secondary location of an AlertC location describing roadworks."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "SecondaryLocation"@en ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date ;
owl:equivalentClass datex:AlertCMethod2SecondaryPointLocation ;
vs:term_status "testing" .
mv:countryCode a owl:DatatypeProperty ;
rdfs:comment "The country code where the situation record takes place."@en ;
rdfs:domain mv:AlertCLocation ;
rdfs:isDefinedBy mv: ;
rdfs:label "country code"@en ;
rdfs:range xsd:string ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
ecc:aweilandt a foaf:Person , dct:Agent ;
s:affiliation ecc:eccenca-GmbH ;
foaf:name "Annette Weilandt" .
mv:probabilityOfOccurence
a owl:DatatypeProperty ;
rdfs:comment "The probabily of occurence of a situation record."@en ;
rdfs:domain mv:SituationRecord ;
rdfs:isDefinedBy mv: ;
rdfs:label "probability of occurence"@en ;
rdfs:range xsd:string ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
s:address a owl:ObjectProperty ;
rdfs:comment "Physical address of the item."@en ;
rdfs:isDefinedBy s: ;
rdfs:label "address"@en ;
rdfs:range s:PostalAddress .
mv:startOfPeriod a owl:DatatypeProperty ;
rdfs:comment "The start time of a period."@en ;
rdfs:domain mv:Period ;
rdfs:isDefinedBy mv: ;
rdfs:label "start of period"@en ;
rdfs:range xsd:dateTime ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
mv:model a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "Indicates the model of a product."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Modell"@de , "model"@en ;
rdfs:range xsd:string .
mv:PerpendicularParking
a mv:ArrangementPattern ;
rdfs:comment "With perpendicular parking, vehicles are parked side to side, perpendicular to an aisle, curb, or wall. This type of parking is commonly used in parking lots and parking facilities."@en , "Bei der Senkrechtaufstellung wird das Fahrzeug mit einem Aufstellwinkel von von 100 gon (90°) geparkt."@de ;
rdfs:isDefinedBy mv: ;
rdfs:label "Senkrechtaufstellung"@de , "Perpendicular parking"@en ;
dct:created "2017-05-10"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
skos:altLabel "Bay parking"@en ;
skos:prefLabel "Perpendicular parking"@en .
mv:lengthInM a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the length of an object in meter."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Länge in m"@de , "length in m"@en ;
rdfs:range xsd:double .
mv:picture a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "URL of the picture of a civic structure or facility."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy mv: ;
rdfs:label "Bild"@de , "picture"@en ;
rdfs:range xsd:string ;
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:AutomatedParkingGarage
a owl:Class , rdfs:Class ;
rdfs:comment "Parking garage with an automated parking system that automatically moves cars to the available parking space somewhere in the garage."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Automated parking garage"@en , "Automatisches Parkhaus"@de ;
rdfs:subClassOf mv:ParkingFacility ;
dct:created "2017-04-13"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:endLatitude a owl:DatatypeProperty ;
rdfs:comment "The ending latitude of a situation record."@en ;
rdfs:domain mv:LinearExtension ;
rdfs:isDefinedBy mv: ;
rdfs:label "end latitude"@en ;
rdfs:range geo:long ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
cc:license a owl:AnnotationProperty ;
rdfs:isDefinedBy <http://creativecommons.org/ns> .
mv:linearExtension a owl:ObjectProperty ;
rdfs:comment "The spatial description of a situation record."@en ;
rdfs:domain mv:Location ;
rdfs:isDefinedBy mv: ;
rdfs:label "linear extension"@en ;
rdfs:range mv:LinearExtension ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
cc:License a rdfs:Class ;
rdfs:comment "a set of requests/permissions to users of a Work, e.g. a copyright license, the public domain, information for distributors" ;
rdfs:isDefinedBy <https://creativecommons.org/ns#> ;
rdfs:label "License" .
mv:SEV1011_Type_J a mv:PlugType ;
rdfs:comment "The Swiss standard, also used in Liechtenstein, is SN SEV 1011:2009 Plugs and socket-outlets for household and similar purposes. The standard defines a hierarchical system of plugs and sockets with two, three and five pins, and 10 A or 16 A ratings. Sockets will accept plugs with the same or fewer pins and the same or lower ratings."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "SEV1011 Type J"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/AC_power_plugs_and_sockets#10_A_plugs_and_sockets_(Type_J)> ;
mv:ocmConnectionID "1037" ;
skos:altLabel "Type J"@en , "Swiss domestic 3-pin"@en ;
foaf:depiction <https://upload.wikimedia.org/wikipedia/commons/d/da/AC_Power_Plug_Type_J.jpg> .
mv:SAE_J1772-2001 a mv:PlugType ;
rdfs:comment "SAE J1772 (IEC Type 1) is a North American standard for electrical connectors for electric vehicles maintained by the SAE International and has the formal title \"SAE Surface Vehicle Recommended Practice J1772, SAE Electric Vehicle Conductive Charge Coupler\"."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "J1772"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/SAE_J1772> ;
mv:ocmConnectionID "7" .
mv:TaxiDrivers a mv:UserGroup ;
rdfs:comment "Drivers of a vehicle for hire, used by a single passenger or small group of passengers, often for a non-shared ride. Taxi drivers convey passengers between locations of their choice."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Taxi drivers"@en , "Taxifahrer"@de ;
skos:altLabel "Taxicab drivers"@en , "Cab drivers"@en , "Cabbies"@en-uk ;
skos:prefLabel "Taxifahrer"@de , "Taxi drivers"@en .
mv:roadName a owl:DatatypeProperty ;
rdfs:comment "The affected road of a location."@en ;
rdfs:domain mv:LinearExtension ;
rdfs:isDefinedBy mv: ;
rdfs:label "road name"@en ;
rdfs:range xsd:string ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
mv:arrangement a owl:ObjectProperty , rdf:Property ;
rdfs:comment "Indicates in which pattern a parking space is arranged."@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( mv:ParkingSpace mv:ParkingFacility )
] ;
rdfs:isDefinedBy mv: ;
rdfs:label "Anordnung"@de , "arrangement pattern"@en ;
rdfs:range mv:ArrangementPattern ;
dct:created "2017-05-10"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:AllParkingFacilitiesFull
a mv:CivicStructureStatus ;
rdfs:comment "All parking facilities within a specified area are completely occupied."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Alle Parkmöglichkeiten belegt"@de , "All parking facilities full"@en .
mv:validForUserGroup a owl:ObjectProperty , rdf:Property ;
rdfs:comment "Indicates that an entity is valid for a specific group of users."@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( mv:AccessCondition s:PriceSpecification mv:Capacity )
] ;
rdfs:isDefinedBy mv: ;
rdfs:label "valid for user group"@en , "gültig für Nutzergruppe"@de ;
rdfs:range mv:UserGroup ;
dct:created "2017-09-01"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
ecc:eccenca-GmbH a foaf:Organization , dct:Agent ;
foaf:name "eccenca GmbH"@en .
mv:rateOfOccupancy a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "Indicates the percentage value of parking spaces occupied in a parking facility."@en ;
rdfs:domain mv:ParkingFacility ;
rdfs:isDefinedBy mv: ;
rdfs:label "Belegungsrate"@de , "rate of occupancy"@en ;
rdfs:range xsd:string ;
dct:created "2017-05-10"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:SAE_J1772-2009 a mv:PlugType ;
rdfs:comment "SAE J1772 (IEC Type 1) is a North American standard for electrical connectors for electric vehicles maintained by the SAE International and has the formal title \"SAE Surface Vehicle Recommended Practice J1772, SAE Electric Vehicle Conductive Charge Coupler\". \n The SAE J1772-2009 connector specification has been added to the international IEC 62196-2 standard."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "J1772 2009"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/IEC_62196#Type_1_(SAE_J1772-2009),_Yazaki> ;
mv:ocmConnectionID "1" ;
skos:altLabel "IEC 62196 Type 1"@en ;
foaf:depiction <https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/SAE_J1772_7058855567.jpg/1280px-SAE_J1772_7058855567.jpg> .
mv:heightInM a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the height of an object in meter."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Höhe in m"@de , "height in m"@en ;
rdfs:range xsd:double .
mv:RealTimeCapacity a rdfs:Class , owl:Class ;
rdfs:comment "Real-time capacity of a civic structure."@en , "Real-time capacity of a parking facility or parking space."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Real time capacity"@en , "Echtzeit-Kapazität"@de ;
rdfs:subClassOf mv:Capacity ;
dct:created "2017-04-05"^^xsd:date , "2017-05-15"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:ParkingFacilityEntrance
a rdfs:Class , owl:Class ;
rdfs:comment "Entrance of a parking facility where vehicles can enter the parking facility."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Entrance"@en , "Einfahrt"@de ;
rdfs:subClassOf s:CivicStructure ;
dct:created "2017-05-10"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:situationSubject a owl:DatatypeProperty ;
rdfs:comment "The speedlimit subject of a situation."@en ;
rdfs:domain mv:SituationRecord ;
rdfs:isDefinedBy mv: ;
rdfs:label "situation subject"@en ;
rdfs:range xsd:integer ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
mv:ParkAndRideServiceOperating
a mv:CivicStructureStatus ;
rdfs:comment "Park and ride services are operating until the specified time."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Park and ride service operating"@en , "P+R-Service vorhanden"@de .
mv:Faulty a mv:CivicStructureStatus ;
rdfs:comment "The civic structure is not operating normally."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Faulty"@en , "Defekt"@de .
mv:generalPublicComment
a owl:DatatypeProperty ;
rdfs:comment "A general public comment about a situation record."@en ;
rdfs:domain mv:SituationRecord ;
rdfs:isDefinedBy mv: ;
rdfs:label "general public comment"@en ;
rdfs:range xsd:string ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date ;
owl:equivalentProperty datex:generalPublicComment .
s:Organization a rdfs:Class ;
rdfs:comment "An organization such as a school, NGO, corporation, club, etc." ;
rdfs:label "Organization" .
mv:AccessCondition a owl:Class ;
rdfs:comment "A condition that has to be fullfilled to get access to a civic structure."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Zugangsbedingung"@de , "Access condition"@en ;
dct:created "2017-08-29"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:trafficConstrictitionType
a owl:DatatypeProperty ;
rdfs:comment "The traffic constriction type of an impacted road in a situation record."@en ;
rdfs:domain mv:Impact ;
rdfs:isDefinedBy mv: ;
rdfs:label "traffic constrictition type"@en ;
rdfs:range xsd:string ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2019-08-16"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2019-08-16"^^xsd:date .
mv:parkingSpace a owl:ObjectProperty , rdf:Property ;
rdfs:comment "Relates the parking facility to a contained parking space."@en ;
rdfs:domain mv:ParkingFacility ;
rdfs:isDefinedBy mv: ;
rdfs:label "hat Stellplatz"@de , "parking space"@en ;
rdfs:range mv:ParkingSpace ;
dct:created "2017-05-15"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:cableAvailable a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates whether the plug or electric vehicle has a cable."@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( mv:Charger mv:ElectricVehicle )
] ;
rdfs:isDefinedBy mv: ;
rdfs:label "cable available"@en , "Kabel verfügbar"@de ;
rdfs:range xsd:boolean .
mv:fillRate a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "The rate at which vehicles are entering the parking facility."@en ;
rdfs:domain mv:ParkingFacility ;
rdfs:isDefinedBy mv: ;
rdfs:label "fill rate"@en ;
rdfs:range xsd:string ;
dct:created "2017-05-10"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:exitRate a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "The rate at which vehicles are exiting the parking facility."@en ;
rdfs:domain mv:ParkingFacility ;
rdfs:isDefinedBy mv: ;
rdfs:label "exit rate"@en ;
rdfs:range xsd:string ;
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:BatteryElectricVehicle
a rdfs:Class , owl:Class ;
rdfs:comment "Electric vehicle that uses chemical energy stored in rechargeable battery packs. Battery electric vehicles use electric motors and motor controllers instead of internal combustion engines for propulsion. They derive all power from battery packs and thus have no internal combustion engine, fuel cell, or fuel tank."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Battery Electric Vehicle"@en , "Batteriebetriebenes Fahrzeug"@de ;
rdfs:subClassOf mv:ElectricVehicle ;
skos:altLabel "FEV"@en , "Battery-only electric vehicle"@en , "All-electric vehicle"@en , "BEV"@en , "Full electric vehicle"@en , "BOEV"@en ;
skos:prefLabel "Battery Electric Vehicle"@en , "Elektrofahrzeug"@de .
mv:specificLocation a owl:DatatypeProperty ;
rdfs:comment "The specific location of a Primary or Secondary AlertCLocation description."@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( mv:PrimaryLocation mv:SecondaryLocation )
] ;
rdfs:isDefinedBy mv: ;
rdfs:label "specific location"@en ;
rdfs:range xsd:integer ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
mv:ParkingBarrier a mv:ParkingFacilityFeature ;
rdfs:comment "The parking facility has a parking barrier."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Parkschranke"@de , "Parking barrier"@en .
mv:voltageInV a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the voltage of a charger or plug in volt."@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( mv:Plug mv:Charger mv:ElectricVehicle )
] ;
rdfs:isDefinedBy mv: ;
rdfs:label "Spannung in V"@de , "voltage in V"@en ;
rdfs:range xsd:double .
mv:endOfPeriod a owl:DatatypeProperty ;
rdfs:comment "The end time of a period."@en ;
rdfs:domain mv:Period ;
rdfs:isDefinedBy mv: ;
rdfs:label "end of period"@en ;
rdfs:range xsd:dateTime ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
mv:UndergroundParkingGarage
a owl:Class , rdfs:Class ;
rdfs:comment "Parking facility with one or more levels below the surface and none above ground."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Tiefgarage"@de , "Underground parking garage"@en ;
rdfs:subClassOf mv:ParkingFacility ;
dct:created "2017-04-13"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
skos:altLabel "Rampengarage"@de ;
skos:prefLabel "Underground parking garage"@en , "Tiefgarage"@de .
mv:action a owl:ObjectProperty , rdf:Property ;
rdfs:comment "Indicates which action is applied."@en ;
rdfs:domain mv:AccessCondition ;
rdfs:isDefinedBy mv: ;
rdfs:label "action"@en ;
rdfs:range mv:Action ;
dct:created "2017-06-23"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:BS1363 a mv:PlugType ;
rdfs:comment "13 A plugs socket-outlets adaptors and connection units is a British Standard which specifies the most common type of single-phase AC power plugs and sockets that are used in the United Kingdom."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "BS1363"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/AC_power_plugs_and_sockets:_British_and_related_types#International_usage_of_Type_G> ;
mv:ocmConnectionID "3" ;
skos:altLabel "Type G"@en ;
foaf:depiction <https://upload.wikimedia.org/wikipedia/commons/0/00/British_plug.jpg> .
mv:ParkAndRide a mv:ParkingFacilityConnection ;
rdfs:comment "Connection to public transport."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Parken und Reisen"@de , "Park & Ride"@en ;
skos:altLabel "P+R"@en , "P&R"@en .
mv:Gone a mv:CivicStructureStatus ;
rdfs:comment "The civic structure is not available anymore."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Gone"@en , "nicht mehr verfügbar"@de .
mv:IEC_62196_Type_3C a mv:PlugType ;
rdfs:comment "The type 3A is derived from the Scame charging connectors adding the IEC 62196 pins which is suited for single-phase charging – the connector builds on the experience with the Scame connector for charging of light vehicles (electric motorcycles and scooters). The additional type 3C adds additional 2 pins for three-phase charging for usage at fast charge stations. Based on its origin the connector is sometimes referred to as the Scame type 3 connector."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "SCAME Type 3C"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/IEC_62196#Type_3> ;
mv:ocmConnectionID "26" ;
skos:altLabel "IEC 62196-2 Type 3C"@en .
mv:plugType a owl:ObjectProperty , rdf:Property ;
rdfs:comment "Indicates the type of a plug."@en ;
rdfs:domain mv:Plug ;
rdfs:isDefinedBy mv: ;
rdfs:label "plug type"@en ;
rdfs:range mv:PlugType .
mv:CEE_7-Pin a mv:PlugType ;
rdfs:comment "CEE 7-Pin 32A / 400V Socket."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "CEE 7-Pin"@en ;
mv:ocmConnectionID "18" .
mv:StatusUnknown a mv:CivicStructureStatus ;
rdfs:comment "The status of the civic structure is unknown."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Status unknown"@en , "Status unbekannt"@de .
mv:endTimeOverall a owl:DatatypeProperty ;
rdfs:comment "The overall end time of a situation record validity."@en ;
rdfs:domain mv:Validity ;
rdfs:isDefinedBy mv: ;
rdfs:label "end time overall"@en ;
rdfs:range xsd:dateTime ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
mv:location a owl:ObjectProperty ;
rdfs:comment "The location description of a situation record."@en ;
rdfs:domain mv:SituationRecord ;
rdfs:isDefinedBy mv: ;
rdfs:label "location"@en ;
rdfs:range mv:Location ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
mv:impactedRoad a owl:DatatypeProperty ;
rdfs:comment "The impacted road of a situation."@en ;
rdfs:domain mv:SituationRecord ;
rdfs:isDefinedBy mv: ;
rdfs:label "impacted road"@en ;
rdfs:range xsd:string ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
gr:BusinessEntity a owl:Class ;
rdfs:comment "An instance of this class represents the legal agent making (or seeking) a particular offering. This can be a legal body or a person. A business entity has at least a primary mailing address and contact details. For this, typical address standards (vCard) and location data (geo, WGS84) can be attached. Note that the location of the business entity is not necessarily the location from which the product or service is being available."@en ;
rdfs:isDefinedBy gr: ;
rdfs:label "Juristische Person"@de , "Business entity"@en .
mv:LinearExtension a owl:Class ;
rdfs:comment "Describes the Linear extension of a situation record."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Linear Extension"@en ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date ;
vs:term_status "testing" .
mv:CHAdeMO a mv:PlugType ;
rdfs:comment "CHAdeMO is the trade name of a quick charging method for battery electric vehicles delivering up to 62.5 kW of direct current (500 V, 125 A[1]) via a special electrical connector."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "CHAdeMO"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/CHAdeMO> ;
mv:ocmConnectionID "2" ;
owl:sameAs dbpedia:CHAdeMO ;
foaf:depiction <https://upload.wikimedia.org/wikipedia/commons/d/d3/CHAdeMO_Plug_VacavilleDavisStDC2.jpg> .
mv:ParkingLot a owl:Class , rdfs:Class ;
rdfs:comment "Parking area on a single groundfloor level that is usually located outdoor."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Parking lot"@en , "Parkplatz"@de ;
rdfs:subClassOf mv:ParkingFacility ;
dct:created "2017-05-30"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
skos:altLabel "Parkfläche"@de , "car lot"@en ;
skos:prefLabel "Car park"@en-uk , "Parking lot"@en-us , "Parkplatz"@de .
mv:Car a s:Vehicle ;
rdfs:comment "A wheeled, self-powered motor vehicle used for transportation."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Voiture"@fr , "Car"@en , "Auto"@de ;
skos:altLabel "Pkw"@de .
mv:EnoughParkingSpacesAvailable
a mv:CivicStructureStatus ;
rdfs:comment "The civic structure has parking spaces available."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Genügend Stellplätze frei"@de , "Enough parking spaces available"@en .
mv:Capacity a owl:Class , rdfs:Class ;
rdfs:comment "Capacity of a civic structure."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Capacity"@en , "Kapazität"@de ;
dct:created "2017-04-13"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:ArrangementPattern
a rdfs:Class , owl:Class ;
rdfs:comment "Pattern how parking spaces are arranged in a parking facility or at roadside."@en , "Art und Weise, wie ein Fahrzeug auf einer Parkfläche aufgestellt wird."@de ;
rdfs:isDefinedBy mv: ;
rdfs:label "Aufstellart"@de , "Arrangement pattern"@en ;
dct:created "2017-05-10"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:SpecialParkingRestrictionsInForce
a mv:CivicStructureStatus ;
rdfs:comment "Parking restrictions, other than those that normally apply, are in force in a specified area."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Special parking restrictions in force"@en , "Besondere Parkbeschränkungen in Kraft"@de .
mv:tableVersion a owl:DatatypeProperty ;
rdfs:comment "The table version of an AlertCLocation description."@en ;
rdfs:domain mv:AlertCLocation ;
rdfs:isDefinedBy mv: ;
rdfs:label "table version"@en ;
rdfs:range xsd:string ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
vann:preferredNamespacePrefix
a owl:AnnotationProperty ;
rdfs:isDefinedBy vann: .
ecc:mbruemmer a foaf:Person , dct:Agent ;
s:affiliation ecc:eccenca-GmbH ;
foaf:name "Martin Brümmer" .
mv:NEMA_14-50 a mv:PlugType ;
rdfs:comment "NEMA connectors are power plugs and receptacles used for AC mains electricity in North America and other countries that use the standards set by the US National Electrical Manufacturers Association. The NEMA 14 devices are four-wire grounding devices (hot-hot-neutral-ground) available in ratings from 15 to 60 A. The voltage rating is 250 V. Rated for 60A."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "NEMA 14-50"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/NEMA_connector#NEMA_14> ;
mv:ocmConnectionID "11" ;
foaf:depiction <https://upload.wikimedia.org/wikipedia/commons/d/d3/220sb.svg> .
foaf:Person a owl:Class ;
rdfs:comment "A person." ;
rdfs:isDefinedBy foaf: ;
rdfs:label "Person" ;
vs:term_status "stable" .
mv:ParkingGarage a owl:Class , rdfs:Class ;
rdfs:comment "A single level or multilevel parking building to park at."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Parkhaus"@de , "Parking garage"@en ;
rdfs:subClassOf mv:ParkingFacility ;
dct:created "2017-04-13"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
skos:altLabel "Car park"@en , "Parking building"@en , "Hochgarage"@de , "Parking structure"@en ;
skos:prefLabel "Parking garage"@en , "Parkhaus"@de .
mv:vehicleLengthLimitInM
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "Indicates the length limit in meter for vehicles using the parking facility."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy mv: ;
rdfs:label "vehicle length limit"@en , "Längenbegrenzung für Fahrzeuge"@de ;
rdfs:range xsd:decimal ;
dct:created "2017-04-13"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:level a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "Indicates the level of a parking facility the parking space is located in."@en ;
rdfs:domain mv:ParkingSpace ;
rdfs:isDefinedBy mv: ;
rdfs:label "level"@en , "Ebene"@de ;
rdfs:range xsd:integer ;
dct:created "2018-01-11"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:trackCrossSection a owl:DatatypeProperty ;
rdfs:comment "The track cross section definition of an impacted road in a situation record."@en ;
rdfs:domain mv:Impact ;
rdfs:isDefinedBy mv: ;
rdfs:label "track cross section"@en ;
rdfs:range xsd:string ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2019-08-16"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2019-08-16"^^xsd:date .
mv:VideoSurveillance a mv:ParkingFacilityFeature ;
rdfs:comment "The parking facility is surveilled by video."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Videoüberwachung"@de , "Video surveillance"@en .
mv:feature a rdf:Property , owl:ObjectProperty ;
rdfs:comment "Indicates which feature the parking facility provides."@en ;
rdfs:domain mv:ParkingFacility ;
rdfs:isDefinedBy mv: ;
rdfs:label "feature"@en , "Ausstattung"@de ;
rdfs:range mv:ParkingFacilityFeature ;
dct:created "2017-09-01"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:roadNumber a owl:DatatypeProperty ;
rdfs:comment "The name number of an affected road of a location."@en ;
rdfs:domain mv:LinearExtension ;
rdfs:isDefinedBy mv: ;
rdfs:label "road number"@en ;
rdfs:range xsd:string ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date .
mv:Motorbike a s:Vehicle ;
rdfs:comment "A single-track, two-wheeled motor vehicle."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Motorrad"@de , "Motorbike"@en ;
skos:altLabel "Motorcycle"@en ;
skos:prefLabel "Moto"@fr , "Motorrad"@de , "Motorbike"@en .
mv:widthInM a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the width of an object in meter."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Breite in m"@de , "width in m"@en ;
rdfs:range xsd:double .
mv:chargingLevel a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the percentage of charge left in the battery of an electric vehicle."@en ;
rdfs:domain mv:ElectricVehicle ;
rdfs:isDefinedBy mv: ;
rdfs:label "Ladestand"@de , "charging level"@en ;
rdfs:range xsd:double .
mv:ParkAndFly a mv:ParkingFacilityConnection ;
rdfs:comment "Connection to airport."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Parken und Fliegen"@de , "Park & Fly" ;
skos:altLabel "P+F"@en , "P&F"@en .
mv:AS_3112_Type_I a mv:PlugType ;
rdfs:comment "AS/NZS 3112 are the harmonised Australian and New Zealand standards for AC Plugs and Socket-Outlets."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "AS 3112 Type I"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/AS/NZS_3112> ;
mv:ocmConnectionID "29" ;
skos:altLabel "Type I/AS 3112/CPCS-CCC"@en , "Type I"@en ;
foaf:depiction <https://upload.wikimedia.org/wikipedia/commons/2/20/Aust_AC_plug.jpg> .
vann:preferredNamespaceUri
a owl:AnnotationProperty ;
rdfs:isDefinedBy vann: .
mv:isFastChargeCapable
a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates that the charger is able to fast charge."@en ;
rdfs:domain mv:Charger ;
rdfs:isDefinedBy mv: ;
rdfs:label "is fast charge capable"@en , "erlaubt Schnellladen"@de ;
rdfs:range xsd:boolean .
mv:civicStructureStatus
a owl:ObjectProperty , rdf:Property ;
rdfs:comment "Indicates the current status of the civic structure."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy mv: ;
rdfs:label "hat Status der zivilen Einrichtung"@de , "civic structure status"@en ;
rdfs:range mv:CivicStructureStatus ;
dct:created "2017-06-23"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:Operational a mv:CivicStructureStatus ;
rdfs:comment "The civic structure is operational."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Operational"@en , "in Betrieb"@de .
dct:date a rdf:Property ;
rdfs:comment "A point or period of time associated with an event in the lifecycle of the resource."@en ;
rdfs:isDefinedBy dct: ;
rdfs:label "Date"@en ;
rdfs:range rdfs:Literal ;
dct:description "Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]."@en ;
dct:issued "2008-01-14"^^xsd:date ;
dct:modified "2008-01-14"^^xsd:date .
mv:operatedBy a rdf:Property , owl:ObjectProperty ;
rdfs:comment "The operator of a civic structure or facility. Operator and owner can be different business entitites."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy mv: ;
rdfs:label "operated by"@en , "betrieben von"@de ;
rdfs:range [ a owl:Class ;
owl:unionOf ( gr:BusinessEntity s:Organization )
] ;
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:CEE_7_4 a mv:PlugType ;
rdfs:comment "The CEE 7/3 socket and CEE 7/4 plug are commonly called Schuko. The socket (which is often, in error, also referred to as CEE 7/4) has a predominantly circular recess which is 17.5 mm (0.689 in) deep with two symmetrical round apertures and two earthing clips on the sides of the socket positioned to ensure that the earth is always engaged before live pin contact is made. The plug pins are 4.8 by 19 mm (0.189 by 0.748 in)."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "CEE 7/4"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/AC_power_plugs_and_sockets#CEE_7/5_socket_and_CEE_7/6_plug_(French;_Type_E)> ;
mv:ocmConnectionID "28" ;
skos:altLabel "Type F"@en , "Schuko"@de ;
foaf:depiction <https://upload.wikimedia.org/wikipedia/commons/e/ef/Schuko_plug_and_socket.png> .
mv:timeEndValue a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the end value of a time period."@en ;
rdfs:domain mv:TimeSpecification ;
rdfs:isDefinedBy mv: ;
rdfs:label "time end value"@en , "Endzeit"@de ;
rdfs:range xsd:float ;
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:currentInA a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the current of a charger or plug in ampere."@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( mv:Plug mv:Charger mv:ElectricVehicle )
] ;
rdfs:isDefinedBy mv: ;
rdfs:label "Stromstärke in A"@de , "current in A"@en ;
rdfs:range xsd:double .
mv:impactOnRoadLayout
a owl:DatatypeProperty ;
rdfs:comment "The impact on the road layout of a situation record."@en ;
rdfs:domain mv:Impact ;
rdfs:isDefinedBy mv: ;
rdfs:label "impact on road layout"@en ;
rdfs:range xsd:string ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2019-08-16"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2019-08-16"^^xsd:date .
mv:IEC_60309_16A_2_E a mv:PlugType ;
rdfs:comment "IEC 60309 (formerly IEC 309 and CEE 17, also published by CENELEC as EN 60309) is an international standard from the International Electrotechnical Commission (IEC) for \"plugs, socket-outlets and couplers for industrial purposes\". The blue P+N+E, 6h (180°) plug is a single phase connector. In particular this smallest (16 A) variant has become especially common in camping vehicles and sockets found in caravan parks and marinas throughout Europe."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "IEC_60309 16A 2+E"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/IEC_60309> ;
mv:ocmConnectionID "4" ;
skos:altLabel "Blue Commando (2P+E)"@en ;
foaf:depiction <https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/CEE_16A_230V_Wandsteckdose_Pinning.png/800px-CEE_16A_230V_Wandsteckdose_Pinning.png> .
s:ParkingFacility a rdfs:Class ;
rdfs:comment "A parking lot or other parking facility." ;
rdfs:isDefinedBy s: ;
rdfs:label "ParkingFacility" .
mv:NoParkAndRideInformation
a mv:CivicStructureStatus ;
rdfs:comment "No park and ride information will be available until the specified time."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "No park and ride information"@en , "Keine P+R-Informationen"@de .
mv:NEMA_5-20R a mv:PlugType ;
rdfs:comment "NEMA connectors are power plugs and receptacles used for AC mains electricity in North America and other countries that use the standards set by the US National Electrical Manufacturers Association. All NEMA 5 devices are three-wire grounding devices (hot-neutral-ground) rated for 125 V maximum."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "NEMA 5-20R"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/NEMA_connector#NEMA_5> ;
mv:ocmConnectionID "9" ;
foaf:depiction <https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Electrical_outlet_with_label.jpg/1280px-Electrical_outlet_with_label.jpg> .
s:openingHoursSpecification
a owl:ObjectProperty , rdf:Property ;
rdfs:comment "Indicates the general opening hours for a business or civic structure."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy s: ;
rdfs:label "opening hours specification"@en ;
rdfs:range s:OpeningHoursSpecification .
mv:isOccupied a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates that a civic structure like a parking space or a charger is occupied at the moment."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy mv: ;
rdfs:label "ist besetzt"@de , "is occupied"@en ;
rdfs:range xsd:boolean .
mv:Validity a owl:Class ;
rdfs:comment "The validity of a situation record."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Validity"@en ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date ;
owl:equivalentClass datex:Validity ;
vs:term_status "testing" .
mv:PrimaryLocation a owl:Class ;
rdfs:comment "The primary location of an AlertC location describing roadworks."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "PrimaryLocation"@en ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:creator <http://np00.github.io/#i> ;
dct:modified "2018-01-30"^^xsd:date ;
owl:equivalentClass datex:AlertCMethod2PrimaryPointLocation ;
vs:term_status "testing" .
mv:NEMA_5-15R a mv:PlugType ;
rdfs:comment "NEMA connectors are power plugs and receptacles used for AC mains electricity in North America and other countries that use the standards set by the US National Electrical Manufacturers Association. All NEMA 5 devices are three-wire grounding devices (hot-neutral-ground) rated for 125 V maximum.\n The 5-15R is by far the most common electrical receptacle in North America in buildings built since the mid-twentieth century. It is usually installed in a duplex configuration; two receptacles may share a common circuit or may each be wired separately, sometimes to a switch."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "NEMA 5-15R"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/NEMA_connector#NEMA_5> ;
mv:ocmConnectionID "22" ;
foaf:depiction <https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/NEMA_simplified_pins.svg/765px-NEMA_simplified_pins.svg.png> .
mv:maximumValue a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the maximum value of the capacity."@en ;
rdfs:domain mv:Capacity ;
rdfs:isDefinedBy mv: ;
rdfs:label "Maximalwert"@de , "maximum value"@en ;
rdfs:range xsd:integer ;
dct:created "2015-05-15"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:chargingTimeRemainingInMin
a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the remaining charging time in minutes when an electric vehicle is being actively charged."@en ;
rdfs:domain mv:ElectricVehicle ;
rdfs:isDefinedBy mv: ;
rdfs:label "Verbleibende Ladezeit in min"@de , "Remaining charging time in min"@en ;
rdfs:range xsd:double .
mv:BicycleParkingStation
a rdfs:Class , owl:Class ;
rdfs:comment "Building or structure designed for use as a bicycle parking facility."@en ;
rdfs:isDefinedBy mv: ;
rdfs:label "Bicycle parking station"@en , "Fahrradparkstation"@de ;
rdfs:subClassOf mv:ParkingFacility ;
dct:created "2017-05-10"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en .
mv:situationSpeedLimit
a owl:DatatypeProperty ;
rdfs:comment "The speedlimit of the road where the situation takes place."@en ;
rdfs:domain mv:SituationRecord ;
rdfs:isDefinedBy mv: ;
rdfs:label "situation speed limit"@en ;
rdfs:range xsd:integer ;
dct:conformsTo "https://datex2.eu/" ;