-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vocabularies - Properties.json
2066 lines (2066 loc) · 76.6 KB
/
Vocabularies - Properties.json
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
[
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#accessControl",
"parent_uri": "",
"domain": "http://www.w3.org/2006/gen/ont#InformationResource",
"range": "http://www.w3.org/2006/gen/ont#InformationResource",
"label": "access control",
"description": "The Access Control file for this information resource. This may of course be a virtual resource implemented by the access control system. Note also HTTP's header Link: foo.meta ;rel=meta can be used for this."
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#accessTo",
"parent_uri": "",
"domain": "http://www.w3.org/ns/auth/acl#Authorization",
"range": "http://www.w3.org/2006/gen/ont#InformationResource",
"label": "to",
"description": "The information resource to which access is being granted."
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#accessToClass",
"parent_uri": "",
"domain": "http://www.w3.org/ns/auth/acl#Authorization",
"range": "http://www.w3.org/2000/01/rdf-schema#Class",
"label": "to all in",
"description": "A class of information resources to which access is being granted."
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#agent",
"parent_uri": "",
"domain": "http://www.w3.org/ns/auth/acl#Authorization",
"range": "http://xmlns.com/foaf/0.1/Agent",
"label": "agent",
"description": "A person or social entity to being given the right"
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#agentClass",
"parent_uri": "",
"domain": "http://www.w3.org/ns/auth/acl#Authorization",
"range": "http://www.w3.org/2000/01/rdf-schema#Class",
"label": "agent class",
"description": "A class of persons or social entities to being given the right"
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#agentGroup",
"parent_uri": "",
"domain": "http://www.w3.org/ns/auth/acl#Authorization",
"range": "http://www.w3.org/2006/vcard/ns#Group",
"label": "agent group",
"description": "A group of persons or social entities to being given the right"
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#default",
"parent_uri": "",
"domain": "http://www.w3.org/ns/auth/acl#Authorization",
"range": "",
"label": "default access for things in this",
"description": "A directory for which this authorization is used for new files in the directory."
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#defaultForNew",
"parent_uri": "",
"domain": "http://www.w3.org/ns/auth/acl#Authorization",
"range": "",
"label": "default access for new things in the object",
"description": "THIS IS OBSOLETE AS OF 2017-08-01. See 'default'. Was: A directory for which this authorization is used for new files in the directory."
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#delegates",
"parent_uri": "",
"domain": "",
"range": "http://xmlns.com/foaf/0.1/Agent",
"label": "delegates",
"description": "Delegates a person or another agent to act on behalf of the agent. For example, Alice delegates Bob to act on behalf of Alice for ACL purposes."
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#mode",
"parent_uri": "",
"domain": "http://www.w3.org/ns/auth/acl#Authorization",
"range": "http://www.w3.org/2000/01/rdf-schema#Class",
"label": "access mode",
"description": "A mode of access such as read or write."
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#origin",
"parent_uri": "",
"domain": "http://www.w3.org/ns/auth/acl#Authorization",
"range": "http://www.w3.org/ns/auth/acl#Origin",
"label": "origin",
"description": "A web application, identified by its Origin, such as <https://scripts.example.com>, being given the right."
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#owner",
"parent_uri": "",
"domain": "",
"range": "http://xmlns.com/foaf/0.1/Agent",
"label": "owner",
"description": "The person or other agent which owns this. For example, the owner of a file in a filesystem. There is a sense of right to control. Typically defaults to the agent who craeted something but can be changed."
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/attributedTo",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/Storyline",
"range": "http://purl.org/ontology/storyline/Attribution",
"label": "attributedTo",
"description": "Associates a storyline to its attribution. Provides for interpretation provenance through attribution"
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/contains",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/StorylineSlot",
"range": "http://purl.org/ontology/storyline/StorylineComponent",
"label": "contains",
"description": "Associates a Slot to a StorylineComponent contained therein. Can be a news event or another storyline"
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/dateCreated",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/StorylineComponent",
"range": "http://www.w3.org/2001/XMLSchema#dateTime",
"label": "dateCreated",
"description": "The date a storyline was created"
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/follows",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/StorylineSlot",
"range": "http://purl.org/ontology/storyline/StorylineSlot",
"label": "follows",
"description": "Allows one or more slots to be sequenced. Slot A follows Slot B."
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/hasChapter",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/Storyline",
"range": "http://purl.org/ontology/storyline/StorylineSlot",
"label": "hasChapter",
"description": "Associates a slot to a storyline as a chapter of an existing storyline."
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/hasDevelopment",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/Storyline",
"range": "http://purl.org/ontology/storyline/StorylineSlot",
"label": "hasDevelopment",
"description": "Associates a slot to a storyline as a development of an existing storyline."
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/hasSlot",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/Storyline",
"range": "http://purl.org/ontology/storyline/StorylineSlot",
"label": "hasSlot",
"description": "Associates a slot to a storyline. A storyline can have many slots"
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/hasUpdate",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/Storyline",
"range": "http://purl.org/ontology/storyline/StorylineSlot",
"label": "hasUpdate",
"description": "Associates a slot to a storyline as an update to an existing storyline."
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/index",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/StorylineSlot",
"range": "http://www.w3.org/2001/XMLSchema#integer",
"label": "index",
"description": "A slot index. Allows slots to be ordered numerically"
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/synopsis",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/Storyline",
"range": "http://www.w3.org/2000/01/rdf-schema#Literal",
"label": "synopsis",
"description": "The synopsis of a storyline"
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/time",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/StorylineSlot",
"range": "http://www.w3.org/2006/time#TemporalEntity",
"label": "time",
"description": "The time of a slot. A Temporal entity, an interval. Allows slots to be ordered temporally."
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/topic",
"parent_uri": "",
"domain": "http://purl.org/ontology/storyline/Storyline",
"range": "http://purl.org/ontology/storyline/Topic",
"label": "topic",
"description": "Associates a slot to a topic"
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#themeTaxonomy",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Catalog",
"range": "http://www.w3.org/2004/02/skos/core#ConceptScheme",
"label": "theme taxonomy",
"description": "The knowledge organization system (KOS) used to classify catalog's datasets."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#dataset",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Catalog",
"range": "http://www.w3.org/ns/dcat#Dataset",
"label": "dataset",
"description": "Links a catalog to a dataset that is part of the catalog."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#record",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Catalog",
"range": "http://www.w3.org/ns/dcat#CatalogRecord",
"label": "record",
"description": "Links a catalog to its records."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#theme",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Dataset",
"range": "http://www.w3.org/2004/02/skos/core#Concept",
"label": "theme",
"description": "The main category of the dataset. A dataset can have multiple themes. The set of skos:Concepts used to categorize the datasets are organized in a skos:ConceptScheme describing all the categories and their relations in the catalog."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#keyword",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Dataset",
"range": "http://www.w3.org/2000/01/rdf-schema#Literal",
"label": "keyword",
"description": "A keyword or tag describing the dataset."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#contactPoint",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Dataset",
"range": "http://www.w3.org/2006/vcard/ns#Kind",
"label": "contact point",
"description": "Links a dataset to relevant contact information which is provided using VCard."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#distribution",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Dataset",
"range": "http://www.w3.org/ns/dcat#Distribution",
"label": "distribution",
"description": "Connects a dataset to one of its available distributions."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#landingPage",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Dataset",
"range": "http://xmlns.com/foaf/0.1/Document",
"label": "landing page",
"description": "A Web page that can be navigated to in a Web browser to gain access to the dataset, its distributions and/or additional information."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#accessURL",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Distribution",
"range": "http://www.w3.org/2000/01/rdf-schema#Resource",
"label": "access URL",
"description": "Could be any kind of URL that gives access to a distribution of the dataset. E.g. landing page, download, feed URL, SPARQL endpoint. Use when your catalog does not have information on which it is or when it is definitely not a download. The value is a URL. If the distribution(s) are accessible only through a landing page (i.e. direct download URLs are not known), then the landing page link should be duplicated as accessURL on a distribution."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#downloadURL",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Distribution",
"range": "http://www.w3.org/2000/01/rdf-schema#Resource",
"label": "download URL",
"description": "This is a direct link to a downloadable file in a given format. E.g. CSV file or RDF file. The format is described by the distribution's dc:format and/or dcat:mediaType. The value is a URL."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#byteSize",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Distribution",
"range": "http://www.w3.org/2000/01/rdf-schema#Literal",
"label": "byte size",
"description": "The size of a distribution in bytes. The size in bytes can be approximated when the precise size is not known. The literal value of dcat:byteSize should by typed as xsd:decimal"
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#mediaType",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Distribution",
"range": "http://purl.org/dc/terms/MediaTypeOrExtent",
"label": "media type",
"description": "This property SHOULD be used when the media type of the distribution is defined in IANA, otherwise dct:format MAY be used with different values."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#dataQuality",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Dataset",
"range": "",
"label": "data quality (Deprecated)",
"description": "describes the quality of data e.g. precision. This should not be used to describe the data collection characteristics, other more specialized statistical properties can be used instead. This term has been deprecated"
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#dataDictionary",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Dataset",
"range": "",
"label": "data dictionary (Deprecated)",
"description": "links a dataset to a dictionary that helps interpreting the data. This term has been deprecated"
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#granularity",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Dataset",
"range": "",
"label": "granularity (Deprecated)",
"description": "describes the level of granularity of data in a dataset. The granularity can be in time, place etc. This term has been deprecated"
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#size",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Distribution",
"range": "",
"label": "size (Deprecated)",
"description": "the size of a distribution. This term has been deprecated"
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#bytes",
"parent_uri": "",
"domain": "http://www.w3.org/ns/dcat#Distribution",
"range": "http://www.w3.org/2001/XMLSchema#integer",
"label": "size in bytes (Deprecated)",
"description": "describe size of resource in bytes. This term has been deprecated"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#drivingManeuverType",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#drivingManeuver",
"range": "{driveStraightFullSight ,driveStraightHalfSight, driveBehind ,changeLaneLeft ,turnLeft ,turnRight ,takeOver ,stop,start, turnAround, slowDown ,speedUp ,increaseAttention, stayLeft,stayRight, brakeReady, gearDown ,gearUp,park, crossOncomingLane, checkLeft,changeLaneRight}",
"label": "drivingManeuverType",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#rightLaneId",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#laneIsAdjacentTo",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"label": "rightLaneId",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#leftLaneId",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#laneIsAdjacentTo",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"label": "leftLaneId",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#age",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#driver",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "age",
"description": "Age of the driver; interval range between [16;100]"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#startLaneId",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#laneIsConnectedTo",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"label": "startLaneId",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#longitude",
"parent_uri": "",
"domain": "",
"range": "http://www.w3.org/2001/XMLSchema#float",
"label": "longitude",
"description": [
-180,
180
]
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficLightDistance",
"parent_uri": "",
"domain": "",
"range": "http://www.w3.org/2001/XMLSchema#float",
"label": "trafficLightDistance",
"description": "Distance between the own vehicle and the traffic light."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#isPartOf",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#technicalFeature",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownVehicle",
"label": "isPartOf",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#restrict",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#roadConditions http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficObject",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#drivingManeuver",
"label": "restrict",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#riskWillingness",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#driver",
"range": "{low, medium,high}",
"label": "riskWillingness",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#unordinaryBehavior",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participant",
"range": "http://www.w3.org/2001/XMLSchema#boolean",
"label": "unordinaryBehavior",
"description": "A participant is behaving out of norm."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#isObstacle",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participantHasRelationToVehicle",
"range": "http://www.w3.org/2001/XMLSchema#boolean",
"label": "isObstacle",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#degreeOfExperience",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#driver",
"range": "{beginner, advanced,expert }",
"label": "degreeOfExperience",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#localContextType",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#localContext",
"range": "{intersection, levelCrossing,tunnel,roundabout,bridge,crosswalk}",
"label": "localContextType",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#source",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#MetaInformation",
"range": "{ staticallyProvided,onBoardSensing, gis,foreignSensingSystem,logicallyDerived}",
"label": "source",
"description": "Source that is providing information about the object"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#attributeIsDerivable",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#isDerivable",
"range": "http://www.w3.org/2001/XMLSchema#string",
"label": "attributeIsDerivable",
"description": "Name of attribute: given as class.attribute name"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#derivationParameters",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#isDerivable",
"range": "http://www.w3.org/2001/XMLSchema#string",
"label": "derivationParameters",
"description": "Attributes needed for derivation in list form: class1.attr1, class2.attr2, ..."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#derivationRule",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#isDerivable",
"range": "http://www.w3.org/2001/XMLSchema#string",
"label": "derivationRule",
"description": "Rule that must be used for attribute derivation"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#visibility",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#roadConditions",
"range": "{veryGood, good,sufficient,bad}",
"label": "visibility",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#steeringWheelAngle",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownVehicle",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "steeringWheelAngle",
"description": [
0,
360
]
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#connectedThroughManeuver",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#laneIsConnectedTo",
"range": "{straight, left, right}",
"label": "connectedThroughManeuver",
"description": "Driving maneuver through which two lanes are reachable, e.g straight, left, right"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#speed",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownVehicle",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "speed",
"description": "Fastest car on earth goes about 400km/h, so this is the absolute maximum value. [0,400]"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#drive",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#driver",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownVehicle",
"label": "drive",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#risk",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#drivingManeuver",
"range": "{low, medium, high}",
"label": "risk",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownMaximumSpeed",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownVehicle",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "ownMaximumSpeed",
"description": [
0,
400
]
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#laneWidth",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"range": "http://www.w3.org/2001/XMLSchema#float",
"label": "laneWidth",
"description": "Lane width in meters; positive floating point value"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#drivesIn",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownVehicle",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#context",
"label": "drivesIn",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#endLaneId",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#laneIsConnectedTo",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"label": "endLaneId",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#laneType",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"range": "{frontageRoad, track, accelerationLane, decelerationLane, breakDownLane, busStop}",
"label": "laneType",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#laneDirection",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"range": "{straight,slightRight,sharpRight,right,slightLeft, sharpLeft,uTurnRight, uTurnLeft, left}",
"label": "laneDirection",
"description": "Values according to TeleAtlas-Data-Format-Specification"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#direction",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participantHasRelationToVehicle",
"range": "{front,frontLeft,frontRight,left,right,rear,rearLeft, rearRight}",
"label": "direction",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#throttleIntensity",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownVehicle",
"range": "{light, medium, heavy}",
"label": "throttleIntensity",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#has",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#context",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"label": "has",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#gear",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownVehicle",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "gear",
"description": "Current gear of the vehicle;"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#validity",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#MetaInformation",
"range": "{permanent,infrequent, frequent}",
"label": "validity",
"description": "Frequency of change for statically provided objects"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#quality",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#MetaInformation",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "quality",
"description": "Quality value for the object, provided by source"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#stopTime",
"parent_uri": "",
"domain": "",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "stopTime",
"description": "Start time as unix time value: number of seconds since 00:00:00 GMT, Jan 1 1970 OR inf for valid until further notice"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#plan",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#driver",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#drivingManeuver",
"label": "plan",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#dependsOn",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#localContext",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#spatialContext",
"label": "dependsOn",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#directionMovement",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participantHasRelationToVehicle",
"range": "{towards,away, parallel}",
"label": "directionMovement",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#safetyDistance",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#drivingManeuver",
"range": "http://www.w3.org/2001/XMLSchema#float",
"label": "safetyDistance",
"description": "Necessary safety distance for a driving maneuver. Positive float value."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#relationPartId",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participantHasRelationToVehicle",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participant",
"label": "relationPartId",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#surfaceTemperature",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#roadConditions",
"range": "http://www.w3.org/2001/XMLSchema#float",
"label": "surfaceTemperature",
"description": "Temperatur of the road surface; floating point value in the range of [-50;80]"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#width",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownVehicle",
"range": "http://www.w3.org/2001/XMLSchema#float",
"label": "width",
"description": "Minimun value is 0"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#surfaceCondition",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#roadConditions",
"range": "{wet,slippery,dry}",
"label": "surfaceCondition",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#markingType",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#marking",
"range": "{edgeline,centerline, doubleWhiteLine, stopline, laneIndicator}",
"label": "markingType",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#spatialContextType",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#spatialContext",
"range": "{highway,semiMotorway, ruralRoad, city}",
"label": "spatialContextType",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficLightState",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficLight",
"range": "{stop, conditionalStop, getReady, freeWay, outOfOrder}",
"label": "trafficLightState",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#hasAdditionalInformation",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ContextObject http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ObjectRelationship",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#MetaInformation",
"label": "hasAdditionalInformation",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#isAllowedIn",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participant",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#context",
"label": "isAllowedIn",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#generalSpeedLimit",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#spatialContext",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "generalSpeedLimit",
"description": "Minimum value is 0"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#numberOfLanes",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#context",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "numberOfLanes",
"description": "Value is derived from 'has'-object property. Minimum value iss 0"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participantSpeed",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participant",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "participantSpeed",
"description": [
0,
400
]
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#dop",
"parent_uri": "",
"domain": "",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "dop",
"description": [
1,
50
]
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#isValidFor",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficObject",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"label": "isValidFor",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#usedLaneId",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participantUseLane",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"label": "usedLaneId",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#partLength",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participant",
"range": "http://www.w3.org/2001/XMLSchema#float",
"label": "partLength",
"description": [
0,
20
]
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#distance",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participantHasRelationToVehicle",
"range": "http://www.w3.org/2001/XMLSchema#float",
"label": "distance",
"description": "Distance in meters. Minimum value is 0"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#airTemperature",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#roadConditions",
"range": "http://www.w3.org/2001/XMLSchema#float",
"label": "airTemperature",
"description": [
-50,
80
]
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#relationOwnVehicleId",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participantHasRelationToVehicle",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownVehicle",
"label": "relationOwnVehicleId",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#heading",
"parent_uri": "",
"domain": "",
"range": "http://www.w3.org/2001/XMLSchema#int",
"label": "heading",
"description": [
0,
360
]
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#execute",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#driver",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#drivingManeuver",
"label": "execute",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participantType",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participant",
"range": "{pedestrian,bike, skater, vehicle, truck,motorbike,moped,tractor,bus,tram, emergencyVehicle}",
"label": "participantType",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficObjId",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficObjectIsValidForLane",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficObject",
"label": "trafficObjId",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#validLaneId",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficObjectIsValidForLane",
"range": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"label": "validLaneId",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#technicalFeatureState",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#technicalFeature",
"range": "{active,ready, failure}",
"label": "technicalFeatureState",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#technicalFeatureType",
"parent_uri": "",
"domain": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#technicalFeature",
"range": "{light,headlight,turnIndicatorLeft,turnIndicatorRight,fogLight,fogTailLight,abs,esp,acc,wipersFront,wipersBack,blueLight}",
"label": "technicalFeatureType",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#usingPartId",