-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathdcat-ap_2.0.0.rdf
1518 lines (1342 loc) · 104 KB
/
dcat-ap_2.0.0.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"?>
<!DOCTYPE rdf:RDF [
<!ENTITY dct "http://purl.org/dc/terms/" >
<!ENTITY foaf "http://xmlns.com/foaf/0.1/" >
<!ENTITY dcat "http://www.w3.org/ns/dcat#" >
<!ENTITY adms "http://www.w3.org/ns/adms#" >
<!ENTITY vann "http://purl.org/vocab/vann/" >
<!ENTITY xhv "http://www.w3.org/1999/xhtml/vocab#">
<!ENTITY cc "http://creativecommons.org/ns#" >
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY vcard "http://www.w3.org/2006/vcard/ns#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY sdmx "http://purl.org/linked-data/sdmx#" >
<!ENTITY qb "http://purl.org/linked-data/cube#" >
<!ENTITY wdrs "http://www.w3.org/2007/05/powder-s#" >
<!ENTITY voaf "http://purl.org/vocommons/voaf#" >
<!ENTITY skos "http://www.w3.org/2004/02/skos/core#" >
<!ENTITY skosDoc "http://www.w3.org/TR/skos-primer/">
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY documentation "http://data.europa.eu/w21/6be4d036-2e6d-4528-a888-0e9a0e29c579">
<!ENTITY documentationTitle "DCAT Application Profile for Data Portals in Europe - Final">
<!ENTITY methodology "https://joinup.ec.europa.eu/document/process-and-methodology-developing-core-vocabularies">
<!ENTITY methodologyTitle "Process and Methodology for Developing Core Vocabularies">
<!ENTITY spdx "http://spdx.org/rdf/terms#">
]>
<!-- About the application profile -->
<rdf:RDF xmlns:cc="http://creativecommons.org/ns#"
xmlns:dct="http://purl.org/dc/terms/"
xmlns:adms="http://www.w3.org/ns/adms#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:odrl="http://www.w3.org/ns/odrl/2/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:dcat="http://www.w3.org/ns/dcat#"
xmlns:lcon="http://www.w3.org/ns/locn#"
xmlns:sioc="http://rdfs.org/sioc/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:prov="http://www.w3.org/ns/prov#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:schema="http://schema.org/"
xmlns:vcard="http://www.w3.org/2006/vcard/ns#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:voaf="http://purl.org/vocommons/voaf#"
xmlns:wdrs="http://www.w3.org/2007/05/powder-s#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:spdx="http://spdx.org/rdf/terms#"
xmlns:time="http://www.w3.org/2006/time#"
xmlns:dcatap="http://data.europa.eu/r5r/"
xmlns:xhv="&xhv;">
<owl:Ontology rdf:about="https://joinup.ec.europa.eu/solution/dcat-application-profile-data-portals-europe">
<rdfs:label xml:lang="en">DCAT Application Profile for Data Portals in Europe</rdfs:label>
<dct:modified rdf:datatype="xsd:date">2019-11-15</dct:modified>
<dct:abstract xml:lang="en">The DCAT Application profile for data portals in Europe (DCAT-AP) is a specification based on the Data Catalogue vocabulary (DCAT) for describing public sector datasets in Europe. Its basic use case is to enable a cross-data portal search for data sets and make public sector data better searchable across borders and sectors. This can be achieved by the exchange of descriptions of data sets among data portals.</dct:abstract>
<cc:attributionName xml:lang="en">European Commission</cc:attributionName>
<rdfs:comment xml:lang="en">This document specifies the set of RDF classes and properties used in the DCAT Application profile for data portals in Europe (DCAT-AP).</rdfs:comment>
<owl:versionInfo>2.0.0</owl:versionInfo>
<dct:publisher rdf:resource="http://publications.europa.eu/resource/authority/corporate-body/DIGIT"/>
<cc:attributionURL rdf:resource="http://ec.europa.eu/"/>
<adms:versionNotes xml:lang="en">Change log for DCAT-AP v2.0.0: see github</adms:versionNotes>
<xhv:prev rdf:resource="https://joinup.ec.europa.eu/solution/dcat-application-profile-data-portals-europe/release/200"/>
<wdrs:describedby rdf:resource="http://data.europa.eu/w21/6be4d036-2e6d-4528-a888-0e9a0e29c579"/>
<voaf:specializes rdf:resource="http://www.w3.org/ns/dcat#"/>
<dct:relation rdf:resource="http://data.europa.eu/w21/6be4d036-2e6d-4528-a888-0e9a0e29c579"/>
<dct:license>
<rdf:Description rdf:about="https://creativecommons.org/licenses/by/4.0/">
<dct:title>Attribution 4.0 International (CC BY 4.0)</dct:title>
<cc:attributionName>European Commission</cc:attributionName>
<cc:attributionURL rdf:resource="http://ec.europa.eu/"/>
</rdf:Description>
</dct:license>
<foaf:logo>
<rdf:Description rdf:about="https://joinup.ec.europa.eu/sites/default/files/imagecache/community_logo/DCAT_application_profile_for_European_data_portals_logo_0.png">
<rdfs:label>DCAT-AP logo</rdfs:label>
</rdf:Description>
</foaf:logo>
<dct:conformsTo>
<rdf:Description rdf:about="&methodology;">
<dct:title>&methodologyTitle;</dct:title>
</rdf:Description>
</dct:conformsTo>
<dct:creator rdf:parseType="Resource">
<rdfs:seeAlso rdf:resource="http://makxdekkers.com/"/>
<foaf:name>Makx Dekkers</foaf:name>
<foaf:homepage rdf:resource="http://makxdekkers.com/"/>
<schema:affiliation rdf:parseType="Resource">
<foaf:name>AMI Consult</foaf:name>
<foaf:homepage rdf:resource="http://www.makxdekkers.com/"/>
</schema:affiliation>
</dct:creator>
<dct:creator rdf:parseType="Resource">
<rdfs:seeAlso rdf:resource="http://www.deri.ie/users/vassilios-peristeras/"/>
<foaf:name>Vassilios Peristeras</foaf:name>
<foaf:homepage rdf:resource="http://www.deri.ie/users/vassilios-peristeras/"/>
<schema:affiliation rdf:parseType="Resource">
<foaf:name>European Commission</foaf:name>
<foaf:homepage rdf:resource="http://ec.europa.eu/"/>
</schema:affiliation>
</dct:creator>
<dct:creator rdf:parseType="Resource">
<rdfs:seeAlso rdf:resource="http://nikosloutas.com/"/>
<foaf:name>Nikolaos Loutas</foaf:name>
<foaf:homepage rdf:resource="http://nikosloutas.com/"/>
<schema:affiliation rdf:parseType="Resource">
<foaf:name>PwC EU Services</foaf:name>
<foaf:homepage rdf:resource="http://www.pwc.com/gx/en/eu-institutions-services/"/>
</schema:affiliation>
</dct:creator>
<dct:creator rdf:parseType="Resource">
<rdfs:seeAlso rdf:resource="https://www.ails.ece.ntua.gr/people/natasa"/>
<foaf:name>Natasa Sofou</foaf:name>
<foaf:homepage rdf:resource="https://www.ails.ece.ntua.gr/people/natasa"/>
<schema:affiliation rdf:parseType="Resource">
<foaf:name>Artificial Intelligence and Learning Systems Laboratory, National Technical University of Athens</foaf:name>
<foaf:homepage rdf:resource="https://www.ails.ece.ntua.gr/"/>
</schema:affiliation>
</dct:creator>
<dct:creator rdf:parseType="Resource">
<foaf:name>Bert Van Nuffelen</foaf:name>
<foaf:homepage rdf:resource="https://www.linkedin.com/in/bert-van-nuffelen-a349634/"/>
<schema:affiliation rdf:parseType="Resource">
<foaf:name>TenForce</foaf:name>
<foaf:homepage rdf:resource="https://tenforce.com"/>
</schema:affiliation>
</dct:creator>
<foaf:maker rdf:parseType="Resource">
<foaf:name>DCAT-AP Working Group</foaf:name>
<foaf:page rdf:resource="https://github.com/SEMICeu/DCAT-AP"/>
<foaf:page rdf:resource="https://joinup.ec.europa.eu/node/64331"/>
</foaf:maker>
</owl:Ontology>
<!-- ####################################### -->
<!-- ##===================================## -->
<!-- ##== CLASSES ==## -->
<!-- ##===================================## -->
<!-- ####################################### -->
<!-- ================================ -->
<!-- == MANDATORY CLASSES == -->
<!-- ================================ -->
<!-- dcat:Catalog -->
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#Catalog">
<vann:usageNote xml:lang="en">Mandatory class. A catalogue or repository that hosts the Datasets being described.</vann:usageNote>
<dct:identifier>dcat:Catalog</dct:identifier>
<rdfs:label xml:lang="en">Catalogue</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/2013/WD-vocab-dcat-20130312/#class-catalog"/>
<rdfs:comment xml:lang="en">A curated collection of metadata about datasets</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<!-- <rdf:type rdf:resource="http://www.w3.org/ns/dcat#Dataset"/> -->
</rdf:Description>
<!-- foaf:Agent -->
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Agent">
<vann:usageNote xml:lang="en">Mandatory class. An entity that is associated with Catalogues and/or Datasets. If the Agent is an organisation, the use of the Organization Ontology is recommended.</vann:usageNote>
<dct:identifier>foaf:Agent</dct:identifier>
<rdfs:label xml:lang="en">Agent</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/spec/#term_Agent" />
<rdfs:comment xml:lang="en">An agent (eg. person, group, software or physical artifact).</rdfs:comment>
</rdf:Description>
<!-- dcat:Dataset -->
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#Dataset">
<vann:usageNote xml:lang="en">Mandatory class. A conceptual entity that represents the information published.</vann:usageNote>
<dct:identifier>dcat:Dataset</dct:identifier>
<rdfs:label xml:lang="en">Dataset</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/2013/WD-vocab-dcat-20130312/#class-dataset"/>
<rdfs:comment xml:lang="en">A collection of data, published or curated by a single source, and available for access or download in one or more formats</rdfs:comment>
</rdf:Description>
<!-- rdfs:Literal -->
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Literal">
<vann:usageNote xml:lang="en">Mandatory class. A literal value such as a string or integer; Literals may be typed, e.g. as a date according to xsd:date. Literals that contain human-readable text have an optional language tag as defined by BCP 47.</vann:usageNote>
<dct:identifier>rdfs:Literal</dct:identifier>
<rdfs:label xml:lang="en">Literal</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/rdf-concepts/#section-Literals"/>
<rdfs:comment xml:lang="en">The class rdfs:Literal is the class of literal values such as strings and integers. Property values such as textual strings are examples of RDF literals.</rdfs:comment>
</rdf:Description>
<!-- rdfs:Resource -->
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Resource">
<vann:usageNote xml:lang="en">Mandatory class. Anything described by RDF.</vann:usageNote>
<dct:identifier>rdfs:Resource</dct:identifier>
<rdfs:label xml:lang="en">Resource</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/rdf-schema/#ch_resource"/>
<rdfs:comment xml:lang="en">All things described by RDF are called resources, and are instances of the class rdfs:Resource. This is the class of everything. All other classes are subclasses of this class. rdfs:Resource is an instance of rdfs:Class.</rdfs:comment>
</rdf:Description>
<!-- ================================ -->
<!-- == RECOMMENDED CLASSES == -->
<!-- ================================ -->
<!-- skos:Concept<-->
<rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#Concept">
<vann:usageNote xml:lang="en">Recommended class - Category: a subject of a Dataset. Optional Class - Publisher type: A type of organisation that acts as a publisher. Optional Class - Status: an indication of the maturity of a Distribution.</vann:usageNote>
<dct:identifier>skos:Concept</dct:identifier>
<rdfs:label xml:lang="en">Category, Publisher type, Status </rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/2013/WD-vocab-dcat-20130312/#class-category-and-category-scheme"/>
<rdfs:comment xml:lang="en">An abstract idea or notion; a unit of thought.</rdfs:comment>
</rdf:Description>
<!-- dcat:Distribution -->
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#Distribution">
<vann:usageNote xml:lang="en">Recommended class. A physical embodiment of the Dataset in a particular format.</vann:usageNote>
<dct:identifier>dcat:Distribution</dct:identifier>
<rdfs:label xml:lang="en">Distribution</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/2013/WD-vocab-dcat-20130312/#class-distribution"/>
<rdfs:comment xml:lang="en">Represents a specific available form of a dataset. Each dataset might be available in different forms, these forms might represent different formats of the dataset, different endpoints,... Examples of Distribution include a downloadable CSV file, an XLS file representing the dataset, an RSS feed…</rdfs:comment>
</rdf:Description>
<!-- dct:LicenseDocument -->
<rdf:Description rdf:about="http://purl.org/dc/terms/LicenseDocument">
<vann:usageNote xml:lang="en">Recommended class. A legal document giving official permission to do something with a resource. </vann:usageNote>
<dct:identifier>dct:LicenseDocument</dct:identifier>
<rdfs:label xml:lang="en">Licence Document</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/2012/06/14/dcmi-terms/?v=terms#LicenseDocument" />
<rdfs:comment xml:lang="en">A legal document giving official permission to do something with a Resource.</rdfs:comment>
</rdf:Description>
<!-- skos:ConceptScheme -->
<rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#ConceptScheme">
<vann:usageNote xml:lang="en">Recommended class. A concept collection (e.g. controlled vocabulary) in which the Category is defined.</vann:usageNote>
<dct:identifier>skos:ConceptScheme</dct:identifier>
<rdfs:label xml:lang="en">Category scheme</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/2013/WD-vocab-dcat-20130312/#class-category-and-category-scheme"/>
<rdfs:comment xml:lang="en">An abstract idea or notion; a unit of thought.</rdfs:comment>
</rdf:Description>
<!-- ================================ -->
<!-- == OPTIONAL CLASSES == -->
<!-- ================================ -->
<!-- dcat:CatalogRecord -->
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#CatalogRecord">
<vann:usageNote xml:lang="en">Optional class. A description of a Dataset’s entry in the Catalogue.</vann:usageNote>
<dct:identifier>dcat:CatalogRecord</dct:identifier>
<rdfs:label xml:lang="en">Catalogue Record</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/2013/WD-vocab-dcat-20130312/#class-catalog-record"/>
<rdfs:comment xml:lang="en">A record in a data catalog, describing a single dataset.</rdfs:comment>
</rdf:Description>
<!-- spdx:Checksum -->
<rdf:Description rdf:about="http://spdx.org/rdf/terms#Checksum">
<vann:usageNote xml:lang="en">A value that allows the contents of a file to be authenticated. This class allows the results of a variety of checksum and cryptographic message digest algorithms to be represented.</vann:usageNote>
<dct:identifier>spdx:Checksum</dct:identifier>
<rdfs:label xml:lang="en">Checksum</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://spdx.org/rdf/terms#Checksum"/>
<rdfs:comment xml:lang="en">A value that allows the contents of a file to be authenticated. This class allows the results of a variety of checksum and cryptographic message digest algorithms to be represented.</rdfs:comment>
</rdf:Description>
<!-- foaf:Document -->
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Document">
<vann:usageNote xml:lang="en">Optional class. A textual resource intended for human consumption that contains information, e.g. a web page about a Dataset.</vann:usageNote>
<dct:identifier>foaf:Document</dct:identifier>
<rdfs:label xml:lang="en">Document</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/spec/#term_Document" />
<rdfs:comment xml:lang="en">A document.</rdfs:comment>
</rdf:Description>
<!-- dct:Frequency -->
<rdf:Description rdf:about="http://purl.org/dc/terms/Frequency">
<vann:usageNote xml:lang="en">Optional class. A rate at which something recurs, e.g. the publication of a Dataset.</vann:usageNote>
<dct:identifier>dct:Frequency</dct:identifier>
<rdfs:label xml:lang="en">Frequency</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-Frequency" />
<rdfs:comment xml:lang="en">A rate at which something recurs.</rdfs:comment>
</rdf:Description>
<!-- adms:Identifier -->
<rdf:Description rdf:about="https://www.w3.org/ns/adms#Identifier">
<vann:usageNote xml:lang="en">Optional class. An identifier in a particular context, consisting of the string that is the identifier; an optional identifier for the identifier scheme; an optional identifier for the version of the identifier scheme; an optional identifier for the agency that manages the identifier scheme</vann:usageNote>
<dct:identifier>adms:Identifier</dct:identifier>
<rdfs:label xml:lang="en">Identifier</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-adms/#identifier" />
<rdfs:comment xml:lang="en">This class is based on the UN/CEFACT Identifier complex type defined in See Section 5.8 of Core Components Data Type Catalogue Version 3.1 (http://www.unece.org/fileadmin/DAM/cefact/codesfortrade/CCTS/CCTS-DTCatalogueVersion3p1.pdf) In RDF this is expressed using the following properties: - the content string should be provided using skos:notation, datatyped with the identifier scheme (inclduing the version number if appropriate); - use dcterms:creator to link to a class describing the agency that manages the identifier scheme or adms:schemaAgency to provide the name as a literal. Although not part of the ADMS conceptual model, it may be useful to provide further properties to the Identifier class such as dcterms:created to provide the date on which the identifier was issued.</rdfs:comment>
</rdf:Description>
<!-- vcard:Kind -->
<rdf:Description rdf:about="http://www.w3.org/2006/vcard/ns#Kind">
<vann:usageNote xml:lang="en">Optional class. A description following the vCard specification, e.g. to provide telephone number and e-mail address for a contact point. Note that the class Kind is the parent class for the four explicit types of vCards (Individual, Organization, Location, Group).</vann:usageNote>
<dct:identifier>vcard:Kind</dct:identifier>
<rdfs:label xml:lang="en">Kind</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/vcard/ns#" />
<rdfs:comment xml:lang="en">A description following the vCard specification, e.g. to provide telephone number and e-mail address for a contact point. Note that the class Kind is the parent class for the four explicit types of vCards (Individual, Organization, Location, Group).</rdfs:comment>
</rdf:Description>
<!-- dct:LinguisticSystem -->
<rdf:Description rdf:about="http://purl.org/dc/terms/LinguisticSystem">
<vann:usageNote xml:lang="en">Optional class. A system of signs, symbols, sounds, gestures, or rules used in communication, e.g. a language. </vann:usageNote>
<dct:identifier>dct:LinguisticSystem</dct:identifier>
<rdfs:label xml:lang="en">Linguistic system</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/2012/06/14/dcmi-terms/?v=terms#LinguisticSystem" />
<rdfs:comment xml:lang="en">A system of signs, symbols, sounds, gestures, or rules used in communication, e.g. a language.</rdfs:comment>
</rdf:Description>
<!-- dct:Location -->
<rdf:Description rdf:about="http://purl.org/dc/terms/Location">
<vann:usageNote xml:lang="en">Optional class. A spatial region or named place. It can be represented using a controlled vocabulary or with geographic coordinates. In the latter case, the use of the Core Location Vocabulary is recommended. </vann:usageNote>
<dct:identifier>dct:Location</dct:identifier>
<rdfs:label xml:lang="en">Location</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/2012/06/14/dcmi-terms/?v=terms#Location" />
<rdfs:comment xml:lang="en">A spatial region or named place.</rdfs:comment>
</rdf:Description>
<!-- dct:MediaType -->
<rdf:Description rdf:about="http://purl.org/dc/terms/MediaType">
<vann:usageNote xml:lang="en">Optional class. A media type or extent, e.g. the format of a computer file. </vann:usageNote>
<dct:identifier>dct:MediaType</dct:identifier>
<rdfs:label xml:lang="en">Media type </rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-MediaType" />
<rdfs:comment xml:lang="en">A media type or extent, e.g. the format of a computer file.</rdfs:comment>
</rdf:Description>
<!-- dct:PeriodOfTime -->
<rdf:Description rdf:about="http://purl.org/dc/terms/PeriodOfTime">
<vann:usageNote xml:lang="en">Optional class. An interval of time that is named or defined by its start and end dates. </vann:usageNote>
<dct:identifier>dct:PeriodOfTime</dct:identifier>
<rdfs:label xml:lang="en">Period of time</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-PeriodOfTime" />
<rdfs:comment xml:lang="en">An interval of time that is named or defined by its start and end dates.</rdfs:comment>
</rdf:Description>
<!-- dct:RightsStatement -->
<rdf:Description rdf:about="http://purl.org/dc/terms/RightsStatement">
<vann:usageNote xml:lang="en">Optional class. A statement about the intellectual property rights (IPR) held in or over a resource, a legal document giving official permission to do something with a resource, or a statement about access rights. </vann:usageNote>
<dct:identifier>dct:RightsStatement</dct:identifier>
<rdfs:label xml:lang="en">Rights statement</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-RightsStatement" />
<rdfs:comment xml:lang="en">A statement about the intellectual property rights (IPR) held in or over a resource, a legal document giving official permission to do something with a resource, or a statement about access rights.</rdfs:comment>
</rdf:Description>
<!-- dct:ProvenanceStatement -->
<rdf:Description rdf:about="http://purl.org/dc/terms/ProvenanceStatement">
<vann:usageNote xml:lang="en">Optional class. A statement of any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation. </vann:usageNote>
<dct:identifier>dct:ProvenanceStatement</dct:identifier>
<rdfs:label xml:lang="en">Provenance Statement</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-ProvenanceStatement" />
<rdfs:comment xml:lang="en">A statement of any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation.</rdfs:comment>
</rdf:Description>
<!-- dct:Standard -->
<rdf:Description rdf:about="http://purl.org/dc/terms/Standard">
<vann:usageNote xml:lang="en">Optional class. A standard or other specification to which a Dataset conforms. </vann:usageNote>
<dct:identifier>dct:Standard</dct:identifier>
<rdfs:label xml:lang="en">Standard</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-Standard" />
<rdfs:comment xml:lang="en">A basis for comparison; a reference point against which other things can be evaluated.</rdfs:comment>
</rdf:Description>
<!-- dcat:DataService (dcat 2) -->
<rdf:Description rdf:about="https://www.w3.org/ns/dcat#DataService">
<vann:usageNote xml:lang="en">Optional class. A collection of operations that provides access to one or more datasets or data processing functions.</vann:usageNote>
<dct:identifier>dcat:DataService</dct:identifier>
<rdfs:label xml:lang="en">Data Service</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-dcat-2/#Class:Data_Service"/>
<rdfs:comment xml:lang="en">A collection of operations that provides access to one or more datasets or data processing functions.</rdfs:comment>
</rdf:Description>
<!-- dcat:Relationship (dcat 2) -->
<rdf:Description rdf:about="https://www.w3.org/ns/dcat#Relationship">
<vann:usageNote xml:lang="en">Optional class. An association class for attaching additional information to a relationship between DCAT Resources.</vann:usageNote>
<dct:identifier>dcat:Relationship</dct:identifier>
<rdfs:label xml:lang="en">Relationship</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-dcat-2/#Class:Relationship"/>
<rdfs:comment xml:lang="en">An association class for attaching additional information to a relationship between DCAT Resources.</rdfs:comment>
</rdf:Description>
<!-- dcat:Role (dcat 2) -->
<rdf:Description rdf:about="https://www.w3.org/ns/dcat#Role">
<vann:usageNote xml:lang="en">Optional class. A role is the function of a resource or agent with respect to another resource, in the context of resource attribution or resource relationships. Note it is a subclass of skos:Concept.</vann:usageNote>
<dct:identifier><dcat:Role></dcat:Role></dct:identifier>
<rdfs:label xml:lang="en">Role</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-dcat-2/#Class:Role"/>
<rdfs:comment xml:lang="en">A role is the function of a resource or agent with respect to another resource, in the context of resource attribution or resource relationships.</rdfs:comment>
</rdf:Description>
<!-- ####################################### -->
<!-- ##===================================## -->
<!-- ##== PROPERTIES ==## -->
<!-- ##===================================## -->
<!-- ####################################### -->
<!-- ==================================== -->
<!-- == Data Catalogue - Properties == -->
<!-- ==================================== -->
<!-- Data Catalogue - dcat:dataset -->
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#dataset">
<vann:usageNote xml:lang="en">Mandatory property. This property links the Catalogue with a Dataset that is part of the Catalogue.</vann:usageNote>
<dct:identifier>dcat:dataset</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - dataset</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/2013/WD-vocab-dcat-20130312/#class-catalog-record"/>
<rdfs:comment xml:lang="en">A dataset that is part of the catalog.</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - dct:description -->
<rdf:Description rdf:about="http://purl.org/dc/terms/description">
<vann:usageNote xml:lang="en">Mandatory property. This property contains a free-text account of the Catalogue. This property can be repeated for parallel language versions of the description.</vann:usageNote>
<dct:identifier>dct:description</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - description</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-description" />
<rdfs:comment 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.</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - dct:publisher -->
<rdf:Description rdf:about="http://purl.org/dc/terms/publisher">
<vann:usageNote xml:lang="en">Mandatory property. This property refers to an entity (organisation) responsible for making the Catalogue available.</vann:usageNote>
<dct:identifier>dct:publisher</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - publisher</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-publisher" />
<rdfs:comment xml:lang="en">This property refers to an entity (organisation) responsible for making the Catalogue available.</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - dct:title -->
<rdf:Description rdf:about="http://purl.org/dc/terms/title">
<vann:usageNote xml:lang="en">Mandatory property. This property contains a name given to the Catalogue. This property can be repeated for parallel language versions of the name.</vann:usageNote>
<dct:identifier>dct:title</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - title</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-title" />
<rdfs:comment xml:lang="en">This property contains a name given to the Catalogue. This property can be repeated for parallel language versions of the name.</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - homepage -->
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/homepage">
<vann:usageNote xml:lang="en">Recommended property. This property refers to a web page that acts as the main page for the Catalogue.</vann:usageNote>
<dct:identifier>foaf:homepage</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - homepage</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/spec/#term_homepage" />
<rdfs:comment xml:lang="en">This property refers to a web page that acts as the main page for the Catalogue.</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - language -->
<rdf:Description rdf:about="http://purl.org/dc/terms/language">
<vann:usageNote xml:lang="en">Recommended property. This property refers to a language used in the textual metadata describing titles, descriptions, etc. of the Datasets in the Catalogue. This property can be repeated if the metadata is provided in multiple languages.</vann:usageNote>
<dct:identifier>dct:language</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - language</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-language" />
<rdfs:comment xml:lang="en">This property refers to a language used in the textual metadata describing titles, descriptions, etc. of the Datasets in the Catalogue. This property can be repeated if the metadata is provided in multiple languages.</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - licence -->
<rdf:Description rdf:about="http://purl.org/dc/terms/license">
<vann:usageNote xml:lang="en">Recommended property. This property refers to the licence under which the Catalogue can be used or reused.</vann:usageNote>
<dct:identifier>dct:license</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - licence</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-license" />
<rdfs:comment xml:lang="en">This property refers to the licence under which the Catalogue can be used or reused.</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - release date -->
<rdf:Description rdf:about="http://purl.org/dc/terms/issued">
<vann:usageNote xml:lang="en">Recommended property. This property contains the date of formal issuance (e.g., publication) of the Catalogue.</vann:usageNote>
<dct:identifier>dct:issued</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - release date</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-issued" />
<rdfs:comment xml:lang="en">This property contains the date of formal issuance (e.g., publication) of the Catalogue.</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - themes -->
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#themeTaxonomy">
<vann:usageNote xml:lang="en">Recommended property. This property refers to a knowledge organization system (KOS) used to classify the Catalogue's Datasets.</vann:usageNote>
<dct:identifier>dcat:themeTaxonomy</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - themes</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/vocab-dcat/" />
<rdfs:comment xml:lang="en">The knowledge organization system (KOS) used to classify catalog's datasets</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - update/modification date -->
<rdf:Description rdf:about="http://purl.org/dc/terms/modified">
<vann:usageNote xml:lang="en">Recommended property. This property contains the most recent date on which the Catalogue was changed or modified.</vann:usageNote>
<dct:identifier>dct:modified</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - update/ modification date</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-modified" />
<rdfs:comment xml:lang="en">This property contains the most recent date on which the Catalogue was changed or modified.</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - spatial/geographic -->
<rdf:Description rdf:about="http://purl.org/dc/terms/spatial">
<vann:usageNote xml:lang="en">Recommended property. This property refers to a geographical area covered by the Catalogue.</vann:usageNote>
<dct:identifier>dct:spatial</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - spatial / geographic</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-spatial" />
<rdfs:comment xml:lang="en">This property refers to a geographical area covered by the Catalogue.</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - record -->
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#record">
<vann:usageNote xml:lang="en">Optional property. This property refers to a Catalogue Record that is part of the Catalogue</vann:usageNote>
<dct:identifier>dcat:record</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - record</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-dcat/#Property:catalog_catalog_record" />
<rdfs:comment xml:lang="en">This property refers to a Catalogue Record that is part of the Catalogue</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - rights -->
<rdf:Description rdf:about="http://purl.org/dc/terms/rights">
<vann:usageNote xml:lang="en">Optional property. This property refers to a statement that specifies rights associated with the Catalogue.</vann:usageNote>
<dct:identifier>dct:rights</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - rights</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-rights" />
<rdfs:comment xml:lang="en">This property refers to a statement that specifies rights associated with the Catalogue.</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - has part -->
<rdf:Description rdf:about="http://purl.org/dc/terms/hasPart">
<vann:usageNote xml:lang="en">Optional property. This property refers to a related Catalogue that is part of the described Catalogue.</vann:usageNote>
<dct:identifier>dct:hasPart</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - has part</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-hasPart" />
<rdfs:comment xml:lang="en">This property refers to a related Catalogue that is part of the described Catalogue</rdfs:comment>
</rdf:Description>
<!-- Data Catalogue - is part of -->
<rdf:Description rdf:about="http://purl.org/dc/terms/isPartOf">
<vann:usageNote xml:lang="en">Optional property. This property refers to a related Catalogue in which the described Catalogue is physically or logically included.</vann:usageNote>
<dct:identifier>dct:isPartOf</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - is part of</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-isPartOf" />
<rdfs:comment xml:lang="en">This property refers to a related Catalogue in which the described Catalogue is physically or logically included.</rdfs:comment>
</rdf:Description>
<!-- Catalog - service (dcat 2) -->
<rdf:Description rdf:about="https://www.w3.org/ns/dcat#service">
<vann:usageNote xml:lang="en">Optional property. This property refers to a site or end-point that is listed in the catalog.</vann:usageNote>
<dct:identifier> dcat:service</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - service</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-dcat-2/#Property:catalog_service" />
<rdfs:comment xml:lang="en">This property refers to a site or end-point that is listed in the catalog. .</rdfs:comment>
</rdf:Description>
<!-- Catalog - catalog (dcat 2) -->
<rdf:Description rdf:about="https://www.w3.org/ns/dcat#catalog">
<vann:usageNote xml:lang="en">Optional property. This property refers to a catalog whose contents are of interest in the context of this catalog . </vann:usageNote>
<dct:identifier> dcat:catalog</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue - catalog </rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-dcat-2/#Property:catalog_catalog" />
<rdfs:comment xml:lang="en">This property refers to a catalog whose contents are of interest in the context of this catalog .</rdfs:comment>
</rdf:Description>
<!-- Catalog - creator (dcat 2) -->
<rdf:Description rdf:about="http://purl.org/dc/terms/creator">
<vann:usageNote xml:lang="en">Optional property. This property refers to an entity primarily responsible for making the resource.</vann:usageNote>
<dct:identifier>dct:creator</dct:identifier>
<rdfs:label xml:lang="en">Data Catalogue- creator</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#terms-creator" />
<rdfs:comment xml:lang="en">This property refers to an entity primarily responsible for making the catalogue.</rdfs:comment>
</rdf:Description>
<!-- ====================================== -->
<!-- == Catalogue Record - Properties == -->
<!-- ====================================== -->
<!-- Catalogue Record - primary topic -->
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/primaryTopic">
<vann:usageNote xml:lang="en">Mandatory property. This property links the Catalogue Record to the Dataset, Data Service or Catalogue described in the record.</vann:usageNote>
<dct:identifier>foaf:primaryTopic</dct:identifier>
<rdfs:label xml:lang="en">Catalogue Record - primary topic</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/spec/#term_primaryTopic" />
<rdfs:comment xml:lang="en">This property links the Catalogue Record to the Dataset, Data Service or Catalogue described in the record.</rdfs:comment>
</rdf:Description>
<!-- Catalogue Record - update/modification date -->
<rdf:Description rdf:about="http://purl.org/dc/terms/modified">
<vann:usageNote xml:lang="en">Mandatory property. This property contains the most recent date on which the Catalogue entry was changed or modified.</vann:usageNote>
<dct:identifier>dct:modified</dct:identifier>
<rdfs:label xml:lang="en">Catalogue Record - update/ modification date</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-modified" />
<rdfs:comment xml:lang="en">This property contains the most recent date on which the Catalogue entry was changed or modified.</rdfs:comment>
</rdf:Description>
<!-- Catalogue Record - listing date -->
<rdf:Description rdf:about="http://purl.org/dc/terms/issued">
<vann:usageNote xml:lang="en">Recommended property. This property contains the date on which the description of the Dataset was included in the Catalogue.</vann:usageNote>
<dct:identifier>dct:issued</dct:identifier>
<rdfs:label xml:lang="en">Catalogue Record - listing date</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-issued" />
<rdfs:comment xml:lang="en">This property contains the date on which the description of the Dataset was included in the Catalogue.</rdfs:comment>
</rdf:Description>
<!-- Catalogue Record - change type -->
<rdf:Description rdf:about="http://www.w3.org/ns/adms#status">
<vann:usageNote xml:lang="en">Recommended property. The type of the latest revision of a Dataset's entry in the Catalogue. It MUST take one of the values :created, :updated or :deleted depending on whether this latest revision is a result of a creation, update or deletion.</vann:usageNote>
<dct:identifier>adms:status</dct:identifier>
<rdfs:label xml:lang="en">Catalogue Record - change type</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-adms/#adms-status" />
<rdfs:comment xml:lang="en">The type of the latest revision of a Dataset's entry in the Catalogue. It MUST take one of the values :Completed, :Depricated, :Under development or :Withdrawn.</rdfs:comment>
</rdf:Description>
<!-- Catalogue Record - conforms to -->
<rdf:Description rdf:about="http://purl.org/dc/terms/conformsTo">
<vann:usageNote xml:lang="en">Recommended property. This property refers to an Application Profile that the Dataset’s metadata conforms to.</vann:usageNote>
<dct:identifier>dct:conformsTo</dct:identifier>
<rdfs:label xml:lang="en">Catalogue Record - conforms to</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-conformsTo" />
<rdfs:comment xml:lang="en">This property refers to an Application Profile that the Dataset’s metadata conforms to.</rdfs:comment>
</rdf:Description>
<!-- Catalogue Record - description -->
<rdf:Description rdf:about="http://purl.org/dc/terms/description">
<vann:usageNote xml:lang="en">Optional property. This property contains a free-text account of the record. This property can be repeated for parallel language versions of the description.</vann:usageNote>
<dct:identifier>dct:description</dct:identifier>
<rdfs:label xml:lang="en">Catalogue Record - description</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-description" />
<rdfs:comment xml:lang="en">This property contains a free-text account of the record. This property can be repeated for parallel language versions of the description.</rdfs:comment>
</rdf:Description>
<!-- Catalogue Record - title -->
<rdf:Description rdf:about="http://purl.org/dc/terms/title">
<vann:usageNote xml:lang="en">Optional property. This property contains a name given to the Catalogue. This property can be repeated for parallel language versions of the name.</vann:usageNote>
<dct:identifier>dct:title</dct:identifier>
<rdfs:label xml:lang="en">Catalogue Record - title</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-title" />
<rdfs:comment xml:lang="en">This property contains a name given to the Catalogue. This property can be repeated for parallel language versions of the name.</rdfs:comment>
</rdf:Description>
<!-- Catalogue Record - language -->
<rdf:Description rdf:about="http://purl.org/dc/terms/language">
<vann:usageNote xml:lang="en">Optional property. This property refers to a language used in the textual metadata describing titles, descriptions, etc. of the Dataset. This property can be repeated if the metadata is provided in multiple languages.</vann:usageNote>
<dct:identifier>dct:language</dct:identifier>
<rdfs:label xml:lang="en">Catalogue Record - language</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-language" />
<rdfs:comment xml:lang="en">This property refers to a language used in the textual metadata describing titles, descriptions, etc. of the Dataset. This property can be repeated if the metadata is provided in multiple languages.</rdfs:comment>
</rdf:Description>
<!-- Catalogue Record - source metadata -->
<rdf:Description rdf:about="http://purl.org/dc/terms/source">
<vann:usageNote xml:lang="en">Optional property. This property refers to the original metadata that was used in creating metadata for the Dataset.</vann:usageNote>
<dct:identifier>dct:source</dct:identifier>
<rdfs:label xml:lang="en">Catalogue Record - source metadata</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-source" />
<rdfs:comment xml:lang="en">This property refers to the original metadata that was used in creating metadata for the Dataset.</rdfs:comment>
</rdf:Description>
<!-- ====================================== -->
<!-- Data Service - Properties (dcat 2) -->
<!-- ====================================== -->
<!-- Mandatory -->
<!-- ====================================== -->
<!-- Data Service - endpoint URL -->
<rdf:Description rdf:about="https://www.w3.org/ns/dcat#endpointURL">
<vann:usageNote xml:lang="en">Mandatory property. The root location or primary endpoint of the service (an IRI)..</vann:usageNote>
<dct:identifier>dcat:endpointURL</dct:identifier>
<rdfs:label xml:lang="en">Data Service - endpoint URL </rdfs:label>
<rdfs:isDefinedBy rdf:resource= "https://www.w3.org/TR/vocab-dcat-2/#Property:data_service_endpoint_url" />
<rdfs:comment xml:lang="en">The root location or primary endpoint of the service (an IRI).</rdfs:comment>
</rdf:Description>
<!-- Data Service - title -->
<rdf:Description rdf:about="http://purl.org/dc/terms/title">
<vann:usageNote xml:lang="en">Mandatory property. This property contains a name given to the Data Service. This property can be repeated for parallel language versions of the name.</vann:usageNote>
<dct:identifier>dct:title</dct:identifier>
<rdfs:label xml:lang="en">Data Service - title</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-title" />
<rdfs:comment xml:lang="en">This property contains a name given to the Data Service. This property can be repeated for parallel language versions of the name.</rdfs:comment>
</rdf:Description>
<!-- ====================================== -->
<!-- Recommended -->
<!-- ====================================== -->
<!-- Data Service - serves dataset -->
<rdf:Description rdf:about="https://www.w3.org/ns/dcat#servesdataset">
<vann:usageNote xml:lang="en">Recommended property. A collection of data that this data service can distribute.</vann:usageNote>
<dct:identifier>dcat:servesDataset</dct:identifier>
<rdfs:label xml:lang="en">Data Service - serves dataset</rdfs:label>
<rdfs:isDefinedBy rdf:resource= "https://www.w3.org/TR/vocab-dcat-2/#Property:data_service_serves_dataset " />
<rdfs:comment xml:lang="en">A collection of data that this data service can distribute.</rdfs:comment>
</rdf:Description>
<!-- Data Service - endpoint description -->
<rdf:Description rdf:about="https://www.w3.org/ns/dcat#endpointDescription">
<vann:usageNote xml:lang="en">Recomended property. A description of the services available via the end-points, including their operations, parameters etc .</vann:usageNote>
<dct:identifier>dcat:endpointDescription</dct:identifier>
<rdfs:label xml:lang="en">Data Service - endpoint description</rdfs:label>
<rdfs:isDefinedBy rdf:resource= "https://www.w3.org/TR/vocab-dcat-2/#Property:data_service_endpoint_description " />
<rdfs:comment xml:lang="en">A description of the services available via the end-points, including their operations, parameters etc.</rdfs:comment>
</rdf:Description>
<!-- ====================================== -->
<!-- Optional -->
<!-- ====================================== -->
<!-- Data Service - dct:description -->
<rdf:Description rdf:about="http://purl.org/dc/terms/description">
<vann:usageNote xml:lang="en">Optional property. This property contains a free-text account of the Catalogue. This property can be repeated for parallel language versions of the description.</vann:usageNote>
<dct:identifier>dct:description</dct:identifier>
<rdfs:label xml:lang="en">Data Service - description</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-description" />
<rdfs:comment 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.</rdfs:comment>
</rdf:Description>
<!-- Data Service - licence -->
<rdf:Description rdf:about="http://purl.org/dc/terms/license">
<vann:usageNote xml:lang="en">Optional property. This property refers to the licence under which the Catalogue can be used or reused.</vann:usageNote>
<dct:identifier>dct:license</dct:identifier>
<rdfs:label xml:lang="en">Data Service - licence</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-license" />
<rdfs:comment xml:lang="en">This property refers to the licence under which the Catalogue can be used or reused.</rdfs:comment>
</rdf:Description>
<!-- Data Service - access rights -->
<rdf:Description rdf:about="http://purl.org/dc/terms/accessRights">
<vann:usageNote xml:lang="en">Optional property. This property refers to information that indicates whether the Dataset is open data, has access restrictions or is not public. A controlled vocabulary with three members (:public, :restricted, :non-public) will be created and maintained by the Publications Office of the EU.</vann:usageNote>
<dct:identifier>dct:accessRights</dct:identifier>
<rdfs:label xml:lang="en">Data Service - access rights</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-accessRights" />
<rdfs:comment xml:lang="en">This property refers to information that indicates whether the Dataset is open data, has access restrictions or is not public. A controlled vocabulary with three members (:public, :restricted, :non-public) will be created and maintained by the Publications Office of the EU.</rdfs:comment>
</rdf:Description>
<!-- ====================================== -->
<!-- == Dataset - Properties == -->
<!-- ====================================== -->
<!-- == Mandatory Properties == -->
<!-- ====================================== -->
<!-- Dataset - description -->
<rdf:Description rdf:about="http://purl.org/dc/terms/description">
<vann:usageNote xml:lang="en">Mandatory property. This property contains a free-text account of the Dataset. This property can be repeated for parallel language versions of the description.</vann:usageNote>
<dct:identifier>dct:description</dct:identifier>
<rdfs:label xml:lang="en">Dataset - description</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-description" />
<rdfs:comment xml:lang="en">This property contains a free-text account of the Dataset. This property can be repeated for parallel language versions of the description.</rdfs:comment>
</rdf:Description>
<!-- Dataset - title -->
<rdf:Description rdf:about="http://purl.org/dc/terms/title">
<vann:usageNote xml:lang="en">Mandatory property. This property contains a name given to the Dataset. This property can be repeated for parallel language versions of the name.</vann:usageNote>
<dct:identifier>dct:title</dct:identifier>
<rdfs:label xml:lang="en">Dataset - title</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-title" />
<rdfs:comment xml:lang="en">This property contains a name given to the Dataset. This property can be repeated for parallel language versions of the name.</rdfs:comment>
</rdf:Description>
<!-- ============================ -->
<!-- Recommended properties -->
<!-- ============================= -->
<!-- Dataset - contact point -->
<rdf:Description rdf:about="https://www.w3.org/ns/dcat#contactPoint">
<vann:usageNote xml:lang="en">Recommended property.This property contains contact information that can be used for sending comments about the Dataset.</vann:usageNote>
<dct:identifier>dcat:contactPoint</dct:identifier>
<rdfs:label xml:lang="en">Dataset - contact point</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-adms/#dcat-contactpoint" />
<rdfs:comment xml:lang="en">This property contains contact information that can be used for sending comments about the Dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - dataset distribution -->
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#distribution">
<vann:usageNote xml:lang="en">Recommended property. This property links the Dataset to an available Distribution.</vann:usageNote>
<dct:identifier>dcat:distribution</dct:identifier>
<rdfs:label xml:lang="en">Dataset - dataset distribution</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/vocab-dcat/" />
<rdfs:comment xml:lang="en">This property links the Dataset to an available Distribution.</rdfs:comment>
</rdf:Description>
<!-- Dataset - keyword/ tag -->
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#keyword">
<vann:usageNote xml:lang="en">Recommended property. This property contains a keyword or tag describing the Dataset.</vann:usageNote>
<dct:identifier>dcat:keyword</dct:identifier>
<rdfs:label xml:lang="en">Dataset - keyword/ tag</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-dcat/#Property:dataset_keyword" />
<rdfs:comment xml:lang="en">This property contains a keyword or tag describing the Dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - publisher -->
<rdf:Description rdf:about="http://purl.org/dc/terms/publisher">
<vann:usageNote xml:lang="en">Recommended property. This property refers to an entity (organisation) responsible for making the Dataset available.</vann:usageNote>
<dct:identifier>dct:publisher</dct:identifier>
<rdfs:label xml:lang="en">Dataset - publisher</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-publisher" />
<rdfs:comment xml:lang="en">This property refers to an entity (organisation) responsible for making the Dataset available.</rdfs:comment>
</rdf:Description>
<!-- Dataset - spatial/geographical coverage -->
<rdf:Description rdf:about="http://purl.org/dc/terms/spatial">
<vann:usageNote xml:lang="en">Recommended property. This property refers to a geographic region that is covered by the Dataset. </vann:usageNote>
<dct:identifier>dct:spatial</dct:identifier>
<rdfs:label xml:lang="en">Dataset - spatial/ geographical coverage</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-spatial" />
<rdfs:comment xml:lang="en">This property refers to a geographic region that is covered by the Dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - theme/category -->
<!-- BW: the subproperty is not defined -->
<!-- Answer to BW: dcat:theme IS the subproperty. We do not use the superproperty -->
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#theme">
<vann:usageNote xml:lang="en">Recommended property. This property refers to a category of the Dataset. A Dataset may be associated with multiple themes. Subproperty of dct:subject.</vann:usageNote>
<dct:identifier>dcat:theme</dct:identifier>
<rdfs:label xml:lang="en">Dataset - theme/category</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-dcat/#Property:dataset_theme" />
<rdfs:comment xml:lang="en">This property refers to a category of the Dataset. A Dataset may be associated with multiple themes. Subproperty of dct:subject</rdfs:comment>
</rdf:Description>
<!-- Dataset - temporal coverage -->
<rdf:Description rdf:about="http://purl.org/dc/terms/temporal">
<vann:usageNote xml:lang="en">Recommended property. This property refers to a temporal period that the Dataset covers.</vann:usageNote>
<dct:identifier>dct:temporal</dct:identifier>
<rdfs:label xml:lang="en">Dataset - temporal coverage</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-temporal" />
<rdfs:comment xml:lang="en">This property refers to a temporal period that the Dataset covers.</rdfs:comment>
</rdf:Description>
<!-- ====================================== -->
<!-- Optional properties -->
<!-- ====================================== -->
<!-- Dataset - conforms to -->
<rdf:Description rdf:about="http://purl.org/dc/terms/conformsTo">
<vann:usageNote xml:lang="en">Optional property. This property refers to an implementing rule or other specification.</vann:usageNote>
<dct:identifier>dct:conformsTo</dct:identifier>
<rdfs:label xml:lang="en">Dataset - conforms to</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-conformsTo" />
<rdfs:comment xml:lang="en">This property refers to an implementing rule or other specification.</rdfs:comment>
</rdf:Description>
<!-- Dataset - frequency -->
<rdf:Description rdf:about="http://purl.org/dc/terms/acrualPeriodicity">
<vann:usageNote xml:lang="en">Optional property. This property refers to the frequency at which Dataset is updated.</vann:usageNote>
<dct:identifier>dct:accrualPeriodicity</dct:identifier>
<rdfs:label xml:lang="en">Dataset - frequency</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-acrualPeriodicity" />
<rdfs:comment xml:lang="en">This property refers to the frequency at which Dataset is updated.</rdfs:comment>
</rdf:Description>
<!-- Dataset - identifier -->
<rdf:Description rdf:about="http://purl.org/dc/terms/identifier">
<vann:usageNote xml:lang="en">Optional property. This property contains the main identifier for the Dataset, e.g. the URI or other unique identifier in the context of the Catalogue.</vann:usageNote>
<dct:identifier>dct:identifier</dct:identifier>
<rdfs:label xml:lang="en">Dataset - identifier</rdfs:label>
<dct:acrualPeriodicity rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-identifier" />
<rdfs:comment xml:lang="en">This property contains the main identifier for the Dataset, e.g. the URI or other unique identifier in the context of the Catalogue.</rdfs:comment>
</rdf:Description>
<!-- Dataset - landing page -->
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#landingPage">
<vann:usageNote xml:lang="en">Optional property. This property refers to a web page that provides access to the Dataset, its Distributions and/or additional information. </vann:usageNote>
<dct:identifier>dcat:landingPage</dct:identifier>
<rdfs:label xml:lang="en">Dataset - landing page</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-dcat/#Property:dataset_landingpage" />
<rdfs:comment xml:lang="en">This property refers to a web page that provides access to the Dataset, its Distributions and/or additional information.</rdfs:comment>
</rdf:Description>
<!-- Dataset - language -->
<rdf:Description rdf:about="http://purl.org/dc/terms/language">
<vann:usageNote xml:lang="en">Optional property. This property refers to a language of the Dataset. This property can be repeated if there are multiple languages in the Dataset.</vann:usageNote>
<dct:identifier>dct:language</dct:identifier>
<rdfs:label xml:lang="en">Dataset - language</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-language" />
<rdfs:comment xml:lang="en">This property refers to a language of the Dataset. This property can be repeated if there are multiple languages in the Dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - other identifier -->
<rdf:Description rdf:about="http://www.w3.org/ns/adms#identifier">
<vann:usageNote xml:lang="en">Optional property. This property refers to a secondary identifier of the Dataset, such as MAST/ADS[1], DataCite[2], DOI[3], EZID[4] or W3ID[5].</vann:usageNote>
<dct:identifier>adms:identifier</dct:identifier>
<rdfs:label xml:lang="en">Dataset - other identifier</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-adms/#adms-identifier" />
<rdfs:comment xml:lang="en">This property refers to a secondary identifier of the Dataset, such as MAST/ADS[1], DataCite[2], DOI[3], EZID[4] or W3ID[5].</rdfs:comment>
</rdf:Description>
<!-- Dataset - release date -->
<rdf:Description rdf:about="http://purl.org/dc/terms/issued">
<vann:usageNote xml:lang="en">Optional property. This property contains the date of formal issuance (e.g., publication) of the Dataset.</vann:usageNote>
<dct:identifier>dct:issued</dct:identifier>
<rdfs:label xml:lang="en">Dataset - release date</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-issued" />
<rdfs:comment xml:lang="en">This property contains the date of formal issuance (e.g., publication) of the Dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - update/modification date -->
<rdf:Description rdf:about="http://purl.org/dc/terms/modified">
<vann:usageNote xml:lang="en">Optional property. This property contains the most recent date on which the Dataset was changed or modified.</vann:usageNote>
<dct:identifier>dct:modified</dct:identifier>
<rdfs:label xml:lang="en">Dataset - update/ modification date</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-modified" />
<rdfs:comment xml:lang="en">This property contains the most recent date on which the Dataset was changed or modified.</rdfs:comment>
</rdf:Description>
<!-- Dataset - provenance -->
<rdf:Description rdf:about="http://purl.org/dc/terms/provenance">
<vann:usageNote xml:lang="en">Optional property. This property contains a statement about the lineage of a Dataset.</vann:usageNote>
<dct:identifier>dct:provenance</dct:identifier>
<rdfs:label xml:lang="en">Dataset - provenance</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-provenance" />
<rdfs:comment xml:lang="en">This property contains a statement about the lineage of a Dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - sample -->
<rdf:Description rdf:about="http://www.w3.org/ns/adms#sample">
<vann:usageNote xml:lang="en">Optional property. This property refers to a sample distribution of the dataset.</vann:usageNote>
<dct:identifier>adms:sample</dct:identifier>
<rdfs:label xml:lang="en">Dataset - sample</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-adms/#adms-sample" />
<rdfs:comment xml:lang="en">This property refers to a sample distribution of the dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - source -->
<rdf:Description rdf:about="http://purl.org/dc/terms/source">
<vann:usageNote xml:lang="en">Optional property. This property refers to a related Dataset from which the described Dataset is derived.</vann:usageNote>
<dct:identifier>dct:source</dct:identifier>
<rdfs:label xml:lang="en">Dataset - source </rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-source" />
<rdfs:comment xml:lang="en">This property refers to a related Dataset from which the described Dataset is derived.</rdfs:comment>
</rdf:Description>
<!-- Dataset - type -->
<rdf:Description rdf:about="http://purl.org/dc/terms/type">
<vann:usageNote xml:lang="en">Optional property. This property refers to the type of the Dataset. A controlled vocabulary for the values has not been established.</vann:usageNote>
<dct:identifier>dct:type</dct:identifier>
<rdfs:label xml:lang="en">Dataset - type </rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-type" />
<rdfs:comment xml:lang="en">This property refers to the type of the Dataset. A controlled vocabulary for the values has not been established.</rdfs:comment>
</rdf:Description>
<!-- Dataset - related resource -->
<rdf:Description rdf:about="http://purl.org/dc/terms/relation">
<vann:usageNote xml:lang="en">Optional property. This property refers to a related resource.</vann:usageNote>
<dct:identifier>dct:relation</dct:identifier>
<rdfs:label xml:lang="en">Dataset - related resource</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-relation" />
<rdfs:comment xml:lang="en">This property refers to a related resource.</rdfs:comment>
</rdf:Description>
<!-- Dataset - version -->
<rdf:Description rdf:about="http://www.w3.org/2002/07/owl#versionInfo">
<vann:usageNote xml:lang="en">Optional property. This property contains a version number or other version designation of the Dataset.</vann:usageNote>
<dct:identifier>owl:versionInfo</dct:identifier>
<rdfs:label xml:lang="en">Dataset - version</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2002/07/owl#" />
<rdfs:comment xml:lang="en">This property contains a version number or other version designation of the Dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - version notes -->
<rdf:Description rdf:about="http://www.w3.org/ns/adms#versionNotes">
<vann:usageNote xml:lang="en">Optional property. This property contains a description of the differences between this version and a previous version of the Dataset.</vann:usageNote>
<dct:identifier>adms:versionNotes</dct:identifier>
<rdfs:label xml:lang="en">Dataset - version notes</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-adms/#adms-versionnotes" />
<rdfs:comment xml:lang="en">This property contains a description of the differences between this version and a previous version of the Dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - is Version Of -->
<rdf:Description rdf:about="http://purl.org/dc/terms/isVersionOf">
<vann:usageNote xml:lang="en">Optional property. This property refers to a related Dataset of which the described Dataset is a version, edition, or adaptation.</vann:usageNote>
<dct:identifier>dct:isVersionOf</dct:identifier>
<rdfs:label xml:lang="en">Dataset - is Version Of</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-isVersionOf" />
<rdfs:comment xml:lang="en">This property refers to a related Dataset of which the described Dataset is a version, edition, or adaptation.</rdfs:comment>
</rdf:Description>
<!-- Dataset - has Version -->
<rdf:Description rdf:about="http://purl.org/dc/terms/hasVersion">
<vann:usageNote xml:lang="en">Optional property.This property refers to a related Dataset that is a version, edition, or adaptation of the described Dataset.</vann:usageNote>
<dct:identifier>dct:hasVersion</dct:identifier>
<rdfs:label xml:lang="en">Dataset - has Version</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-hasVersion" />
<rdfs:comment xml:lang="en">This property refers to a related Dataset that is a version, edition, or adaptation of the described Dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - documentation -->
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/page">
<vann:usageNote xml:lang="en">Optional property. This property refers to a page or document about this Dataset.</vann:usageNote>
<dct:identifier>foaf:page</dct:identifier>
<rdfs:label xml:lang="en">Dataset - documentation</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/spec/#term_page" />
<rdfs:comment xml:lang="en">This property refers to a page or document about this Dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - access rights -->
<rdf:Description rdf:about="http://purl.org/dc/terms/accessRights">
<vann:usageNote xml:lang="en">Optional property. This property refers to information that indicates whether the Dataset is open data, has access restrictions or is not public. A controlled vocabulary with three members (:public, :restricted, :non-public) will be created and maintained by the Publications Office of the EU.</vann:usageNote>
<dct:identifier>dct:accessRights</dct:identifier>
<rdfs:label xml:lang="en">Dataset - access Rights</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://dublincore.org/documents/dcmi-terms/#terms-accessRights" />
<rdfs:comment xml:lang="en">This property refers to information that indicates whether the Dataset is open data, has access restrictions or is not public. A controlled vocabulary with three members (:public, :restricted, :non-public) will be created and maintained by the Publications Office of the EU.</rdfs:comment>
</rdf:Description>
<!-- Dataset - creator (dcat 2) -->
<rdf:Description rdf:about="http://purl.org/dc/terms/creator">
<vann:usageNote xml:lang="en">Optional property. This property refers to an entity primarily responsible for making the resource.</vann:usageNote>
<dct:identifier>dct:creator</dct:identifier>
<rdfs:label xml:lang="en">Dataset - creator</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#terms-creator" />
<rdfs:comment xml:lang="en">This property refers to an entity primarily responsible for making the dataset.</rdfs:comment>
</rdf:Description>
<!-- Dataset - qualified attribution (dcat 2) -->
<rdf:Description rdf:about="https://www.w3.org/ns/prov#qualifiedAttribution">
<vann:usageNote xml:lang="en">Optional property. This property refers to the link to an Agent having some form of responsibility for the resource. </vann:usageNote>
<dct:identifier>prov:qualifiedAttribution</dct:identifier>
<rdfs:label xml:lang="en">Dataset - qualified attribution</rdfs:label>