forked from mduckham/SMURF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DV_project.rdf
2056 lines (1456 loc) · 142 KB
/
DV_project.rdf
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
<?xml version="1.0"?>
<rdf:RDF xmlns="http://www.semanticweb.org/DV_project/"
xml:base="http://www.semanticweb.org/DV_project/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:dcam="http://purl.org/dc/dcam/"
xmlns:prov="http://www.w3.org/ns/prov#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:terms="http://purl.org/dc/terms/">
<owl:Ontology rdf:about="http://www.semanticweb.org/DV_project"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/dcam/rangeIncludes -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/dcam/rangeIncludes"/>
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
<!-- http://purl.org/dc/elements/1.1/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source"/>
<!-- http://purl.org/dc/terms/abstract -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/abstract">
<rdfs:comment xml:lang="en">A summary of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Abstract</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/description"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/accrualPeriodicity -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/accrualPeriodicity">
<terms:description xml:lang="en">Recommended practice is to use a value from the Collection Description Frequency Vocabulary [[DCMI-COLLFREQ](https://dublincore.org/groups/collections/frequency/)].</terms:description>
<rdfs:comment xml:lang="en">The frequency with which items are added to a collection.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Accrual Periodicity</rdfs:label>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description">
<terms:description xml:lang="en">Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.</terms:description>
<rdfs:comment xml:lang="en">An account of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Description</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/description"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/hasVersion -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/hasVersion"/>
<!-- http://purl.org/dc/terms/relation -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/relation"/>
<!-- http://purl.org/dc/terms/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/source">
<terms:description xml:lang="en">This property is intended to be used with non-literal values. The described resource may be derived from the related resource in whole or in part. Best practice is to identify the related resource by means of a URI or a string conforming to a formal identification system.</terms:description>
<rdfs:comment xml:lang="en">A related resource from which the described resource is derived.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Source</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/source"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/relation"/>
</owl:AnnotationProperty>
<!-- http://purl.org/vocab/vann/usageNote -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/usageNote"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#changeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#changeNote"/>
<!-- http://www.w3.org/2004/02/skos/core#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition"/>
<!-- http://www.w3.org/2004/02/skos/core#editorialNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#editorialNote"/>
<!-- http://www.w3.org/2004/02/skos/core#example -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#example"/>
<!-- http://www.w3.org/2004/02/skos/core#note -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#note"/>
<!-- http://www.w3.org/2004/02/skos/core#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#scopeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#scopeNote"/>
<!-- http://www.w3.org/ns/prov#category -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#category"/>
<!-- http://www.w3.org/ns/prov#component -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#component"/>
<!-- http://www.w3.org/ns/prov#constraints -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#constraints"/>
<!-- http://www.w3.org/ns/prov#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#definition"/>
<!-- http://www.w3.org/ns/prov#dm -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#dm"/>
<!-- http://www.w3.org/ns/prov#inverse -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#inverse"/>
<!-- http://www.w3.org/ns/prov#n -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#n"/>
<!-- http://www.w3.org/ns/prov#qualifiedForm -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#qualifiedForm"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://schema.org/geo -->
<rdfs:Datatype rdf:about="http://schema.org/geo"/>
<!-- http://www.opengis.net/ont/geosparql#dggsLiteral -->
<rdfs:Datatype rdf:about="http://www.opengis.net/ont/geosparql#dggsLiteral">
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/dggs-literal"/>
<rdfs:seeAlso rdf:resource="http://www.opengis.net/doc/AS/dggs/2.0"/>
<skos:definition xml:lang="en">A textual serialization of a Discrete Global Grid (DGGS) Geometry object.</skos:definition>
<skos:example rdf:resource="http://www.opengis.net/spec/geosparql/1.1/specification.html#B.1.2.4"/>
<skos:example> "<https://w3id.org/dggs/auspix> OrdinateList (R3234)"^^<http://www.opengis.net/ont/geosparql#dggsLiteral></skos:example>
<skos:prefLabel xml:lang="en">DGGS Literal</skos:prefLabel>
<skos:scopeNote xml:lang="en">This datatype is not expected to be used directly but to serve as an abstract datatype for a series of specific DGGS literal types, for specific DGGS implementations</skos:scopeNote>
</rdfs:Datatype>
<!-- http://www.opengis.net/ont/geosparql#geoJSONLiteral -->
<rdfs:Datatype rdf:about="http://www.opengis.net/ont/geosparql#geoJSONLiteral">
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geojson-literal"/>
<rdfs:seeAlso rdf:resource="https://tools.ietf.org/html/rfc7946"/>
<skos:definition xml:lang="en">A GeoJSON serialization of a Geometry object.</skos:definition>
<skos:example rdf:resource="http://www.opengis.net/spec/geosparql/1.1/specification.html#B.1.2.4"/>
<skos:prefLabel xml:lang="en">GeoJSON Literal</skos:prefLabel>
</rdfs:Datatype>
<!-- http://www.opengis.net/ont/geosparql#gmlLiteral -->
<rdfs:Datatype rdf:about="http://www.opengis.net/ont/geosparql#gmlLiteral">
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/gml-literal"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/gml-literal"/>
<rdfs:seeAlso rdf:resource="https://portal.ogc.org/files/?artifact_id=20509"/>
<skos:definition xml:lang="en">A GML serialization of a Geometry object.</skos:definition>
<skos:example rdf:resource="http://www.opengis.net/spec/geosparql/1.1/specification.html#B.1.2.4"/>
<skos:prefLabel xml:lang="en">GML Literal</skos:prefLabel>
</rdfs:Datatype>
<!-- http://www.opengis.net/ont/geosparql#kmlLiteral -->
<rdfs:Datatype rdf:about="http://www.opengis.net/ont/geosparql#kmlLiteral">
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/kml-literal"/>
<rdfs:seeAlso rdf:resource="https://www.ogc.org/standards/kml/"/>
<skos:definition xml:lang="en">A KML serialization of a Geometry object.</skos:definition>
<skos:example rdf:resource="http://www.opengis.net/spec/geosparql/1.1/specification.html#B.1.2.4"/>
<skos:prefLabel xml:lang="en">KML Literal</skos:prefLabel>
</rdfs:Datatype>
<!-- http://www.opengis.net/ont/geosparql#wktLiteral -->
<rdfs:Datatype rdf:about="http://www.opengis.net/ont/geosparql#wktLiteral">
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/wkt-literal"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/wkt-literal"/>
<rdfs:seeAlso rdf:resource="https://portal.ogc.org/files/?artifact_id=25355"/>
<skos:definition xml:lang="en">A Well-known Text serialization of a Geometry object.</skos:definition>
<skos:example rdf:resource="http://www.opengis.net/spec/geosparql/1.1/specification.html#B.2.2.2"/>
<skos:prefLabel xml:lang="en">Well-known Text Literal</skos:prefLabel>
</rdfs:Datatype>
<!-- http://www.w3.org/2001/XMLSchema#anySimpleType -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#anySimpleType"/>
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/accessRights -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/accessRights">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/rights"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://purl.org/dc/terms/RightsStatement"/>
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/RightsStatement"/>
<terms:description xml:lang="en">Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.</terms:description>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#accessRights-002"/>
<rdfs:comment xml:lang="en">Information about who access the resource or an indication of its security status.</rdfs:comment>
<rdfs:comment xml:lang="en">Information about who can access the resource or an indication of its security status.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Access Rights</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/coverage -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/coverage">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://purl.org/dc/terms/LocationPeriodOrJurisdiction"/>
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/Location"/>
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/Period"/>
<terms:description xml:lang="en">Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges.</terms:description>
<terms:description xml:lang="en">Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names [[TGN](https://www.getty.edu/research/tools/vocabulary/tgn/index.html)]. Where appropriate, named places or time periods may be used in preference to numeric identifiers such as sets of coordinates or date ranges. Because coverage is so broadly defined, it is preferable to use the more specific subproperties Temporal Coverage and Spatial Coverage.</terms:description>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#coverageT-001"/>
<rdfs:comment xml:lang="en">The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.</rdfs:comment>
<rdfs:comment xml:lang="en">The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Coverage</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/license -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/license">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/rights"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://purl.org/dc/terms/LicenseDocument"/>
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/LicenseDocument"/>
<terms:description xml:lang="en">Recommended practice is to identify the license document with a URI. If this is not possible or feasible, a literal value that identifies the license may be provided.</terms:description>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#license-002"/>
<rdfs:comment xml:lang="en">A legal document giving official permission to do something with the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">License</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/publisher -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/publisher">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Agent"/>
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/Agent"/>
<rdfs:comment xml:lang="en">An entity responsible for making the resource available.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Publisher</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/rights -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/rights">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://purl.org/dc/terms/RightsStatement"/>
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/RightsStatement"/>
<terms:description xml:lang="en">Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.</terms:description>
<terms:description xml:lang="en">Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. Recommended practice is to refer to a rights statement with a URI. If this is not possible or feasible, a literal value (name, label, or short text) may be provided.</terms:description>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#rightsT-001"/>
<rdfs:comment xml:lang="en">Information about rights held in and over the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Rights</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/spatial -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/spatial">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/coverage"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://purl.org/dc/terms/Location"/>
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/Location"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#spatial-003"/>
<rdfs:comment xml:lang="en">Spatial characteristics of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Spatial Coverage</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/temporal -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/temporal">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/coverage"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://purl.org/dc/terms/PeriodOfTime"/>
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/PeriodOfTime"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#temporal-003"/>
<rdfs:comment xml:lang="en">Temporal characteristics of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Temporal Coverage</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.opengis.net/ont/geosparql#defaultGeometry -->
<owl:ObjectProperty rdf:about="http://www.opengis.net/ont/geosparql#defaultGeometry">
<owl:equivalentProperty rdf:resource="http://www.opengis.net/ont/geosparql#hasDefaultGeometry"/>
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasGeometry"/>
<rdfs:domain rdf:resource="http://www.opengis.net/ont/geosparql#Feature"/>
<rdfs:range rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/feature-properties"/>
<skos:definition xml:lang="en">The default Geometry to be used in spatial calculations. It is usually the most detailed Geometry.</skos:definition>
<skos:example rdf:resource="http://www.opengis.net/spec/geosparql/1.1/specification.html#B.1.2.2"/>
<skos:example rdf:resource="http://www.opengis.net/spec/geosparql/1.1/specification.html#B.2.1"/>
<skos:note xml:lang="en">Duplicate properties defaultGeometry and hasDefaultGeometry exist because of an inconsistency between ontology and documentation in GeoSPARQL 1.0. Only hasDefaultGeometry is described in the documention.</skos:note>
<skos:prefLabel xml:lang="en">default geometry</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://www.opengis.net/ont/geosparql#hasBoundingBox -->
<owl:ObjectProperty rdf:about="http://www.opengis.net/ont/geosparql#hasBoundingBox">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasGeometry"/>
<rdfs:domain rdf:resource="http://www.opengis.net/ont/geosparql#Feature"/>
<rdfs:range rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/feature-properties"/>
<skos:definition xml:lang="en">The minimum or smallest bounding or enclosing box of a given Feature.</skos:definition>
<skos:example rdf:resource="http://www.opengis.net/spec/geosparql/1.1/specification.html#B.1.2.2"/>
<skos:prefLabel xml:lang="en">has bounding box</skos:prefLabel>
<skos:scopeNote xml:lang="en">The target is a Geometry that defines a rectilinear region whose edges are aligned with the axes of the coordinate reference system, which exactly contains the Feature, for example an instance of http://www.opengis.net/ont/sf#envelope.</skos:scopeNote>
</owl:ObjectProperty>
<!-- http://www.opengis.net/ont/geosparql#hasCentroid -->
<owl:ObjectProperty rdf:about="http://www.opengis.net/ont/geosparql#hasCentroid">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasGeometry"/>
<rdfs:domain rdf:resource="http://www.opengis.net/ont/geosparql#Feature"/>
<rdfs:range rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/feature-properties"/>
<skos:definition xml:lang="en">The arithmetic mean position of all the Geometry points of a given Feature.</skos:definition>
<skos:example rdf:resource="http://www.opengis.net/spec/geosparql/1.1/specification.html#B.1.2.2"/>
<skos:prefLabel xml:lang="en">has centroid</skos:prefLabel>
<skos:scopeNote xml:lang="en">The target Geometry shall describe a point, for example an instance of http://www.opengis.net/ont/sf#Point.</skos:scopeNote>
</owl:ObjectProperty>
<!-- http://www.opengis.net/ont/geosparql#hasDefaultGeometry -->
<owl:ObjectProperty rdf:about="http://www.opengis.net/ont/geosparql#hasDefaultGeometry">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasGeometry"/>
<rdfs:domain rdf:resource="http://www.opengis.net/ont/geosparql#Feature"/>
<rdfs:range rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/feature-properties"/>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/feature-properties"/>
<skos:definition xml:lang="en">The default Geometry to be used in spatial calculations. It is usually the most detailed Geometry.</skos:definition>
<skos:note xml:lang="en">Duplicate properties defaultGeometry and hasDefaultGeometry exist because of an inconsistency between ontology and documentation in GeoSPARQL 1.0. Only hasDefaultGeometry is described in the documention.</skos:note>
<skos:prefLabel xml:lang="en">has default geometry</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://www.opengis.net/ont/geosparql#hasGeometry -->
<owl:ObjectProperty rdf:about="http://www.opengis.net/ont/geosparql#hasGeometry">
<rdfs:domain rdf:resource="http://www.opengis.net/ont/geosparql#Feature"/>
<rdfs:range rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
</owl:ObjectProperty>
<!-- http://www.semanticweb.org/DV_project#hasGeometryProvenance -->
<owl:ObjectProperty rdf:about="http://www.semanticweb.org/DV_project#hasGeometryProvenance">
<rdfs:domain rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/vcard/ns#email -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/vcard/ns#email">
<owl:equivalentProperty rdf:resource="http://www.w3.org/2006/vcard/ns#hasEmail"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Organization"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Person"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/vcard/ns#hasEmail -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/vcard/ns#hasEmail">
<rdfs:range rdf:resource="http://www.w3.org/2006/vcard/ns#Email"/>
<rdfs:comment xml:lang="en">To specify the electronic mail address for communication with the object</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/vcard/ns"/>
<rdfs:label xml:lang="en">has email</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/vcard/ns#hasTelephone -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/vcard/ns#hasTelephone">
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Organization"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/vcard/ns#TelephoneType"/>
<rdfs:comment xml:lang="en">To specify the telephone number for telephony communication with the object</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/vcard/ns"/>
<rdfs:label xml:lang="en">has telephone</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dcat#contactPoint -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#contactPoint">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/vcard/ns#Kind"/>
<rdfs:comment xml:lang="es">Información relevante de contacto para el recurso catalogado. Se recomienda el uso de vCard.</rdfs:comment>
<rdfs:comment xml:lang="it">Informazioni di contatto rilevanti per la risorsa catalogata. Si raccomanda l'uso di vCard.</rdfs:comment>
<rdfs:comment xml:lang="en">Relevant contact information for the catalogued resource. Use of vCard is recommended.</rdfs:comment>
<rdfs:comment xml:lang="da">Relevante kontaktoplysninger for den katalogiserede ressource. Anvendelse af vCard anbefales.</rdfs:comment>
<rdfs:comment xml:lang="cs">Relevantní kontaktní informace pro katalogizovaný zdroj. Doporučuje se použít slovník VCard.</rdfs:comment>
<rdfs:comment xml:lang="fr">Relie un jeu de données à une information de contact utile en utilisant VCard.</rdfs:comment>
<rdfs:comment xml:lang="el">Συνδέει ένα σύνολο δεδομένων με ένα σχετικό σημείο επικοινωνίας, μέσω VCard.</rdfs:comment>
<rdfs:comment xml:lang="ar">تربط قائمة البيانات بعنوان اتصال موصف باستخدام VCard</rdfs:comment>
<rdfs:comment xml:lang="ja">データセットを、VCardを用いて提供されている適切な連絡先情報にリンクします。</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/vocab-dcat/"/>
<rdfs:label xml:lang="es">Punto de contacto</rdfs:label>
<rdfs:label xml:lang="en">contact point</rdfs:label>
<rdfs:label xml:lang="cs">kontaktní bod</rdfs:label>
<rdfs:label xml:lang="da">kontaktpunkt</rdfs:label>
<rdfs:label xml:lang="fr">point de contact</rdfs:label>
<rdfs:label xml:lang="it">punto di contatto</rdfs:label>
<rdfs:label xml:lang="el">σημείο επικοινωνίας</rdfs:label>
<rdfs:label xml:lang="ar">عنوان اتصال</rdfs:label>
<rdfs:label xml:lang="ja">窓口</rdfs:label>
<skos:definition xml:lang="es">Información relevante de contacto para el recurso catalogado. Se recomienda el uso de vCard.</skos:definition>
<skos:definition xml:lang="it">Informazioni di contatto rilevanti per la risorsa catalogata. Si raccomanda l'uso di vCard.</skos:definition>
<skos:definition xml:lang="en">Relevant contact information for the catalogued resource. Use of vCard is recommended.</skos:definition>
<skos:definition xml:lang="da">Relevante kontaktoplysninger for den katalogiserede ressource. Anvendelse af vCard anbefales.</skos:definition>
<skos:definition xml:lang="cs">Relevantní kontaktní informace pro katalogizovaný zdroj. Doporučuje se použít slovník VCard.</skos:definition>
<skos:definition xml:lang="fr">Relie un jeu de données à une information de contact utile en utilisant VCard.</skos:definition>
<skos:definition xml:lang="el">Συνδέει ένα σύνολο δεδομένων με ένα σχετικό σημείο επικοινωνίας, μέσω VCard.</skos:definition>
<skos:definition xml:lang="ar">تربط قائمة البيانات بعنوان اتصال موصف باستخدام VCard</skos:definition>
<skos:definition xml:lang="ja">データセットを、VCardを用いて提供されている適切な連絡先情報にリンクします。</skos:definition>
<skos:editorialNote xml:lang="en">Status: English Definition text modified by DCAT revision team, Italian, Spanish and Czech translations provided, other translations pending.</skos:editorialNote>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dcat#distribution -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#distribution">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/dcat#Distribution"/>
<rdfs:comment xml:lang="en">An available distribution of the dataset.</rdfs:comment>
<rdfs:comment xml:lang="fr">Connecte un jeu de données à des distributions disponibles.</rdfs:comment>
<rdfs:comment xml:lang="cs">Dostupná distribuce datové sady.</rdfs:comment>
<rdfs:comment xml:lang="da">En tilgængelig repræsentation af datasættet.</rdfs:comment>
<rdfs:comment xml:lang="es">Una distribución disponible del conjunto de datos.</rdfs:comment>
<rdfs:comment xml:lang="it">Una distribuzione disponibile per il set di dati.</rdfs:comment>
<rdfs:comment xml:lang="el">Συνδέει ένα σύνολο δεδομένων με μία από τις διαθέσιμες διανομές του.</rdfs:comment>
<rdfs:comment xml:lang="ar">تربط قائمة البيانات بطريقة أو بشكل يسمح الوصول الى البيانات</rdfs:comment>
<rdfs:comment xml:lang="ja">データセットを、その利用可能な配信に接続します。</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/vocab-dcat/"/>
<rdfs:label xml:lang="cs">distribuce</rdfs:label>
<rdfs:label xml:lang="es">distribución</rdfs:label>
<rdfs:label xml:lang="da">distribution</rdfs:label>
<rdfs:label xml:lang="en">distribution</rdfs:label>
<rdfs:label xml:lang="fr">distribution</rdfs:label>
<rdfs:label xml:lang="it">distribuzione</rdfs:label>
<rdfs:label xml:lang="el">διανομή</rdfs:label>
<rdfs:label xml:lang="ar">توزيع</rdfs:label>
<rdfs:label xml:lang="ja">データセット配信</rdfs:label>
<skos:altLabel xml:lang="da">har distribution</skos:altLabel>
<skos:altLabel xml:lang="en">has distribution</skos:altLabel>
<skos:definition xml:lang="en">An available distribution of the dataset.</skos:definition>
<skos:definition xml:lang="fr">Connecte un jeu de données à des distributions disponibles.</skos:definition>
<skos:definition xml:lang="cs">Dostupná distribuce datové sady.</skos:definition>
<skos:definition xml:lang="da">En tilgængelig repræsentation af datasættet.</skos:definition>
<skos:definition xml:lang="es">Una distribución disponible del conjunto de datos.</skos:definition>
<skos:definition xml:lang="it">Una distribuzione disponibile per il set di dati.</skos:definition>
<skos:definition xml:lang="el">Συνδέει ένα σύνολο δεδομένων με μία από τις διαθέσιμες διανομές του.</skos:definition>
<skos:definition xml:lang="ar">تربط قائمة البيانات بطريقة أو بشكل يسمح الوصول الى البيانات</skos:definition>
<skos:definition xml:lang="ja">データセットを、その利用可能な配信に接続します。</skos:definition>
<skos:editorialNote xml:lang="en">Status: English Definition text modified by DCAT revision team, translations pending (except for Italian, Spanish and Czech).</skos:editorialNote>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dcat#mediaType -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#mediaType">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Distribution"/>
<rdfs:range rdf:resource="http://purl.org/dc/terms/MediaType"/>
<rdfs:comment xml:lang="fr">Cette propriété doit être utilisée quand c'est définit le type de média de la distribution en IANA, sinon dcterms:format DOIT être utilisé avec différentes valeurs.</rdfs:comment>
<rdfs:comment xml:lang="es">Esta propiedad debe ser usada cuando está definido el tipo de media de la distribución en IANA, de otra manera dcterms:format puede ser utilizado con diferentes valores</rdfs:comment>
<rdfs:comment xml:lang="it">Il tipo di media della distribuzione come definito da IANA</rdfs:comment>
<rdfs:comment xml:lang="da">Medietypen for distributionen som den er defineret af IANA.</rdfs:comment>
<rdfs:comment xml:lang="en">The media type of the distribution as defined by IANA</rdfs:comment>
<rdfs:comment xml:lang="cs">Typ média distribuce definovaný v IANA.</rdfs:comment>
<rdfs:comment xml:lang="el">Η ιδιότητα αυτή ΘΑ ΠΡΕΠΕΙ να χρησιμοποιείται όταν ο τύπος μέσου μίας διανομής είναι ορισμένος στο IANA, αλλιώς η ιδιότητα dcterms:format ΔΥΝΑΤΑΙ να χρησιμοποιηθεί με διαφορετικές τιμές.</rdfs:comment>
<rdfs:comment xml:lang="ar">يجب استخدام هذه الخاصية إذا كان نوع الملف معرف ضمن IANA</rdfs:comment>
<rdfs:comment xml:lang="ja">このプロパティーは、配信のメディア・タイプがIANAで定義されているときに使用すべきで(SHOULD)、そうでない場合には、dcterms:formatを様々な値と共に使用できます(MAY)。</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/vocab-dcat/"/>
<rdfs:label xml:lang="en">media type</rdfs:label>
<rdfs:label xml:lang="da">medietype</rdfs:label>
<rdfs:label xml:lang="es">tipo de media</rdfs:label>
<rdfs:label xml:lang="it">tipo di media</rdfs:label>
<rdfs:label xml:lang="cs">typ média</rdfs:label>
<rdfs:label xml:lang="fr">type de média</rdfs:label>
<rdfs:label xml:lang="el">τύπος μέσου</rdfs:label>
<rdfs:label xml:lang="ar">نوع الميديا</rdfs:label>
<rdfs:label xml:lang="ja">メディア・タイプ</rdfs:label>
<skos:changeNote xml:lang="it">Il range di dcat:mediaType è stato ristretto come parte della revisione di DCAT.</skos:changeNote>
<skos:changeNote xml:lang="cs">Obor hodnot dcat:mediaType byl zúžen v této revizi DCAT.</skos:changeNote>
<skos:changeNote xml:lang="en">The range of dcat:mediaType has been tightened as part of the revision of DCAT.</skos:changeNote>
<skos:definition xml:lang="fr">Cette propriété doit être utilisée quand c'est définit le type de média de la distribution en IANA, sinon dcterms:format DOIT être utilisé avec différentes valeurs.</skos:definition>
<skos:definition xml:lang="es">Esta propiedad debe ser usada cuando está definido el tipo de media de la distribución en IANA, de otra manera dcterms:format puede ser utilizado con diferentes valores.</skos:definition>
<skos:definition xml:lang="it">Il tipo di media della distribuzione come definito da IANA.</skos:definition>
<skos:definition xml:lang="da">Medietypen for distributionen som den er defineret af IANA.</skos:definition>
<skos:definition xml:lang="en">The media type of the distribution as defined by IANA.</skos:definition>
<skos:definition xml:lang="cs">Typ média distribuce definovaný v IANA.</skos:definition>
<skos:definition xml:lang="el">Η ιδιότητα αυτή ΘΑ ΠΡΕΠΕΙ να χρησιμοποιείται όταν ο τύπος μέσου μίας διανομής είναι ορισμένος στο IANA, αλλιώς η ιδιότητα dcterms:format ΔΥΝΑΤΑΙ να χρησιμοποιηθεί με διαφορετικές τιμές.</skos:definition>
<skos:definition xml:lang="ar">يجب استخدام هذه الخاصية إذا كان نوع الملف معرف ضمن IANA</skos:definition>
<skos:definition xml:lang="ja">このプロパティーは、配信のメディア・タイプがIANAで定義されているときに使用すべきで(SHOULD)、そうでない場合には、dcterms:formatを様々な値と共に使用できます(MAY)。</skos:definition>
<skos:editorialNote xml:lang="en">Status: English Definition text modified by DCAT revision team, Italian and Czech translation provided, other translations pending. Note some inconsistency on def vs. usage.</skos:editorialNote>
<skos:scopeNote xml:lang="da">Denne egenskab BØR anvendes hvis distributionens medietype optræder i 'IANA media types registry' https://www.iana.org/assignments/media-types/, ellers KAN egenskaben dcterms:format anvendes med et andet udfaldsrum.</skos:scopeNote>
<skos:scopeNote xml:lang="es">Esta propiedad DEBERÍA usarse cuando el 'media type' de la distribución está definido en el registro IANA de 'media types' https://www.iana.org/assignments/media-types/, de lo contrario, dcterms:format PUEDE usarse con distintos valores.</skos:scopeNote>
<skos:scopeNote xml:lang="it">Questa proprietà DEVE essere usata quando il tipo di media della distribuzione è definito nel registro dei tipi di media IANA https://www.iana.org/assignments/media-types/, altrimenti dcterms:format PUO 'essere usato con differenti valori.</skos:scopeNote>
<skos:scopeNote xml:lang="cs">Tato vlastnost BY MĚLA být použita, je-li typ média distribuce definován v registru IANA https://www.iana.org/assignments/media-types/. V ostatních případech MŮŽE být použita vlastnost dcterms:format s jinými hodnotami.</skos:scopeNote>
<skos:scopeNote xml:lang="en">This property SHOULD be used when the media type of the distribution is defined in the IANA media types registry https://www.iana.org/assignments/media-types/, otherwise dcterms:format MAY be used with different values.</skos:scopeNote>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dcat#packageFormat -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#packageFormat">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Distribution"/>
<rdfs:range rdf:resource="http://purl.org/dc/terms/MediaType"/>
<rdfs:comment xml:lang="cs">Balíčkový formát souboru, ve kterém je jeden či více souborů seskupeno dohromady, např. aby bylo možné stáhnout sadu souvisejících souborů naráz.</rdfs:comment>
<rdfs:comment xml:lang="es">El formato del archivo en que se agrupan uno o más archivos de datos, e.g. para permitir que un conjunto de archivos relacionados se bajen juntos.</rdfs:comment>
<rdfs:comment xml:lang="da">Format til pakning af data med henblik på distribution af en eller flere relaterede datafiler der samles til en enhed med henblik på samlet distribution. </rdfs:comment>
<rdfs:comment xml:lang="it">Il formato di impacchettamento della distribuzione in cui uno o più file di dati sono raggruppati insieme, ad es. per abilitare un insieme di file correlati da scaricare insieme.</rdfs:comment>
<rdfs:comment xml:lang="en">The package format of the distribution in which one or more data files are grouped together, e.g. to enable a set of related files to be downloaded together.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-dcat-2/"/>
<rdfs:label xml:lang="es">formato de empaquetado</rdfs:label>
<rdfs:label xml:lang="it">formato di impacchettamento</rdfs:label>
<rdfs:label xml:lang="cs">formát balíčku</rdfs:label>
<rdfs:label xml:lang="en">packaging format</rdfs:label>
<rdfs:label xml:lang="da">pakkeformat</rdfs:label>
<skos:changeNote xml:lang="en">New property added in DCAT 2.</skos:changeNote>
<skos:changeNote xml:lang="cs">Nová vlastnost přidaná ve verzi DCAT 2.</skos:changeNote>
<skos:changeNote xml:lang="es">Nueva propiedad agregada en DCAT 2.</skos:changeNote>
<skos:changeNote xml:lang="it">Nuova proprietà aggiunta in DCAT 2.</skos:changeNote>
<skos:changeNote xml:lang="da">Ny egenskab tilføjet i DCAT 2.</skos:changeNote>
<skos:definition xml:lang="cs">Balíčkový formát souboru, ve kterém je jeden či více souborů seskupeno dohromady, např. aby bylo možné stáhnout sadu souvisejících souborů naráz.</skos:definition>
<skos:definition xml:lang="es">El formato del archivo en que se agrupan uno o más archivos de datos, e.g. para permitir que un conjunto de archivos relacionados se bajen juntos.</skos:definition>
<skos:definition xml:lang="it">Il formato di impacchettamento della distribuzione in cui uno o più file di dati sono raggruppati insieme, ad es. per abilitare un insieme di file correlati da scaricare insieme.</skos:definition>
<skos:definition xml:lang="en">The package format of the distribution in which one or more data files are grouped together, e.g. to enable a set of related files to be downloaded together.</skos:definition>
<skos:scopeNote xml:lang="da">Denne egenskab kan anvendes hvis filerne i en distribution er pakket, fx i en TAR-fil, en Frictionless Data Package eller en Bagit-fil. Formatet BØR udtrykkes ved en medietype som defineret i 'IANA media types registry', hvis der optræder en relevant medietype dér: https://www.iana.org/assignments/media-types/.</skos:scopeNote>
<skos:scopeNote xml:lang="es">Esta propiedad se debe usar cuando los archivos de la distribución están empaquetados, por ejemplo en un archivo TAR, Frictionless Data Package o Bagit. El formato DEBERÍA expresarse usando un 'media type', tales como los definidos en el registro IANA de 'media types' https://www.iana.org/assignments/media-types/, si está disponibles.</skos:scopeNote>
<skos:scopeNote xml:lang="it">Questa proprietà deve essere utilizzata quando i file nella distribuzione sono impacchettati, ad esempio in un file TAR, Frictionless Data Package o Bagit. Il formato DOVREBBE essere espresso utilizzando un tipo di supporto come definito dal registro dei tipi di media IANA https://www.iana.org/assignments/media-types/, se disponibili.</skos:scopeNote>
<skos:scopeNote xml:lang="cs">Tato vlastnost se použije, když jsou soubory v distribuci zabaleny, např. v souboru TAR, v balíčku Frictionless Data Package nebo v souboru Bagit. Formát BY MĚL být vyjádřen pomocí typu média definovaného v registru IANA https://www.iana.org/assignments/media-types/, pokud existuje.</skos:scopeNote>
<skos:scopeNote xml:lang="en">This property to be used when the files in the distribution are packaged, e.g. in a TAR file, a Frictionless Data Package or a Bagit file. The format SHOULD be expressed using a media type as defined by IANA media types registry https://www.iana.org/assignments/media-types/, if available.</skos:scopeNote>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dqv#hasQualityMeasurement -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dqv#hasQualityMeasurement">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/dqv#QualityMeasurement"/>
<rdfs:comment xml:lang="en">Refers to the performed quality measurements. Quality measurements can be performed to any kind of resource (e.g., a dataset, a linkset, a graph, a set of triples). However, in the DQV context, this property is generally expected to be used in statements in which subjects are instances of dcat:Dataset or dcat:Distribution.</rdfs:comment>
<rdfs:label xml:lang="en">has quality measurement</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dqv#inCategory -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dqv#inCategory">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dqv#Dimension"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/dqv#Category"/>
<vann:usageNote xml:lang="en">Categories are meant to systematically organize dimensions. The Data Quality Vocabulary defines no specific cardinality constraints for dqv:inCategory, since distinct quality frameworks might have different perspectives over a dimension. A dimension may therefore be associated to more than one category. However, those who define new quality metrics should try to avoid this as much as possible and assign only one category to the dimensions they define.</vann:usageNote>
<rdfs:comment xml:lang="en">Represents the category a dimension is grouped in.</rdfs:comment>
<rdfs:label xml:lang="en">in category</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dqv#inDimension -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dqv#inDimension">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dqv#Metric"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/dqv#Dimension"/>
<vann:usageNote xml:lang="en">Dimensions are meant to systematically organize metrics, quality certificates and quality annotations. The Data Quality Vocabulary defines no specific cardinality constraints for dqv:inDimension, since distinct quality frameworks might have different perspectives over a metric. A metric may therefore be associated to more than one dimension. However, those who define new quality metrics should try to avoid this as much as possible and assign only one dimension to the metrics they define. More than one dimension can be indicated for each quality annotation or certificate.</vann:usageNote>
<rdfs:comment xml:lang="en">Represents the dimensions a quality metric, certificate and annotation allow a measurement of.</rdfs:comment>
<rdfs:label xml:lang="en">in dimension</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dqv#isMeasurementOf -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dqv#isMeasurementOf">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dqv#QualityMeasurement"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/dqv#Metric"/>
<rdfs:comment xml:lang="en">Indicates the metric being observed.</rdfs:comment>
<rdfs:label xml:lang="en">is measurement of</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#agent -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#agent">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Agent"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasAssociatedWith -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasAssociatedWith">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Agent"/>
<rdfs:comment xml:lang="en">An prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:label>wasAssociatedWith</rdfs:label>
<prov:category>starting-point</prov:category>
<prov:component>agents-responsibility</prov:component>
<prov:inverse>wasAssociateFor</prov:inverse>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Association"/>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedAssociation"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasAttributedTo -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasAttributedTo">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Agent"/>
<rdfs:comment xml:lang="en">Attribution is the ascribing of an entity to an agent.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:label>wasAttributedTo</rdfs:label>
<prov:category>starting-point</prov:category>
<prov:component>agents-responsibility</prov:component>
<prov:definition xml:lang="en">Attribution is the ascribing of an entity to an agent.</prov:definition>
<prov:inverse>contributed</prov:inverse>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Attribution"/>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedAttribution"/>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasAttributedTo"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subPropertyOf"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:comment>Attribution is a particular case of trace (see http://www.w3.org/TR/prov-dm/#concept-trace), in the sense that it links an entity to the agent that ascribed it.</rdfs:comment>
<prov:definition>IF wasAttributedTo(e2,ag1,aAttr) holds, THEN wasInfluencedBy(e2,ag1) also holds. </prov:definition>
</owl:Axiom>
<!-- http://www.w3.org/ns/prov#wasDerivedFrom -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasDerivedFrom">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:comment xml:lang="en">The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:label>wasDerivedFrom</rdfs:label>
<prov:category>starting-point</prov:category>
<prov:component>derivations</prov:component>
<prov:definition xml:lang="en">A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.</prov:definition>
<prov:inverse>hadDerivation</prov:inverse>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedDerivation"/>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subPropertyOf"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:comment>Derivation is a particular case of trace (see http://www.w3.org/TR/prov-dm/#term-trace), since it links an entity to another entity that contributed to its existence.</rdfs:comment>
</owl:Axiom>
<!-- http://www.w3.org/ns/prov#wasEndedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasEndedBy">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:comment xml:lang="en">End is when an activity is deemed to have ended. An end may refer to an entity, known as trigger, that terminated the activity.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:label>wasEndedBy</rdfs:label>
<prov:category>expanded</prov:category>
<prov:component>entities-activities</prov:component>
<prov:inverse>ended</prov:inverse>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#End"/>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedEnd"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasGeneratedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasGeneratedBy">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:label>wasGeneratedBy</rdfs:label>
<prov:category>starting-point</prov:category>
<prov:component>entities-activities</prov:component>
<prov:inverse>generated</prov:inverse>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Generation"/>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedGeneration"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasInfluencedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasInfluencedBy">
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Agent"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Agent"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasInformedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasInformedBy">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:comment xml:lang="en">An activity a2 is dependent on or informed by another activity a1, by way of some unspecified entity that is generated by a1 and used by a2.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:label>wasInformedBy</rdfs:label>
<prov:category>starting-point</prov:category>
<prov:component>entities-activities</prov:component>
<prov:inverse>informed</prov:inverse>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Communication"/>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedCommunication"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasStartedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasStartedBy">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:comment xml:lang="en">Start is when an activity is deemed to have started. A start may refer to an entity, known as trigger, that initiated the activity.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:label>wasStartedBy</rdfs:label>
<prov:category>expanded</prov:category>
<prov:component>entities-activities</prov:component>
<prov:inverse>started</prov:inverse>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Start"/>
<prov:qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedStart"/>
</owl:ObjectProperty>
<!-- https://linked.data.gov.au/def/fsdf/hasCustodian -->
<owl:ObjectProperty rdf:about="https://linked.data.gov.au/def/fsdf/hasCustodian">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/publisher"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#agent"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="https://linked.data.gov.au/def/fsdf/Agency"/>
<skos:definition xml:lang="en">The Agency that manages this Dataset</skos:definition>
<skos:prefLabel xml:lang="en">has custodian</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://linked.data.gov.au/def/fsdf/hasJurisdiction -->
<owl:ObjectProperty rdf:about="https://linked.data.gov.au/def/fsdf/hasJurisdiction">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/publisher"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#agent"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="https://linked.data.gov.au/def/fsdf/Jurisdiction"/>
<skos:definition xml:lang="en">The Jurisdiction responsible for this object</skos:definition>
<skos:prefLabel xml:lang="en">has jurisdiction</skos:prefLabel>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/alternative -->
<owl:DatatypeProperty rdf:about="http://purl.org/dc/terms/alternative">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/title"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<terms:description xml:lang="en">The distinction between titles and alternative titles is application-specific.</terms:description>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#alternative-003"/>
<rdfs:comment xml:lang="en">An alternative name for the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Alternative Title</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.org/dc/terms/available -->
<owl:DatatypeProperty rdf:about="http://purl.org/dc/terms/available">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/>
<terms:description xml:lang="en">Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.</terms:description>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#available-003"/>
<rdfs:comment xml:lang="en">Date (often a range) that the resource became or will become available.</rdfs:comment>
<rdfs:comment xml:lang="en">Date that the resource became or will become available.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Date Available</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.org/dc/terms/created -->
<owl:DatatypeProperty rdf:about="http://purl.org/dc/terms/created">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/>
<terms:description xml:lang="en">Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.</terms:description>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#created-003"/>
<rdfs:comment xml:lang="en">Date of creation of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Date Created</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.org/dc/terms/date -->
<owl:DatatypeProperty rdf:about="http://purl.org/dc/terms/date">