-
Notifications
You must be signed in to change notification settings - Fork 11
/
Core.ttl
728 lines (639 loc) · 29.4 KB
/
Core.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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix s: <http://schema.org/> .
@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix vcard: <http://www.w3.org/2001/vcard-rdf/3.0#> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#>.
@prefix mv: <http://schema.mobivoc.org/#> .
mv:additionalInformation
a rdf:Property, owl:DatatypeProperty ;
dct:created "2017-04-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
rdfs:comment "Further information about the civic structure or facility."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "additional information"@en , "Zusätzliche Information"@de ;
rdfs:range xsd:string .
mv:operatedBy
a rdf:Property, owl:ObjectProperty ;
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
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 <http://schema.mobivoc.org/#> ;
rdfs:label "operated by"@en , "betrieben von"@de ;
rdfs:range [
a owl:Class ;
owl:unionOf (gr:BusinessEntity s:Organization)
];
.
mv:id
dct:created "2017-05-11"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "ID of the entity."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "ID"@de , "ID"@en ;
rdfs:range xsd:string .
mv:ownedBy
dct:created "2017-04-05"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
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 <http://schema.mobivoc.org/#> ;
rdfs:label "owned by"@en , "in Besitz von"@de ;
rdfs:range gr:BusinessEntity .
mv:name
dct:created "2017-04-13"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Name of the civic structure or facility."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Name"@de , "name"@en ;
rdfs:range xsd:string .
mv:picture
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "URL of the picture of a civic structure or facility."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "picture"@en , "Bild"@de ;
rdfs:range xsd:string .
mv:lengthInM
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Indicates the length of an object in meter."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "length in m"@en, "Länge in m"@de ;
rdfs:range xsd:double .
mv:widthInM
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Indicates the width of an object in meter."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "width in m"@en, "Breite in m"@de ;
rdfs:range xsd:double .
mv:heightInM
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Indicates the height of an object in meter."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "height in m"@en, "Höhe in m"@de ;
rdfs:range xsd:double .
mv:vehicleWidthLimitInM
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Indicates the width limit in meter for vehicles using the parking facility."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "vehicle width limit"@en, "Breitenbegrenzung für Fahrzeuge"@de ;
rdfs:range xsd:decimal .
mv:vehicleHeightLimitInM
dct:created "2017-04-13"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
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 <http://schema.mobivoc.org/#> ;
rdfs:label "vechicle height limit"@en, "Höhenbegrenzung für Fahrzeuge"@de ;
rdfs:range xsd:decimal .
mv:vehicleLengthLimitInM
dct:created "2017-04-13"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
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 <http://schema.mobivoc.org/#> ;
rdfs:label "vehicle length limit"@en, "Längenbegrenzung für Fahrzeuge"@de ;
rdfs:range xsd:decimal .
s:CivicStructure
a owl:Class ;
rdfs:comment "A public structure, such as a town hall or concert hall, parking facility or charger."@en ;
rdfs:isDefinedBy <http://schema.org/> ;
rdfs:label "Civic structure"@en, "zivile Einrichtung"@de ;
rdfs:subClassOf s:Place .
s:Place
a owl:Class ;
rdfs:comment "Entities that have a somewhat fixed, physical extension."@en ;
rdfs:isDefinedBy <http://schema.org/> ;
rdfs:label "Place"@en, "Ort"@de .
s:PostalAddress
a owl:Class ;
rdfs:comment "The mailing address."@en ;
rdfs:isDefinedBy <http://schema.org/> ;
rdfs:label "Postal address"@en, "Postanschrift"@de .
s:Vehicle
a owl:Class ;
rdfs:comment "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space."@en ;
rdfs:isDefinedBy <http://schema.org/> ;
rdfs:label "Fahrzeug"@de, "Vehicle"@en .
mv:Capacity
dct:created "2017-04-13"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdfs:Class, owl:Class ;
rdfs:comment "Capacity of a civic structure."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Kapazität"@de, "Capacity"@en ;
.
mv:capacity
dct:created "2017-04-13"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Relates the civic structure to its capacity."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "has capacity"@en, "hat Kapazität"@de ;
rdfs:range mv:Capacity .
mv:RealTimeCapacity
dct:created "2017-04-05"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdfs:Class, owl:Class ;
rdfs:subClassOf mv:Capacity;
rdfs:comment "Real-time capacity of a civic structure."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Echtzeit-Kapazität"@de, "Real time capacity"@en ;
.
s:address
a owl:ObjectProperty ;
rdfs:comment "Physical address of the item."@en ;
#rdfs:domain s:Place ;
rdfs:isDefinedBy <http://schema.org/> ;
rdfs:label "address"@en ;
rdfs:range s:PostalAddress .
geo:lat
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Geographic latitude of a place."@en ;
rdfs:isDefinedBy <http://www.w3.org/2003/01/geo/wgs84_pos#> ;
rdfs:label "latitude"@en ;
rdfs:range xsd:string .
geo:long
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Geographic longitude of a place."@en ;
rdfs:isDefinedBy <http://www.w3.org/2003/01/geo/wgs84_pos#> ;
rdfs:label "longitude"@en ;
rdfs:range xsd:string .
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 <http://purl.org/goodrelations/v1#> ;
rdfs:label "Business entity"@en , "Juristische Person"@de .
mv:access
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Indicates that a civic structure can only be accessed when certain conditions are fullfilled."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "access"@en ;
rdfs:range mv:AccessCondition .
mv:AccessCondition
dct:created "2017-08-29"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a owl:Class ;
rdfs:comment "A condition that has to be fullfilled to get access to a civic structure."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Access condition"@en , "Zugangsbedingung"@de .
mv:validForVehicle
dct:created "2017-08-29"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Indicates that an entity is valid for a specific type of vehicle."@en ;
rdfs:domain [
a owl:Class ;
owl:unionOf (mv:AccessCondition s:PriceSpecification mv:Capacity)
];
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "valid for vehicle"@en, "gültig für Fahrzeug"@de ;
rdfs:range s:Vehicle .
mv:validForUserGroup
dct:created "2017-09-01"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:ObjectProperty ;
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 <http://schema.mobivoc.org/#> ;
rdfs:label "valid for user group"@en , "gültig für Nutzergruppe"@de ;
rdfs:range mv:UserGroup .
mv:UserGroup
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a owl:Class ;
rdfs:comment "A group of users having a common characteristic."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "User group"@en , "Nutzergruppe"@de .
mv:PersonsWithDisabledParkingPermit
rdfs:comment "Persons with disabilities having a special parking permit that gives the right to use parking spaces reserved for disabled people."@en ;
rdfs:label "Persons with disabled parking permit"@en , "Personen mit Behindertenparkausweis"@de ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
a mv:UserGroup .
mv:Women
rdfs:comment "Female persons."@en ;
rdfs:label "Women"@en , "Frauen"@de ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
a mv:UserGroup .
mv:Families
rdfs:comment "Parents with children."@en ;
rdfs:label "Families"@en , "Familien"@de ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
a mv:UserGroup .
mv:Inhabitants
rdfs:comment "People living on the premises."@en ;
rdfs:label "Inhabitants"@en , "Anwohner"@de ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
a mv:UserGroup .
mv:TaxiDrivers
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:label "Taxi drivers"@en , "Taxifahrer"@de ;
skos:prefLabel "Taxi drivers"@en , "Taxifahrer"@de ;
skos:altLabel "Taxicab drivers"@en , "Cab drivers"@en , "Cabbies"@en-uk ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
a mv:UserGroup .
mv:CarsharingUsers
rdfs:comment "User of a car rental model where people rent cars for short periods of time."@en ;
rdfs:label "Carsharing users"@en-us , "Carsharing-Nutzer"@de , "Utilisateurs de l'autopartage"@fr , "Car club users"@en-uk ;
skos:prefLabel "Carsharing users"@en-us , "Carsharing-Nutzer"@de ;
skos:hiddenLabel "Car sharing users"@en , "Car-sharing users"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
a mv:UserGroup .
mv:isOccupied
a rdf:Property, owl:DatatypeProperty ;
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 <http://schema.mobivoc.org/#> ;
rdfs:label "is occupied"@en, "ist besetzt"@de ;
rdfs:range xsd:boolean .
mv:price
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Indicates that a civic structure can be used for a specific price."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "price"@en , "Preis"@de ;
rdfs:range s:PriceSpecification .
s:PriceSpecification
a owl:Class ;
rdfs:comment "A structured value representing a price or price range for an item."@en ;
rdfs:isDefinedBy <http://schema.org/> ;
rdfs:label "Price specification"@en, "Preisspezifikation"@de .
mv:freeOfCharge
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Indicates that the usage of the civic structure is for free."@en ;
rdfs:domain s:PriceSpecification ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "free of charge"@en, "kostenlos"@de ;
rdfs:range xsd:boolean .
mv:unspecifiedCharge
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Indicates that a charge has to be paid for the usage of the civic structure."@en ;
rdfs:domain s:PriceSpecification ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "unspecified charge"@en, "kostenpflichtig"@de ;
rdfs:range xsd:boolean .
mv:dueForTime
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Indicates that a price specification is due for a certain time specification."@en ;
rdfs:domain s:PriceSpecification ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "due for time"@en , "fällig für Zeitdauer"@de ;
rdfs:range mv:TimeSpecification .
mv:TimeSpecification
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a owl:Class ;
rdfs:comment "Specific time a price specification is due for."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Time specification"@en, "Zeitspezifikation"@de .
mv:overnight
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Indicates that a time period overnight is possible."@en ;
rdfs:domain mv:TimeSpecification ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "overnight"@en, "über Nacht"@de ;
rdfs:range xsd:boolean .
mv:timeUnit
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Indicates the time unit a value is specified for."@en ;
rdfs:domain mv:TimeSpecification ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "time unit"@en, "Zeiteinheit"@de ;
rdfs:range xsd:string .
mv:timeStartValue
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Indicates the start value of a time period."@en ;
rdfs:domain mv:TimeSpecification ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "time start value"@en, "Anfangszeit"@de ;
rdfs:range xsd:float .
mv:timeEndValue
dct:created "2017-06-07"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:DatatypeProperty ;
rdfs:comment "Indicates the end value of a time period."@en ;
rdfs:domain mv:TimeSpecification ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "time end value"@en, "Endzeit"@de ;
rdfs:range xsd:float .
s:acceptedPaymentMethod
a owl:ObjectProperty ;
rdfs:comment "The payment method(s) accepted by seller for this offer."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy <http://schema.org/> ;
rdfs:label "accepted payment method"@en ;
rdfs:range s:PaymentMethod .
s:PaymentMethod
a owl:Class ;
rdfs:comment "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction."@en ;
rdfs:isDefinedBy <http://schema.org/> ;
rdfs:label "Payment method"@en, "Zahlungsart"@de .
mv:action
dct:created "2017-06-23"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Indicates which action is applied."@en ;
rdfs:domain mv:AccessCondition ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "action"@en ;
rdfs:range mv:Action .
mv:Action
dct:created "2017-06-23"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a owl:Class ;
rdfs:comment "Action that is done."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Action"@en, "Aktion"@de .
mv:Allow
rdfs:comment "Allow to do an action."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Allow"@en, "Erlauben"@de ;
a mv:Action .
mv:Restrict
rdfs:comment "An action is restricted."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Restrict"@en, "Beschränken"@de ;
a mv:Action ;
.
s:openingHoursSpecification
a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Indicates the general opening hours for a business or civic structure."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy <http://schema.org/> ;
rdfs:label "opening hours specification"@en ;
rdfs:range s:OpeningHoursSpecification .
s:OpeningHoursSpecification
a owl:Class ;
rdfs:comment "A structured value providing information about the opening hours of a place or a certain service inside a place."@en ;
rdfs:isDefinedBy <http://schema.org/> ;
rdfs:label "Opening hours specification"@en, "Öffnungszeiten"@de .
mv:customerOf
dct:created "2017-06-23"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Indicates that a group is customer of a specific business entity."@en ;
rdfs:domain mv:UserGroup ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "customer of"@en , "Kunde von"@de ;
rdfs:range gr:BusinessEntity .
mv:employeeOf
dct:created "2017-06-23"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Indicates that a group is employee of a specific business entity."@en ;
rdfs:domain mv:UserGroup ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "employee of"@en , "Mitarbeiter von"@de ;
rdfs:range gr:BusinessEntity .
mv:civicStructureStatus
dct:created "2017-06-23"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Indicates the current status of the civic structure."@en ;
rdfs:domain s:CivicStructure ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "civic structure status"@en, "hat Status der zivilen Einrichtung"@de ;
rdfs:range mv:CivicStructureStatus .
mv:CivicStructureStatus
dct:created "2018-01-11"^^xsd:date ;
dct:modified "2018-01-12"^^xsd:date ;
vs:term_status "stable"@en ;
a rdfs:Class, owl:Class ;
rdfs:comment "Status information of a civic structure."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Civic structure status"@en, "Status der zivilen Einrichtung"@de .
mv:AllParkingFacilitiesFull
a mv:CivicStructureStatus ;
rdfs:comment "All parking facilities within a specified area are completely occupied."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "All parking facilities full"@en, "Alle Parkmöglichkeiten belegt"@de .
mv:Closed
a mv:CivicStructureStatus ;
rdfs:comment "The civic structure is closed."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Closed"@en , "Geschlossen"@de .
mv:EnoughParkingSpacesAvailable
a mv:CivicStructureStatus ;
rdfs:comment "The civic structure has parking spaces available."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Enough parking spaces available"@en , "Genügend Stellplätze frei"@de .
mv:Faulty
a mv:CivicStructureStatus ;
rdfs:comment "The civic structure is not operating normally."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Defekt"@de, "Faulty"@en .
mv:Full
a mv:CivicStructureStatus ;
rdfs:comment "The civic structure is completely occupied."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Belegt"@de, "Full"@en .
mv:NoParkAndRideInformation
a mv:CivicStructureStatus ;
rdfs:comment "No park and ride information will be available until the specified time."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Keine P+R-Informationen"@de, "No park and ride information"@en .
mv:NoParkingAllowed
a mv:CivicStructureStatus ;
rdfs:comment "No parking allowed until the specified time."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "No parking allowed"@en, "Parken verboten"@de .
mv:NoParkingInformationAvailable
a mv:CivicStructureStatus ;
rdfs:comment "Parking information is not available until a specified time."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Keine Parkinformationen verfügbar"@de, "No parking information available"@en .
mv:NormalParkingRestrictionsLifted
a mv:CivicStructureStatus ;
rdfs:comment "The parking restrictions that normally apply in the specified location have been temporarily lifted."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Normal parking restrictions lifted"@en, "Normale Parkbeschränkungen aufgehoben"@de .
mv:OnlyAFewParkingSpacesAvailable
a mv:CivicStructureStatus ;
rdfs:comment "The civic structure has 95% or greater occupancy of parking spaces."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Nur noch wenige Stellplätze frei"@de, "Only a few parking spaces available"@en .
mv:ParkAndRideServiceNotOperating
a mv:CivicStructureStatus ;
rdfs:comment "Park and ride services are not operating until the specified time."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Kein P+R-Service"@de, "Park and ride service not operating"@en .
mv:ParkAndRideServiceOperating
a mv:CivicStructureStatus ;
rdfs:comment "Park and ride services are operating until the specified time."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "P+R-Service vorhanden"@de, "Park and ride service operating"@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 <http://schema.mobivoc.org/#> ;
rdfs:label "Besondere Parkbeschränkungen in Kraft"@de, "Special parking restrictions in force"@en .
mv:StatusUnknown
a mv:CivicStructureStatus ;
rdfs:comment "The status of the civic structure is unknown."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Status unbekannt"@de, "Status unknown"@en .
mv:Operational
a mv:CivicStructureStatus ;
rdfs:comment "The civic structure is operational."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "in Betrieb"@de, "Operational"@en .
mv:TemporarelyUnavailable
a mv:CivicStructureStatus ;
rdfs:comment "The civic structure is temporarely not available."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "vorübergehend nicht verfügbar"@de, "Temporarely unavailable"@en .
mv:Gone
a mv:CivicStructureStatus ;
rdfs:comment "The civic structure is not available anymore."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "nicht mehr verfügbar"@de, "Gone"@en .
mv:Bicycle
rdfs:comment "A human-or electric powered, pedal-driven, single-track vehicle, having two wheels attached to a frame, one behind the other."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Bicycle"@en, "Fahrrad"@de, "Vélo"@fr ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
a s:Vehicle .
mv:Car
rdfs:comment "A wheeled, self-powered motor vehicle used for transportation."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Auto"@de, "Car"@en, "Voiture"@fr ;
a s:Vehicle ;
skos:altLabel "Pkw"@de .
mv:BusOrCoach
rdfs:comment "A bus is a road vehicle designed to carry passengers. Coaches are luxury busses, usually in service for long distance travel."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Coach"@en, "Bus"@de ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
a s:Vehicle .
mv:Truck
rdfs:comment "A motor vehicle designed to transport cargo."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Truck"@en, "Lkw"@de ;
a s:Vehicle .
mv:Motorbike
rdfs:comment "A single-track, two-wheeled motor vehicle."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Motorbike"@en, "Motorrad"@de ;
skos:prefLabel "Motorbike"@en, "Motorrad"@de, "Moto"@fr ;
skos:altLabel "Motorcycle"@en ;
a s:Vehicle .
mv:RecreationalVehicle
rdfs:comment "A motor vehicle or trailer equipped with living space and amenities found in a home."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Recreational vehicle"@en, "Wohnmobil"@de ;
a s:Vehicle .
mv:ElectricVehicle
a rdfs:Class, owl:Class ;
rdfs:comment "Vehicle that uses one or more electric motors or traction motors for propulsion."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Electric Vehicle"@en, "Elektrofahrzeug"@de ;
skos:prefLabel "Electric Vehicle"@en, "Elektrofahrzeug"@de ;
skos:altLabel "EV"@en ;
rdfs:subClassOf s:Vehicle .
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 <http://schema.mobivoc.org/#> ;
rdfs:label "Battery Electric Vehicle"@en, "Batteriebetriebenes Fahrzeug"@de ;
skos:prefLabel "Battery Electric Vehicle"@en, "Elektrofahrzeug"@de ;
skos:altLabel "BEV"@en, "Battery-only electric vehicle"@en, "BOEV"@en, "Full electric vehicle"@en, "FEV"@en, "All-electric vehicle"@en ;
rdfs:subClassOf mv:ElectricVehicle .
mv:PluginHybridElectricVehicle
a rdfs:Class, owl:Class ;
rdfs:comment "Hybrid electric vehicle that can be recharged by plugging it in to an external source of electric power as well by its on-board engine and generator."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "Plug-in hybrid electric vehicle"@en, "Plug-in-Hybrid"@de ;
skos:prefLabel "Plug-in hybrid electric vehicle"@en, "Plug-in-Hybrid"@de ;
skos:altLabel "PHEV"@en ;
rdfs:subClassOf mv:ElectricVehicle .
mv:brand
a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the brand of a product."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "brand"@en , "Marke"@de ;
rdfs:range xsd:string .
mv:model
a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the model of a product."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "model"@en , "Modell"@de ;
rdfs:range xsd:string .
mv:maximumRangeElectricInKm
a owl:DatatypeProperty , rdf:Property ;
rdfs:comment "Indicates the maximum range of an electric vehicle in km."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "maximum range in km"@en , "maximale Reichweite in km"@de ;
rdfs:domain s:Vehicle ;
rdfs:range xsd:double .