-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdcat-ep.shacl.ttl
1463 lines (1264 loc) · 60.8 KB
/
dcat-ep.shacl.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix spdx: <http://spdx.org/rdf/terms#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix euvoc: <http://publications.europa.eu/ontology/euvoc#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix adms: <http://www.w3.org/ns/adms#> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix epsh: <https://data.europarl.europa.eu/def/dcat-ep#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix op-aut: <http://publications.europa.eu/resource/authority/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
<https://data.europarl.europa.eu/def/dcat-ep#> a owl:Ontology, adms:Asset;
dcterms:type <http://publications.europa.eu/resource/authority/dataset-type/APROF>;
dcterms:title "DCAT-EP Application Profile"@en;
dcterms:abstract "DCAT-EP is an extension of the DCAT Application Profile for European data portals (DCAT-AP), designed and used for documenting datasets and data services of the European Parliament."@en;
dcterms:description "DCAT-EP is an extension of the DCAT Application Profile for European data portals (DCAT-AP), designed and used for documenting datasets and data services of the European Parliament."@en;
owl:versionInfo "1.0";
adms:versionNotes """Changes since [DCAT-EP version 0.3](https://data.europarl.europa.eu/def/dcat-ep/0.3/):
- Editorial fixes.
- Added `sh:node` constraint to `spdx:algorithm`, and added `spdx:ChecksumAlgorithm` class shape - see Issue [#27](https://github.com/europarl/dcat-ep/issues/27).
- Added `sh:node` constraint to `spdx:checksum` - see Issue [#23](https://github.com/europarl/dcat-ep/issues/23).
- Added `sh:node` constraint to `dcat:distribution` - see Issue [#22](https://github.com/europarl/dcat-ep/issues/22).
- Added language tag to `sh:description` - see Issue [#21](https://github.com/europarl/dcat-ep/issues/21).
- Fixed inconsistent definition of `dcat:theme` for `dcat:DataService`, `dcat:Dataset`, and `dcat:DatasetSeries` - see Issue [#20](https://github.com/europarl/dcat-ep/issues/20).
- Added `sh:node` and `sh:nodeKind` constraints to `dcat:hasVersion` - see Issue [#19](https://github.com/europarl/dcat-ep/issues/19).
- Fixed inconsistent definition of `dcterms:accrualPeriodicity` for `dcat:Catalogue`, `dcat:Dataset`, and `dcat:DatasetSeries` - see Issue [#18](https://github.com/europarl/dcat-ep/issues/18).
- Replaced `op-aut:dataset-theme` with `op-aut:data-theme` - see Issue [#15](https://github.com/europarl/dcat-ep/issues/15).
- Properties for `euvoc:DatasetStatus` were wrongly specified on `foaf:Agent`: fixed - see Issue [#14](https://github.com/europarl/dcat-ep/issues/14).
- Properties for `euvoc:DatasetTheme` were wrongly specified on `foaf:Agent`: fixed - see Issue [#13](https://github.com/europarl/dcat-ep/issues/13).
- Replaced `rdfs:Standard` with `dcterms:Standard` in `dcat:DataService` - see Issue [#12](https://github.com/europarl/dcat-ep/issues/12).
- Added `sh:uniqueLang` constraint to `adms:versionNotes` - see Issue [#11](https://github.com/europarl/dcat-ep/issues/11).
- Fixed max cardinality of `dcat:hasVersion` - see Issue [#10](https://github.com/europarl/dcat-ep/issues/10).
- Removed unnecessary typing of shapes as `skos:Concept`'s - see Issue [#6](https://github.com/europarl/dcat-ep/issues/6)."""@en;
adms:status <http://publications.europa.eu/resource/authority/dataset-status/COMPLETED>;
owl:versionIRI <https://europarl.github.io/dcat-ep/1.0/>;
owl:priorVersion <https://data.europarl.europa.eu/def/dcat-ep/0.3/>;
dcterms:conformsTo <https://www.w3.org/TR/shacl>;
dcterms:created "2022-05-19"^^xsd:date;
dcterms:issued "2022-10-10"^^xsd:date;
dcterms:modified "2023-11-02"^^xsd:date;
dcterms:dateCopyrighted "2023"^^xsd:gYear;
dcterms:license <https://www.europarl.europa.eu/legal-notice/>;
dcterms:creator <http://publications.europa.eu/resource/authority/corporate-body/EP>;
dcterms:publisher <http://publications.europa.eu/resource/authority/corporate-body/EP>;
dcterms:rightsHolder <http://publications.europa.eu/resource/authority/corporate-body/EURUN>;
doap:repository <https://github.com/europarl/dcat-ep>;
foaf:depiction <https://europarl.github.io/dcat-ep/1.0/dcat-ep.svg> .
dcat:Catalog a sh:NodeShape, rdfs:Class;
rdfs:comment "A curated collection of metadata about resources."@en;
sh:nodeKind sh:IRI;
sh:pattern "https://data.europarl.europa.eu/catalogue/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64781;
rdfs:label "Catalog"@en;
sh:order "1"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P9, epsh:P10, epsh:P11, epsh:P12, epsh:P13, epsh:P14, epsh:P15, epsh:P16,
epsh:P17, epsh:P18, epsh:P19, epsh:P20, epsh:P21, epsh:P22, epsh:P23, epsh:P24, epsh:P25,
epsh:P26, epsh:P27, epsh:P28, epsh:P29, epsh:P30 .
_:93a1d28d39824e87ae5f3f32bf4471e64781 rdf:first rdf:type;
rdf:rest rdf:nil .
dcat:CatalogRecord a sh:NodeShape, rdfs:Class;
rdfs:comment "A record in a catalog, describing the registration of a single dcat:Resource."@en;
sh:nodeKind sh:IRI;
sh:pattern "https://data.europarl.europa.eu/record/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64782;
rdfs:label "Catalog Record"@en;
sh:order "2"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P33, epsh:P34, epsh:P35, epsh:P36, epsh:P37, epsh:P38 .
_:93a1d28d39824e87ae5f3f32bf4471e64782 rdf:first rdf:type;
rdf:rest rdf:nil .
dcat:DataService a sh:NodeShape, rdfs:Class;
rdfs:comment "A collection of operations that provides access to one or more datasets or data processing functions."@en;
sh:nodeKind sh:IRI;
sh:pattern "https://data.europarl.europa.eu/service/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64783;
rdfs:label "Data Service"@en;
sh:order "3"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P41, epsh:P42, epsh:P43, epsh:P44, epsh:P45, epsh:P46, epsh:P47,
epsh:P48, epsh:P49, epsh:P50, epsh:P51, epsh:P52, epsh:P53, epsh:P54, epsh:P55, epsh:P56,
epsh:P57, epsh:P58, epsh:P59 .
_:93a1d28d39824e87ae5f3f32bf4471e64783 rdf:first rdf:type;
rdf:rest rdf:nil .
dcat:DatasetSeries a sh:NodeShape, rdfs:Class;
rdfs:comment "A collection of datasets that are published separately, but share some characteristics that group them."@en;
sh:nodeKind sh:IRI;
sh:pattern "https://data.europarl.europa.eu/dataset/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64784;
rdfs:label "Dataset Series"@en;
sh:order "4"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P62, epsh:P63, epsh:P64, epsh:P65, epsh:P66, epsh:P67, epsh:P68,
epsh:P70, epsh:P71, epsh:P72, epsh:P73, epsh:P74, epsh:P75, epsh:P76, epsh:P77, epsh:P78,
epsh:P80, epsh:P81, epsh:P83, epsh:P88, epsh:P89 .
_:93a1d28d39824e87ae5f3f32bf4471e64784 rdf:first rdf:type;
rdf:rest rdf:nil .
dcat:Dataset a sh:NodeShape, rdfs:Class;
rdfs:comment "A collection of data, published or curated by a single agent, and available for access or download in one or more representations."@en;
sh:nodeKind sh:IRI;
sh:pattern "https://data.europarl.europa.eu/dataset/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64785;
rdfs:label "Dataset"@en;
sh:order "5"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P62, epsh:P63, epsh:P64, epsh:P65, epsh:P66, epsh:P67, epsh:P68,
epsh:P69, epsh:P70, epsh:P71, epsh:P72, epsh:P73, epsh:P74, epsh:P75, epsh:P76, epsh:P77,
epsh:P78, epsh:P79, epsh:P80, epsh:P81, epsh:P82, epsh:P83, epsh:P84, epsh:P85, epsh:P86,
epsh:P87, epsh:P88, epsh:P89, epsh:P90, epsh:P91, epsh:P92, epsh:P93, epsh:P94, epsh:P95 .
_:93a1d28d39824e87ae5f3f32bf4471e64785 rdf:first rdf:type;
rdf:rest rdf:nil .
dcat:Distribution a sh:NodeShape, rdfs:Class;
rdfs:comment "A specific representation of a dataset. A dataset might be available in multiple serializations that may differ in various ways, including natural language, media-type or format, schematic organization, temporal and spatial resolution, level of detail or profiles (which might specify any or all of the above)."@en;
sh:nodeKind sh:BlankNode;
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64786;
rdfs:label "Distribution"@en;
sh:order "6"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P98, epsh:P99, epsh:P100, epsh:P101, epsh:P102, epsh:P103, epsh:P104,
epsh:P105, epsh:P106, epsh:P107, epsh:P108, epsh:P109, epsh:P110, epsh:P111, epsh:P112 .
_:93a1d28d39824e87ae5f3f32bf4471e64786 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:PeriodOfTime a sh:NodeShape, rdfs:Class;
rdfs:comment "An interval of time that is named or defined by its start and end. The interval can also be open - i.e., it can have just a start or just an end."@en;
sh:nodeKind sh:IRI;
sh:pattern "https://data.europarl.europa.eu/time-period/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64787;
rdfs:label "Period of time"@en;
sh:order "7"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P115, epsh:P116, epsh:P117 .
_:93a1d28d39824e87ae5f3f32bf4471e64787 rdf:first rdf:type;
rdf:rest rdf:nil .
spdx:Checksum a sh:NodeShape, rdfs:Class;
rdfs:comment "A Checksum is a value that allows to check the integrity of the contents of a file. Even small changes to the content of the file will change its checksum. This class allows the results of a variety of checksum and cryptographic message digest algorithms to be represented."@en;
sh:nodeKind sh:BlankNode;
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64788;
rdfs:label "Checksum"@en;
sh:order "8"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P121, epsh:P122, epsh:P123 .
_:93a1d28d39824e87ae5f3f32bf4471e64788 rdf:first rdf:type;
rdf:rest rdf:nil .
vcard:Kind a sh:NodeShape, rdfs:Class;
rdfs:comment "A description following the VCARD-RDF specification, e.g. to provide telephone number and e-mail address for a contact point."@en;
sh:nodeKind sh:IRI;
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64789;
rdfs:label "Kind"@en;
sh:order "9"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P127, epsh:P128, epsh:P129, epsh:P130, epsh:P131 .
_:93a1d28d39824e87ae5f3f32bf4471e64789 rdf:first rdf:type;
rdf:rest rdf:nil .
skos:Concept a sh:NodeShape, rdfs:Class;
rdfs:comment "A concept, possibly included in a concept scheme."@en;
sh:nodeKind sh:IRI;
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64790;
rdfs:label "Concept"@en;
sh:order "10"^^xsd:integer;
owl:versionInfo "v0.3";
sh:property epsh:P172 .
_:93a1d28d39824e87ae5f3f32bf4471e64790 rdf:first rdf:type;
rdf:rest rdf:nil .
skos:ConceptScheme a sh:NodeShape, rdfs:Class;
rdfs:comment "An aggregation of concepts."@en;
sh:nodeKind sh:IRI;
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64791;
rdfs:label "Concept Scheme"@en;
sh:order "11"^^xsd:integer;
owl:versionInfo "v0.4" .
_:93a1d28d39824e87ae5f3f32bf4471e64791 rdf:first rdf:type;
rdf:rest rdf:nil .
foaf:Document a sh:NodeShape, rdfs:Class;
rdfs:comment "A textual resource intended for human consumption that contains information, e.g., a Web page about a Dataset."@en;
sh:nodeKind sh:IRI;
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64792;
rdfs:label "Document"@en;
sh:order "12"^^xsd:integer;
owl:versionInfo "v0.2" .
_:93a1d28d39824e87ae5f3f32bf4471e64792 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:Standard a sh:NodeShape, rdfs:Class;
rdfs:comment "A standard or other specification to which a Catalogue, Catalogue Record, Data Service, Dataset, or Distribution conforms."@en;
sh:nodeKind sh:IRI;
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64793;
rdfs:label "Standard"@en;
sh:order "13"^^xsd:integer;
owl:versionInfo "v0.2" .
_:93a1d28d39824e87ae5f3f32bf4471e64793 rdf:first rdf:type;
rdf:rest rdf:nil .
foaf:Agent a sh:NodeShape, rdfs:Class;
sh:nodeKind sh:IRI;
sh:pattern "http://publications.europa.eu/resource/authority/corporate-body/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64794;
rdfs:label "Agent"@en;
sh:order "14"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P134, epsh:P135 .
_:93a1d28d39824e87ae5f3f32bf4471e64794 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:LicenseDocument a sh:NodeShape, rdfs:Class;
rdfs:comment "A legal document giving official permission to do something with a resource."@en;
sh:nodeKind sh:IRI;
sh:pattern "https://www.europarl.europa.eu/legal-notice/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64795;
rdfs:label "Licence Document"@en;
sh:order "15"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P140, epsh:P141 .
_:93a1d28d39824e87ae5f3f32bf4471e64795 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:Location a sh:NodeShape, rdfs:Class;
rdfs:comment "A spatial region or named place."@en;
sh:nodeKind sh:IRI;
sh:pattern "http://publications.europa.eu/resource/authority/country/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64796;
rdfs:label "Location"@en;
sh:order "16"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P144, epsh:P145 .
_:93a1d28d39824e87ae5f3f32bf4471e64796 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:LinguisticSystem a sh:NodeShape, rdfs:Class;
rdfs:comment "A language of the resource."@en;
sh:nodeKind sh:IRI;
sh:pattern "http://publications.europa.eu/resource/authority/language/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64797;
rdfs:label "Linguistic System"@en;
sh:order "17"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P148, epsh:P149 .
_:93a1d28d39824e87ae5f3f32bf4471e64797 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:RightsStatement a sh:NodeShape, rdfs:Class;
rdfs:comment "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."@en;
sh:nodeKind sh:IRI;
sh:pattern "http://publications.europa.eu/resource/authority/access-right/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64798;
rdfs:label "Rights Statement"@en;
sh:order "18"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P152, epsh:P153 .
_:93a1d28d39824e87ae5f3f32bf4471e64798 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:MediaType a sh:NodeShape, rdfs:Class;
rdfs:comment "A media type, e.g. the format of a computer file."@en;
sh:nodeKind sh:IRI;
sh:pattern "https://www.iana.org/assignments/media-types/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64799;
rdfs:label "Media Type"@en;
sh:order "19"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P164, epsh:P165 .
_:93a1d28d39824e87ae5f3f32bf4471e64799 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:Frequency a sh:NodeShape, rdfs:Class;
rdfs:comment "A rate at which something recurs."@en;
sh:nodeKind sh:IRI;
sh:pattern "http://publications.europa.eu/resource/authority/frequency/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64800;
rdfs:label "Frequency"@en;
sh:order "20"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P156, epsh:P157 .
_:93a1d28d39824e87ae5f3f32bf4471e64800 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:MediaTypeOrExtent a sh:NodeShape, rdfs:Class;
rdfs:comment "A media type or extent."@en;
sh:nodeKind sh:IRI;
sh:pattern "http://publications.europa.eu/resource/authority/file-type/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64801;
rdfs:label "File Type"@en;
sh:order "21"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P160, epsh:P161 .
_:93a1d28d39824e87ae5f3f32bf4471e64801 rdf:first rdf:type;
rdf:rest rdf:nil .
euvoc:DatasetTheme a sh:NodeShape, rdfs:Class;
rdfs:comment "A theme used for data classification."@en;
sh:nodeKind sh:IRI;
sh:pattern "http://publications.europa.eu/resource/authority/data-theme/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64802;
rdfs:label "Theme"@en;
sh:order "22"^^xsd:integer;
owl:versionInfo "v0.2";
sh:property epsh:P168, epsh:P169 .
_:93a1d28d39824e87ae5f3f32bf4471e64802 rdf:first rdf:type;
rdf:rest rdf:nil .
euvoc:DatasetStatus a sh:NodeShape, rdfs:Class;
rdfs:comment "A status of a dataset."@en;
sh:nodeKind sh:IRI;
sh:pattern "http://publications.europa.eu/resource/authority/dataset-status/.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64803;
rdfs:label "Dataset Status"@en;
sh:order "23"^^xsd:integer;
owl:versionInfo "v0.4";
sh:property epsh:P175, epsh:P176 .
_:93a1d28d39824e87ae5f3f32bf4471e64803 rdf:first rdf:type;
rdf:rest rdf:nil .
spdx:ChecksumAlgorithm a sh:NodeShape, rdfs:Class;
rdfs:comment "An algorithm used to produce a checksum."@en;
sh:nodeKind sh:IRI;
sh:pattern "http://spdx.org/rdf/terms#checksumAlgorithm_.*$";
sh:closed "true"^^xsd:boolean;
sh:ignoredProperties _:93a1d28d39824e87ae5f3f32bf4471e64804;
rdfs:label "Checksum Algorithm"@en;
sh:order "24"^^xsd:integer;
owl:versionInfo "v0.1" .
_:93a1d28d39824e87ae5f3f32bf4471e64804 rdf:first rdf:type;
rdf:rest rdf:nil .
epsh:P9 owl:versionInfo "v0.3";
sh:path rdf:type;
sh:name "type"@en;
sh:description "Property that is used to state that a resource is an instance of a class."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI .
epsh:P10 owl:versionInfo "v0.3";
sh:path dcterms:title;
sh:name "title"@en;
sh:description "This property contains a name given to the Catalogue. This property can be repeated for parallel language versions of the name."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype rdf:langString;
sh:uniqueLang "true"^^xsd:boolean .
epsh:P11 owl:versionInfo "v0.3";
sh:path dcterms:identifier;
sh:name "identifier"@en;
sh:description "This property contains the main identifier for the Catalogue, i.e., the identifier issued by the original publisher of the Catalogue. It is the same URI of the Catalogue itself, typed as an xsd:anyURI."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:anyUri .
epsh:P12 owl:versionInfo "v0.3";
sh:path dcterms:description;
sh:name "description"@en;
sh:description "This property contains a free-text account of the Catalogue.This property can be repeated for parallel language versions of the name."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype rdf:langString;
sh:uniqueLang "true"^^xsd:boolean .
epsh:P13 owl:versionInfo "v0.2";
sh:path dcterms:publisher;
sh:name "publisher"@en;
sh:description "This property refers to an entity (organisation) responsible for making the Catalogue available."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node foaf:Agent .
epsh:P14 owl:versionInfo "v0.3";
sh:path dcat:dataset;
sh:name "dataset"@en;
sh:description "This property links the Catalogue with a Dataset that is part of the Catalogue."@en;
sh:nodeKind sh:IRI;
sh:or _:93a1d28d39824e87ae5f3f32bf4471e64805 .
_:93a1d28d39824e87ae5f3f32bf4471e64805 rdf:first _:93a1d28d39824e87ae5f3f32bf4471e64806;
rdf:rest _:93a1d28d39824e87ae5f3f32bf4471e64807 .
_:93a1d28d39824e87ae5f3f32bf4471e64806 sh:node dcat:Dataset .
_:93a1d28d39824e87ae5f3f32bf4471e64807 rdf:first _:93a1d28d39824e87ae5f3f32bf4471e64808;
rdf:rest rdf:nil .
_:93a1d28d39824e87ae5f3f32bf4471e64808 sh:node dcat:DatasetSeries .
epsh:P15 owl:versionInfo "v0.2";
sh:path dcat:version;
sh:name "version"@en;
sh:description "This property refers to the version number of Catalogue."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:string .
epsh:P16 owl:versionInfo "v0.2";
sh:path dcat:record;
sh:name "record"@en;
sh:description "This property refers to a Catalogue Record that is part of the Catalogue."@en;
sh:nodeKind sh:IRI;
sh:node dcat:CatalogRecord .
epsh:P17 owl:versionInfo "v0.2";
sh:path dcat:service;
sh:name "service"@en;
sh:description "This property refers to a site or end-point that is listed in the Catalogue."@en;
sh:nodeKind sh:IRI;
sh:node dcat:DataService .
epsh:P18 owl:versionInfo "v0.3";
sh:path dcterms:license;
sh:name "licence"@en;
sh:description "This property refers to the license under which the Catalogue metadata can be used or reused."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node dcterms:LicenseDocument .
epsh:P19 owl:versionInfo "v0.3";
sh:path dcterms:accessRights;
sh:name "access rights"@en;
sh:description "This property refers to information that indicates whether the Catalogue is public, has access restrictions or is not public. In DCAT-EP, this property takes as value the concept of the EU Vocabularies Access Rights Named Authority List: http://publications.europa.eu/resource/authority/access-right"@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node dcterms:RightsStatement .
epsh:P20 owl:versionInfo "v0.3";
sh:path dcterms:issued;
sh:name "release date"@en;
sh:description "This property contains the date of formal issuance (e.g., publication) of the Catalogue."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:dateTime .
epsh:P21 owl:versionInfo "v0.2";
sh:path dcterms:modified;
sh:name "update / modification date"@en;
sh:description "This property contains the most recent date on which the Catalogue was modified."@en;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:dateTime .
epsh:P22 owl:versionInfo "v0.2";
sh:path dcterms:language;
sh:name "language"@en;
sh:description "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."@en;
sh:nodeKind sh:IRI;
sh:node dcterms:LinguisticSystem .
epsh:P23 owl:versionInfo "v0.3";
sh:path dcat:themeTaxonomy;
sh:name "themes"@en;
sh:description "This property refers to a knowledge organisation system used to classify the Catalogue's Datasets. Values are concepts of the op-aut:data-theme vocabulary."@en;
sh:nodeKind sh:IRI;
sh:node skos:ConceptScheme .
epsh:P24 owl:versionInfo "v0.2";
sh:path foaf:homepage;
sh:name "homepage"@en;
sh:description "This property refers to a web page that acts as the main page for the Catalogue (a public Web document usually available in HTML). foaf:homepage is an inverse functional property (IFP) which means that it MUST be unique and precisely identify the Web-page for the resource."@en;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node foaf:Document .
epsh:P25 owl:versionInfo "v0.3";
sh:path dcterms:spatial;
sh:name "spatial coverage"@en;
sh:description "This property refers to a geographic region that is covered by the Catalogue."@en;
sh:nodeKind sh:IRI;
sh:node dcterms:Location .
epsh:P26 owl:versionInfo "v0.3";
sh:path dcterms:conformsTo;
sh:name "application profile"@en;
sh:description "This property refers to an ontology or application profile that the Catalogue conforms to - i.e., to the ontologies or application profiles used for the contained Catalogue Records. In case of conformance to multiple ontologies (e.g., DCAT-EP is a profile of DCAT), application profiles (e.g., DCAT-EP is a profile of DCAT-AP), and versions of them, this property can be repeated multiple times."@en;
sh:nodeKind sh:IRI;
sh:node dcterms:Standard .
epsh:P27 owl:versionInfo "v0.3";
sh:path dcterms:creator;
sh:name "creator"@en;
sh:description "The entity responsible for producing the Catalogue."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node foaf:Agent .
epsh:P28 owl:versionInfo "v0.3";
sh:path dcterms:rightsHolder;
sh:name "rights holder"@en;
sh:description "A person or organisation owning or managing rights over the Catalogue."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node foaf:Agent .
epsh:P29 owl:versionInfo "v0.3";
sh:path dcterms:dateCopyrighted;
sh:name "date copyrighted"@en;
sh:description "Date of copyright of the Catalogue."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:gYear .
epsh:P30 owl:versionInfo "v0.4";
sh:path dcterms:accrualPeriodicity;
sh:name "frequency"@en;
sh:description "This property refers to the frequency at which the Catalogue is updated. A Catalogue is updated when the contained Catalogue Records are modified, added, or withdrawn."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node dcterms:Frequency .
epsh:P33 owl:versionInfo "v0.3";
sh:path rdf:type;
sh:name "type"@en;
sh:description "Property that is used to state that a resource is an instance of a class."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI .
epsh:P34 owl:versionInfo "v0.2";
sh:path foaf:primaryTopic;
sh:name "primary topic"@en;
sh:description "This property links the Catalogue Record to the resource (Dataset, Dataset Series, etc.) described in the record."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:or _:93a1d28d39824e87ae5f3f32bf4471e64809 .
_:93a1d28d39824e87ae5f3f32bf4471e64809 rdf:first _:93a1d28d39824e87ae5f3f32bf4471e64810;
rdf:rest _:93a1d28d39824e87ae5f3f32bf4471e64811 .
_:93a1d28d39824e87ae5f3f32bf4471e64810 sh:node dcat:Catalog .
_:93a1d28d39824e87ae5f3f32bf4471e64811 rdf:first _:93a1d28d39824e87ae5f3f32bf4471e64812;
rdf:rest _:93a1d28d39824e87ae5f3f32bf4471e64813 .
_:93a1d28d39824e87ae5f3f32bf4471e64812 sh:node dcat:Dataset .
_:93a1d28d39824e87ae5f3f32bf4471e64813 rdf:first _:93a1d28d39824e87ae5f3f32bf4471e64814;
rdf:rest _:93a1d28d39824e87ae5f3f32bf4471e64815 .
_:93a1d28d39824e87ae5f3f32bf4471e64814 sh:node dcat:DatasetSeries .
_:93a1d28d39824e87ae5f3f32bf4471e64815 rdf:first _:93a1d28d39824e87ae5f3f32bf4471e64816;
rdf:rest rdf:nil .
_:93a1d28d39824e87ae5f3f32bf4471e64816 sh:node dcat:DataService .
epsh:P35 owl:versionInfo "v0.2";
sh:path dcterms:modified;
sh:name "update / modification date"@en;
sh:description "This property contains the most recent date on which the Catalogue Record was changed or modified."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:dateTime .
epsh:P36 owl:versionInfo "v0.2";
sh:path dcterms:language;
sh:name "language"@en;
sh:description "This property refers to a language used in the textual metadata describing titles, descriptions, etc. of the Catalogue Record. This property can be repeated if the metadata is provided in multiple languages"@en;
sh:nodeKind sh:IRI;
sh:node dcterms:LinguisticSystem .
epsh:P37 owl:versionInfo "v0.3";
sh:path dcterms:issued;
sh:name "listing date"@en;
sh:description "This property contains the date on which the Catalogue Record was published."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:dateTime .
epsh:P38 owl:versionInfo "v0.3";
sh:path dcterms:conformsTo;
sh:name "application profile"@en;
sh:description "This property refers to an ontology or application profile that the Catalogue Record conforms to. In case of conformance to multiple ontologies (e.g., DCAT-EP is a profile of DCAT), application profiles (e.g., DCAT-EP is a profile of DCAT-AP), and versions of them, this property can be repeated multiple times."@en;
sh:nodeKind sh:IRI;
sh:node dcterms:Standard .
epsh:P41 owl:versionInfo "v0.3";
sh:path rdf:type;
sh:name "type"@en;
sh:description "Property that is used to state that a resource is an instance of a class."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI .
epsh:P42 owl:versionInfo "v0.3";
sh:path dcterms:title;
sh:name "title"@en;
sh:description "This property contains a name given to the Data Service. This property can be repeated for parallel language versions of the name."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype rdf:langString;
sh:uniqueLang "true"^^xsd:boolean .
epsh:P43 owl:versionInfo "v0.2";
sh:path dcat:endpointURL;
sh:name "endpoint URL"@en;
sh:description "The root location or primary endpoint of the service (an IRI)."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node rdfs:Resource .
epsh:P44 owl:versionInfo "v0.2";
sh:path dcat:endpointDescription;
sh:name "endpoint description"@en;
sh:description "This property contains a description of the services available via the end-points, including their operations, parameters etc. The property gives specific details of the actual endpoint instances, while dcterms:conformsTo is used to indicate the general standard or specification that the endpoints implement. An endpoint description may be expressed in a machine-readable form."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node rdfs:Resource .
epsh:P45 owl:versionInfo "v0.2";
sh:path dcat:servesDataset;
sh:name "serves dataset"@en;
sh:description "Indicates to which Dataset the Data Service is related to."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node dcat:Dataset .
epsh:P46 owl:versionInfo "v0.2";
sh:path dcterms:publisher;
sh:name "publisher"@en;
sh:description "This property refers to an entity (organisation) responsible for making the Data Service available."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node foaf:Agent .
epsh:P47 owl:versionInfo "v0..3";
sh:path dcterms:description;
sh:name "description"@en;
sh:description "This property contains a free-text account of the Data Service. This property can be repeated for parallel language versions of the description."@en;
sh:nodeKind sh:Literal;
sh:datatype rdf:langString;
sh:uniqueLang "true"^^xsd:boolean .
epsh:P48 owl:versionInfo "v0.3";
sh:path dcterms:accessRights;
sh:name "access rights"@en;
sh:description "This property refers to information that indicates whether the Data Service is public, has access restrictions or is not public. In DCAT-EP, this property takes as value the concept of the EU Vocabularies Access Rights Named Authority List: http://publications.europa.eu/resource/authority/access-right"@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node dcterms:RightsStatement .
epsh:P49 owl:versionInfo "v0.4";
sh:path dcterms:conformsTo;
sh:name "conforms to"@en;
sh:description "This property refer to an established standard to which the Data Service conforms to. In case of conformance to multiple standards, and versions of them, this property can be repeated multiple times."@en;
sh:nodeKind sh:IRI;
sh:node dcterms:Standard .
epsh:P50 owl:versionInfo "v0.2";
sh:path dcterms:subject;
sh:name "subject"@en;
sh:description "This property contains a keyword or tag describing the Data Service. Values are concept of Eurovoc vocabulary: http://eurovoc.europa.eu/"@en;
sh:nodeKind sh:IRI;
sh:node skos:Concept .
epsh:P51 owl:versionInfo "v0.2";
sh:path dcat:version;
sh:name "version info"@en;
sh:description "This property refers to the version number of a Data Service."@en;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:string .
epsh:P52 owl:versionInfo "v0.3";
sh:path dcat:theme;
sh:name "theme"@en;
sh:description "This property refers to a category of the Data Service. A Data Service may be associated with multiple themes. Values are concepts of the op-aut:data-theme vocabulary."@en;
sh:nodeKind sh:IRI;
sh:or _:93a1d28d39824e87ae5f3f32bf4471e64817 .
_:93a1d28d39824e87ae5f3f32bf4471e64817 rdf:first _:93a1d28d39824e87ae5f3f32bf4471e64818;
rdf:rest _:93a1d28d39824e87ae5f3f32bf4471e64819 .
_:93a1d28d39824e87ae5f3f32bf4471e64818 sh:node skos:Concept .
_:93a1d28d39824e87ae5f3f32bf4471e64819 rdf:first _:93a1d28d39824e87ae5f3f32bf4471e64820;
rdf:rest rdf:nil .
_:93a1d28d39824e87ae5f3f32bf4471e64820 sh:node euvoc:DatasetTheme .
epsh:P53 owl:versionInfo "v0.3";
sh:path dcterms:license;
sh:name "licence"@en;
sh:description "This property contains the licence under which the Data Service is made available."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node dcterms:LicenseDocument .
epsh:P54 owl:versionInfo "v0.3";
sh:path dcat:contactPoint;
sh:name "contact point"@en;
sh:description "This property contains contact information that can be used for sending comments about the Data Service. Relevant contact information for the cataloged Data Service. Use of vCard is recommended."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node vcard:Kind .
epsh:P55 owl:versionInfo "v0.3";
sh:path dcterms:identifier;
sh:name "identifier"@en;
sh:description "This property contains the main identifier for the Data Service, i.e., the identifier issued by the original publisher of the Data Service. It is the same URI of the Data Service itself, typed as an xsd:anyURI."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:anyUri .
epsh:P56 owl:versionInfo "v0.3";
sh:path dcterms:issued;
sh:name "release date"@en;
sh:description "This property contains the date of formal issuance (e.g., publication) of the Data Service."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:dateTime .
epsh:P57 owl:versionInfo "v0.2";
sh:path dcterms:modified;
sh:name "update / modification date"@en;
sh:description "This property contains the most recent date on which the Data Service was modified."@en;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:dateTime .
epsh:P58 owl:versionInfo "v0.3";
sh:path dcat:inCatalog;
sh:name "in catalog"@en;
sh:description "This property links the Data Service to the Catalogue listing it."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node dcat:Catalog .
epsh:P59 owl:versionInfo "v0.2";
sh:path dcterms:format;
sh:name "format"@en;
sh:description "This property refers to the file formats availabe for the API response."@en;
sh:nodeKind sh:IRI;
sh:node dcterms:MediaTypeOrExtent .
epsh:P62 owl:versionInfo "v0.3";
sh:path rdf:type;
sh:name "type"@en;
sh:description "Property that is used to state that a resource is an instance of a class."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI .
epsh:P63 owl:versionInfo "v0.3";
sh:path dcterms:title;
sh:name "title"@en;
sh:description "This property contains a name given to the Dataset or to the Dataset Series. This property can be repeated for parallel language versions of the name."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype rdf:langString;
sh:uniqueLang "true"^^xsd:boolean .
epsh:P64 owl:versionInfo "v0.3";
sh:path dcterms:description;
sh:name "description"@en;
sh:description "This property contains a free-text account of the Dataset or of the Dataset Series. This property can be repeated for parallel language versions of the description."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype rdf:langString;
sh:uniqueLang "true"^^xsd:boolean .
epsh:P65 owl:versionInfo "v0.3";
sh:path dcterms:identifier;
sh:name "identifier"@en;
sh:description "This property contains the main identifier for the Dataset, i.e., the identifier issued by the original publisher of the Dataset. It is the same URI of the Dataset itself, typed as an xsd:anyURI."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:anyURI .
epsh:P66 owl:versionInfo "v0.2";
sh:path dcterms:publisher;
sh:name "publisher"@en;
sh:description "This property refers to an entity (organisation) responsible for making the Dataset or the Dataset Series available."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node foaf:Agent .
epsh:P67 owl:versionInfo "v0.2";
sh:path dcterms:language;
sh:name "language"@en;
sh:description "This property refers to a language of the Dataset or of the Dataset Series. This property can be repeated if there are multiple languages in the Dataset."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node dcterms:LinguisticSystem .
epsh:P68 owl:versionInfo "v0.3";
sh:path dcat:theme;
sh:name "theme"@en;
sh:description "This property refers to a category of the Dataset or of the Dataset Series. A Dataset or a Dataset Series may be associated with multiple themes. Values are concepts of the op-aut:data-theme vocabulary."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:or _:93a1d28d39824e87ae5f3f32bf4471e64821 .
_:93a1d28d39824e87ae5f3f32bf4471e64821 rdf:first _:93a1d28d39824e87ae5f3f32bf4471e64822;
rdf:rest _:93a1d28d39824e87ae5f3f32bf4471e64823 .
_:93a1d28d39824e87ae5f3f32bf4471e64822 sh:node skos:Concept .
_:93a1d28d39824e87ae5f3f32bf4471e64823 rdf:first _:93a1d28d39824e87ae5f3f32bf4471e64824;
rdf:rest rdf:nil .
_:93a1d28d39824e87ae5f3f32bf4471e64824 sh:node euvoc:DatasetTheme .
epsh:P69 owl:versionInfo "v0.2";
sh:path dcat:inSeries;
sh:name "in series"@en;
sh:description "This property refers to a Dataset Series of which the Dataset is part."@en;
sh:nodeKind sh:IRI;
sh:node dcat:DatasetSeries .
epsh:P70 owl:versionInfo "v0.3";
sh:path dcterms:creator;
sh:name "creator"@en;
sh:description "The entity responsible for producing the Dataset or the Dataset Series."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node foaf:Agent .
epsh:P71 owl:versionInfo "v0.3";
sh:path dcterms:rightsHolder;
sh:name "rights holder"@en;
sh:description "A person or organisation owning or managing rights over the Dataset or the Dataset Series."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node foaf:Agent .
epsh:P72 owl:versionInfo "v0.3";
sh:path dcterms:dateCopyrighted;
sh:name "date copyrighted"@en;
sh:description "Date of copyright of the Dataset or Dataset Series."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:gYear .
epsh:P73 owl:versionInfo "v0.3";
sh:path dcat:inCatalog;
sh:name "in catalog"@en;
sh:description "This property links the Dataset or Dataset Series to the Catalogue listing it."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node dcat:Catalog .
epsh:P74 owl:versionInfo "v0.2";
sh:path dcterms:subject;
sh:name "subject"@en;
sh:description "This property contains a keyword or tag describing the Dataset or of the Dataset Series. In DCAT-AP, this property takes as value the concepts of the EuroVoc vocabulary: http://eurovoc.europa.eu/"@en;
sh:nodeKind sh:IRI;
sh:node skos:Concept .
epsh:P75 owl:versionInfo "v0.3";
sh:path dcterms:issued;
sh:name "issued"@en;
sh:description "This property contains the date of formal issuance (e.g., publication) of the Dataset or of the Dataset Series."@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:dateTime .
epsh:P76 owl:versionInfo "v0.2";
sh:path dcterms:modified;
sh:name "modified"@en;
sh:description "This property contains the most recent date on which the Dataset or the Dataset Series was modified. A Dataset Series is modified when any of its child Datasets is updated, added, or withdrawn."@en;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:Literal;
sh:datatype xsd:dateTime .
epsh:P77 owl:versionInfo "v0.3";
sh:path dcterms:accessRights;
sh:name "access rights"@en;
sh:description "This property refers to information that indicates whether the Dataset or the Dataset Series is public, has access restrictions or is not public. In DCAT-EP, this property takes as value the concept of the EU Vocabularies Access Rights Named Authority List: http://publications.europa.eu/resource/authority/access-right"@en;
sh:minCount "1"^^xsd:integer;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node dcterms:RightsStatement .
epsh:P78 owl:versionInfo "v0.3";
sh:path dcat:contactPoint;
sh:name "contact point"@en;
sh:description "This property contains contact information that can be used for sending comments about the Dataset or the Dataset Series. Relevant contact information for the catalogued Dataset or Dataset Series. Use of vCard is recommended."@en;
sh:minCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node vcard:Kind .
epsh:P79 owl:versionInfo "v0.3";
sh:path dcat:distribution;
sh:name "distribution"@en;
sh:description "This property links the Dataset to an available Distribution."@en;
sh:nodeKind sh:BlankNode;
sh:node dcat:Distribution .
epsh:P80 owl:versionInfo "v0.2";
sh:path dcterms:spatial;
sh:name "spatial coverage"@en;
sh:description "This property refers to a geographic region that is covered by the Dataset or by the Dataset Series."@en;
sh:nodeKind sh:IRI;
sh:node dcterms:Location .
epsh:P81 owl:versionInfo "v0.2";
sh:path dcterms:temporal;
sh:name "temporal coverage"@en;
sh:description "This property refers to a temporal period that the Dataset or the Dataset Series covers."@en;
sh:nodeKind sh:IRI;
sh:node dcterms:PeriodOfTime .
epsh:P82 owl:versionInfo "v0.2";
sh:path adms:status;
sh:name "status"@en;
sh:description "This property refers to the maturity of the Dataset or of the Dataset Series. Values are concepts of EU Vocabularies Dataset Status Named Authority List: http://publications.europa.eu/resource/authority/dataset-status"@en;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node euvoc:DatasetStatus .
epsh:P83 owl:versionInfo "v0.2";
sh:path dcterms:accrualPeriodicity;
sh:name "frequency"@en;
sh:description "This property refers to the frequency at which the Dataset or a Dataset Series is updated. A Dataset Series is updated when any of its child Datasets is modified, added, or withdrawn."@en;
sh:maxCount "1"^^xsd:integer;
sh:nodeKind sh:IRI;
sh:node dcterms:Frequency .
epsh:P84 owl:versionInfo "v0.2.1";