-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
2499 lines (2445 loc) · 147 KB
/
index.html
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
<!DOCTYPE HTML><html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
"Noto Color Emoji";
background-color: #fff;
}
.anchor {
float: left;
padding-right: 4px;
margin-left: -20px;
line-height: 1;
padding-top: 12px;
}
a {
color: #007bff;
text-decoration: none;
background-color: transparent;
}
a:-webkit-any-link {
cursor: pointer;
}
.p {
font-size: 0.875em;
}
h2 {
margin: 25px 0px 10px 0px;
}
h3 {
font-size: 1.4em;
}
@media only print {
}
@page {
size: A4 portrait;
margin-top: 1.2cm;
margin-bottom: 1.2cm;
margin-left: 1.2cm;
margin-right: 1.2cm;
background-repeat: no-repeat;
background-position: 40px 10px;
@bottom-center
{
content
:
counter(
page
);
}
}
/* This section draw the format web */
.ul_type_none {
list-style-type: none;
}
.sp_list_description_properties {
/* don't set it lower otherwise it gets hidden in PDF */
padding-left: 20px;
}
dl, ol, ul {
margin-top: 0;
margin-bottom: 1rem;
}
li {
display: list-item;
text-align: -webkit-match-parent;
}
.sp_section_title_header {
font-family: Georgia, Garamond, serif;
margin-top: 25px;
margin-bottom: 2.5rem;
font-size: 1.5625rem;
display: block;
font-weight: 500;
color: #1e1e1f;
line-height: 1.2em;
}
.sp_section_subtitle {
font-family: Georgia, Garamond, serif;
margin-top: 0;
margin-bottom: 0.5rem;
display: block;
font-weight: 500;
color: #1e1e1f;
line-height: 1.2em;
}
.sp_section_title_table {
font-family: Georgia, Garamond, serif;
/* 0 because URI is right under */
margin-bottom: 0rem;
display: block;
font-weight: 500;
color: #1e1e1f;
line-height: 1.2em;
}
.sp_section_title_toc {
font-family: Georgia, Garamond, serif;
}
/* URI below the title of the section */
.sp_section_uri {
margin-top: 0px;
}
/* div wrapping section title and URI below - same as a paragraph margin */
.sp_section_title_table_wrapper {
margin-bottom: 16px;
border-bottom: 1px solid;
}
table {
display: table;
border-spacing: 0px;
margin-bottom: 1rem;
}
tr:nth-child(even) {
background-color: #eee;
}
.sp_table_prefixes table {
border-collapse: collapse;
margin-bottom: 1rem;
color: #212529;
}
.sp_table_prefixes td {
padding: 0.25rem;
vertical-align: top;
border-top: 1px solid #dee2e6;
}
.sp_table_propertyshapes {
border-collapse: collapse;
width: 100%;
}
.sp_table_propertyshapes thead {
display: table-header-group;
vertical-align: middle;
border-color: inherit;
}
.sp_table_propertyshapes tr {
display: table-row;
vertical-align: inherit;
border-color: inherit;
}
.sp_table_propertyshapes th:nth-child(4) {
width: 6%;
}
.sp_table_propertyshapes td {
padding: 0.75rem;
border-top: 1px solid #dee2e6;
}
.sp_table_propertyshapes tbody {
display: table-row-group;
vertical-align: middle;
border-color: inherit;
}
.sp_table_propertyshapes_col_description {
word-break: break-word;
}
.sp_serialization_badge {
margin-right: 0.5em;
}
.container {
width: calc(100% - 40px);
max-width: 1000px;
margin-left: 300px;
margin-right: auto;
}
.container {width: calc(100% - 500px);}
.toc {
position: fixed;
top: 0;
left: 0;
font-size: small;
padding: 10px 10px;
width: auto;
border-right: solid 2px #eeeeee;
bottom: 0;
overflow-y: scroll;
background-color:white;
max-width:255px;
}
.sp_list_toc {padding-left: 0px;}
.sp_list_toc_l2 {padding-left: 10px;}
</style>
<meta charset="UTF-8">
<meta name="lang" content="en">
<meta property="og:locale" content="en">
<title>DCAT-EP Application Profile</title>
<meta name="apple-mobile-web-app-title" content="DCAT-EP Application Profile">
<meta name="twitter:title" content="DCAT-EP Application Profile">
<meta property="og:title" content="DCAT-EP Application Profile">
<meta name="author" content="European Parliament">
<meta name="description" content="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.">
<style type="text/css">
/*.container {width: calc(100% - 550px);}*/
/*.toc {overflow-y: auto;}*/
.sp_list_toc li {padding: 1px;}
.sp_section_title_header {font-size:2em;}
.sp_section_title_header {margin-top:2em;}
.logo {width:125px;position:absolute;right:70px;top:50px;}
.self-link {color:inherit;font-size:1rem;opacity:.3 !important;}
.self-link:hover {opacity:.5 !important}
.copyright {font-size:small;}
header h2 {font-family:Georgia, Garamond, serif;font-weight:normal;margin-bottom:2em;margin-top:-1em;}
h3 {font-family:Georgia, Garamond, serif;font-weight:normal;font-size:1.2em;}
summary {font-weight:bold;margin-bottom:1em;}
dt {font-weight:bold;}
figcaption {text-align:center;}
body.draft, body.wd, body.ed {background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="400px" width="400px"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" transform="rotate(-45, 200, 200)" stroke-width="0" stroke="rgb(0,0,0)" fill="rgb(0,0,0)" font-size="80" font-weight="bold" font-family="Arial, sans-serif" opacity="0.05">DRAFT</text></svg>') 0 0 repeat;}
</style>
</head>
<body>
<div class="sp_container_principal container pt-4">
<!--
<table style="width:100%">
<tr>
<td width="20%"><img src="https://www.europarl.europa.eu/portal/img/ep-logo.svg"></td>
<td width="80%">
<h1 class="mb-4 sp_section_title_header">DCAT-EP Application Profile</h1>
</td>
</tr>
</table>
-->
<header>
<img class="logo" src="https://www.europarl.europa.eu/portal/img/ep-logo.svg"/>
<h1 class="mb-4 sp_section_title_header">DCAT-EP Application Profile</h1>
<h2 class="subtitle">Version 1.0</h2>
</header>
<!--
<div><b>Creation date: </b>2022-05-19<br><b>Issue date: </b>2022-10-10<br><b>Last updated: </b>2023-11-02<br><b>Copyright date: </b>2023<br><b>Version: </b>Editor's Draft<br><b>License: </b><a href="https://www.europarl.europa.eu/legal-notice/" target="_blank">https://www.europarl.europa.eu/legal-notice/</a><br><b>Creator: </b><a href="http://publications.europa.eu/resource/authority/corporate-body/EP" target="_blank">http://publications.europa.eu/resource/authority/corporate-body/EP</a><br><b>Publisher: </b><a href="http://publications.europa.eu/resource/authority/corporate-body/EP" target="_blank">http://publications.europa.eu/resource/authority/corporate-body/EP</a><br><b>Rightsholder: </b><a href="http://publications.europa.eu/resource/authority/corporate-body/EURUN" target="_blank">http://publications.europa.eu/resource/authority/corporate-body/EURUN</a><br><b>Feedback: </b><a href="https://github.com/europarl/dcat-ep" target="_blank">https://github.com/europarl/dcat-ep</a><br><br></div>
-->
<details>
<summary>More details about this document</summary>
<dl>
<dt>This version:<dt><dd><a href="https://europarl.github.io/dcat-ep/1.0/">https://europarl.github.io/dcat-ep/1.0/</a></dd>
<dt>Latest published version:</dt><dd><a href="https://data.europarl.europa.eu/def/dcat-ep#">https://data.europarl.europa.eu/def/dcat-ep#</a></dd>
<dt>Latest editor's draft:</dt><dd><a href="https://europarl.github.io/dcat-ep/ed/">https://europarl.github.io/dcat-ep/ed/</a></dd>
<dt>Creation date:</dt><dd>2022-05-19</dd>
<dt>Issue date:</dt><dd>2022-10-10</dd>
<dt>Last updated:</dt><dd>2023-11-02</dd>
<dt>Status:</dt><dd>Stable</dd>
<dt>Creator:</dt><dd><a href="https://www.europarl.europa.eu/" target="_blank">European Parliament</a></dd>
<dt>Publisher:</dt><dd><a href="https://www.europarl.europa.eu/" target="_blank">European Parliament</a></dd>
<dt>Feedback:</dt><dd><a href="https://github.com/europarl/dcat-ep/" target="_blank">https://github.com/europarl/dcat-ep/</a></dd>
</dl>
</details>
<p>Available serialisations: <a href="./dcat-ep.shacl.ttl">SHACL (Turtle)</a></p>
<p class="copyright">Copyright © 2023 <a href="https://europa.eu/" target="_blank">European Union</a>. This document is distributed under the terms and conditions described in the <a href="https://www.europarl.europa.eu/legal-notice/" target="_blank">European Parliament Legal Notice</a>.</p>
<hr/>
<div class="row mt-3">
<div class="col">
<h2 id="abstract" class="sp_section_subtitle">Abstract</h2><p>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.</p>
</div>
<!--
<div class="col">
<h2 id="usage-note" class="sp_section_subtitle">Usage note</h2>
<p>This version of DCAT-EP is a draft specification and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.</p>
</div>
-->
</div>
<div class="sp_section_title_toc toc">
<h2 id="Index">Table of Contents</h2>
<ul role="list" class="sp_list_toc ul_type_none t-x-mode">
<li><a href="#prefixes">Namespaces</a></li>
<li><a href="#diagrams">Diagrams</a></li>
<li><a href="#description">Description</a></li>
<li><a href="#documentation">Model documentation</a><ul role="list" class="ul_type_none sp_list_toc_l2">
<li><a href="#dcat:Catalog">Catalog</a></li>
<li><a href="#dcat:CatalogRecord">Catalog Record</a></li>
<li><a href="#dcat:DataService">Data Service</a></li>
<li><a href="#dcat:DatasetSeries">Dataset Series</a></li>
<li><a href="#dcat:Dataset">Dataset</a></li>
<li><a href="#dcat:Distribution">Distribution</a></li>
<li><a href="#dcterms:PeriodOfTime">Period of time</a></li>
<li><a href="#spdx:Checksum">Checksum</a></li>
<li><a href="#vcard:Kind">Kind</a></li>
<li><a href="#skos:Concept">Concept</a></li>
<li><a href="#skos:ConceptScheme">Concept Scheme</a></li>
<li><a href="#foaf:Document">Document</a></li>
<li><a href="#dcterms:Standard">Standard</a></li>
<li><a href="#foaf:Agent">Agent</a></li>
<li><a href="#dcterms:LicenseDocument">Licence Document</a></li>
<li><a href="#dcterms:Location">Location</a></li>
<li><a href="#dcterms:LinguisticSystem">Linguistic System</a></li>
<li><a href="#dcterms:RightsStatement">Rights Statement</a></li>
<li><a href="#dcterms:MediaType">Media Type</a></li>
<li><a href="#dcterms:Frequency">Frequency</a></li>
<li><a href="#dcterms:MediaTypeOrExtent">File Type</a></li>
<li><a href="#euvoc:DatasetTheme">Theme</a></li>
<li><a href="#euvoc:DatasetStatus">Dataset Status</a></li>
<li><a href="#spdx:ChecksumAlgorithm">Checksum Algorithm</a></li>
</ul>
</li>
<li><a href="#releaseNotes">Release notes</a></li>
</ul>
</div>
<div class="row mt-3">
<div class="col">
<section id="prefixes">
<h2 class="sp_section_subtitle">Namespaces</h2>
<table class="sp_table_prefixes table table-striped table-responsive">
<thead>
<tr>
<th>Prefix</th>
<th>Namespace</th>
</tr>
</thead>
<tbody>
<tr>
<td>adms</td>
<td><a href="http://www.w3.org/ns/adms#" target="_blank">http://www.w3.org/ns/adms#</a></td>
</tr>
<tr>
<td>dcat</td>
<td><a href="http://www.w3.org/ns/dcat#" target="_blank">http://www.w3.org/ns/dcat#</a></td>
</tr>
<tr>
<td>dcterms</td>
<td><a href="http://purl.org/dc/terms/" target="_blank">http://purl.org/dc/terms/</a></td>
</tr>
<tr>
<td>foaf</td>
<td><a href="http://xmlns.com/foaf/0.1/" target="_blank">http://xmlns.com/foaf/0.1/</a></td>
</tr>
<tr>
<td>op-aut</td>
<td><a href="http://publications.europa.eu/resource/authority/" target="_blank">http://publications.europa.eu/resource/authority/</a></td>
</tr>
<tr>
<td>rdf</td>
<td><a href="http://www.w3.org/1999/02/22-rdf-syntax-ns#" target="_blank">http://www.w3.org/1999/02/22-rdf-syntax-ns#</a></td>
</tr>
<tr>
<td>skos</td>
<td><a href="http://www.w3.org/2004/02/skos/core#" target="_blank">http://www.w3.org/2004/02/skos/core#</a></td>
</tr>
<tr>
<td>spdx</td>
<td><a href="http://spdx.org/rdf/terms#" target="_blank">http://spdx.org/rdf/terms#</a></td>
</tr>
<tr>
<td>vcard</td>
<td><a href="http://www.w3.org/2006/vcard/ns#" target="_blank">http://www.w3.org/2006/vcard/ns#</a></td>
</tr>
<tr>
<td>xsd</td>
<td><a href="http://www.w3.org/2001/XMLSchema#" target="_blank">http://www.w3.org/2001/XMLSchema#</a></td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="sp_section_row mt-3">
<div class="sp_section_col">
<section>
<h2 id="diagrams" class="sp_section_subtitle">Diagrams</h2>
<figure id="fig-diagram">
<a title="Click to open the diagram at full size" href="./dcat-ep.svg" target="_blank"><img alt="Diagram" src="./dcat-ep.svg" width="100%"/></a>
<figcaption>DCAT-EP diagram</figcaption>
</figure>
</div>
</div>
<div>
<h2 id="description" class="sp_section_subtitle">Description</h2><p>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.</p>
</div>
<h2 id="documentation" class="sp_section_subtitle">Model documentation</h2>
<div class="row mt-3">
<div class="col">
<section id="dcat:Catalog">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Catalog</h3><code class="sp_section_uri">http://www.w3.org/ns/dcat#Catalog</code></div>
<p><em>A curated collection of metadata about resources.</em></p>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>https://data.europarl.europa.eu/catalogue/.*$</code></li>
</ul>
<table class="sp_table_propertyshapes table-striped table-responsive">
<thead>
<tr>
<th>Property name</th>
<th>URI</th>
<th>Expected value</th>
<th>Card.</th>
<th class="sp_description_column">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>access rights</td>
<td><code><a href="http://purl.org/dc/terms/accessRights">dcterms:accessRights</a></code></td>
<td><code><a href="#dcterms:RightsStatement">Rights Statement</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_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</td>
</tr>
<tr>
<td>application profile</td>
<td><code><a href="http://purl.org/dc/terms/conformsTo">dcterms:conformsTo</a></code></td>
<td><code><a href="#dcterms:Standard">Standard</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>creator</td>
<td><code><a href="http://purl.org/dc/terms/creator">dcterms:creator</a></code></td>
<td><code><a href="#foaf:Agent">Agent</a></code><br></td>
<td>
<div style="width:30px">1..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">The entity responsible for producing the Catalogue.</td>
</tr>
<tr>
<td>dataset</td>
<td><code><a href="http://www.w3.org/ns/dcat#dataset">dcat:dataset</a></code></td>
<td><code><a href="#dcat:Dataset">dcat:Dataset</a></code><code> or </code><code><a href="#dcat:DatasetSeries">dcat:DatasetSeries</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property links the Catalogue with a Dataset that is part of the Catalogue.</td>
</tr>
<tr>
<td>date copyrighted</td>
<td><code><a href="http://purl.org/dc/terms/dateCopyrighted">dcterms:dateCopyrighted</a></code></td>
<td><code>xsd:gYear</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Date of copyright of the Catalogue.</td>
</tr>
<tr>
<td>description</td>
<td><code><a href="http://purl.org/dc/terms/description">dcterms:description</a></code></td>
<td><code>rdf:langString</code><br></td>
<td>
<div style="width:30px">1..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains a free-text account of the Catalogue.This property can be repeated
for parallel language versions of the name.</td>
</tr>
<tr>
<td>frequency</td>
<td><code><a href="http://purl.org/dc/terms/accrualPeriodicity">dcterms:accrualPeriodicity</a></code></td>
<td><code><a href="#dcterms:Frequency">Frequency</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>homepage</td>
<td><code><a href="http://xmlns.com/foaf/0.1/homepage">foaf:homepage</a></code></td>
<td><code><a href="#foaf:Document">Document</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>identifier</td>
<td><code><a href="http://purl.org/dc/terms/identifier">dcterms:identifier</a></code></td>
<td><code>xsd:anyUri</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>language</td>
<td><code><a href="http://purl.org/dc/terms/language">dcterms:language</a></code></td>
<td><code><a href="#dcterms:LinguisticSystem">Linguistic System</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>licence</td>
<td><code><a href="http://purl.org/dc/terms/license">dcterms:license</a></code></td>
<td><code><a href="#dcterms:LicenseDocument">Licence Document</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property refers to the license under which the Catalogue metadata can be used
or reused.</td>
</tr>
<tr>
<td>publisher</td>
<td><code><a href="http://purl.org/dc/terms/publisher">dcterms:publisher</a></code></td>
<td><code><a href="#foaf:Agent">Agent</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property refers to an entity (organisation) responsible for making the Catalogue
available.</td>
</tr>
<tr>
<td>record</td>
<td><code><a href="http://www.w3.org/ns/dcat#record">dcat:record</a></code></td>
<td><code><a href="#dcat:CatalogRecord">Catalog Record</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property refers to a Catalogue Record that is part of the Catalogue.</td>
</tr>
<tr>
<td>release date</td>
<td><code><a href="http://purl.org/dc/terms/issued">dcterms:issued</a></code></td>
<td><code>xsd:dateTime</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains the date of formal issuance (e.g., publication) of the Catalogue.</td>
</tr>
<tr>
<td>rights holder</td>
<td><code><a href="http://purl.org/dc/terms/rightsHolder">dcterms:rightsHolder</a></code></td>
<td><code><a href="#foaf:Agent">Agent</a></code><br></td>
<td>
<div style="width:30px">1..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">A person or organisation owning or managing rights over the Catalogue.</td>
</tr>
<tr>
<td>service</td>
<td><code><a href="http://www.w3.org/ns/dcat#service">dcat:service</a></code></td>
<td><code><a href="#dcat:DataService">Data Service</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property refers to a site or end-point that is listed in the Catalogue.</td>
</tr>
<tr>
<td>spatial coverage</td>
<td><code><a href="http://purl.org/dc/terms/spatial">dcterms:spatial</a></code></td>
<td><code><a href="#dcterms:Location">Location</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property refers to a geographic region that is covered by the Catalogue.</td>
</tr>
<tr>
<td>themes</td>
<td><code><a href="http://www.w3.org/ns/dcat#themeTaxonomy">dcat:themeTaxonomy</a></code></td>
<td><code><a href="#skos:ConceptScheme">Concept Scheme</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>title</td>
<td><code><a href="http://purl.org/dc/terms/title">dcterms:title</a></code></td>
<td><code>rdf:langString</code><br></td>
<td>
<div style="width:30px">1..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains a name given to the Catalogue. This property can be repeated
for parallel language versions of the name.</td>
</tr>
<tr>
<td>type</td>
<td><code><a href="http://www.w3.org/1999/02/22-rdf-syntax-ns#type">rdf:type</a></code></td>
<td><code>IRI</code><br></td>
<td>
<div style="width:30px">1..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Property that is used to state that a resource is an instance of a class.</td>
</tr>
<tr>
<td>update / modification date</td>
<td><code><a href="http://purl.org/dc/terms/modified">dcterms:modified</a></code></td>
<td><code>xsd:dateTime</code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains the most recent date on which the Catalogue was modified.</td>
</tr>
<tr>
<td>version</td>
<td><code><a href="http://www.w3.org/ns/dcat#version">dcat:version</a></code></td>
<td><code>xsd:string</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property refers to the version number of Catalogue.</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="dcat:CatalogRecord">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Catalog Record</h3><code class="sp_section_uri">http://www.w3.org/ns/dcat#CatalogRecord</code></div>
<p><em>A record in a catalog, describing the registration of a single dcat:Resource.</em></p>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>https://data.europarl.europa.eu/record/.*$</code></li>
</ul>
<table class="sp_table_propertyshapes table-striped table-responsive">
<thead>
<tr>
<th>Property name</th>
<th>URI</th>
<th>Expected value</th>
<th>Card.</th>
<th class="sp_description_column">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>application profile</td>
<td><code><a href="http://purl.org/dc/terms/conformsTo">dcterms:conformsTo</a></code></td>
<td><code><a href="#dcterms:Standard">Standard</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>language</td>
<td><code><a href="http://purl.org/dc/terms/language">dcterms:language</a></code></td>
<td><code><a href="#dcterms:LinguisticSystem">Linguistic System</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_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</td>
</tr>
<tr>
<td>listing date</td>
<td><code><a href="http://purl.org/dc/terms/issued">dcterms:issued</a></code></td>
<td><code>xsd:dateTime</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains the date on which the Catalogue Record was published.</td>
</tr>
<tr>
<td>primary topic</td>
<td><code><a href="http://xmlns.com/foaf/0.1/primaryTopic">foaf:primaryTopic</a></code></td>
<td><code><a href="#dcat:Catalog">dcat:Catalog</a></code><code> or </code><code><a href="#dcat:Dataset">dcat:Dataset</a></code><code> or </code><code><a href="#dcat:DatasetSeries">dcat:DatasetSeries</a></code><code> or </code><code><a href="#dcat:DataService">dcat:DataService</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property links the Catalogue Record to the resource (Dataset, Dataset Series,
etc.) described in the record.</td>
</tr>
<tr>
<td>type</td>
<td><code><a href="http://www.w3.org/1999/02/22-rdf-syntax-ns#type">rdf:type</a></code></td>
<td><code>IRI</code><br></td>
<td>
<div style="width:30px">1..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Property that is used to state that a resource is an instance of a class.</td>
</tr>
<tr>
<td>update / modification date</td>
<td><code><a href="http://purl.org/dc/terms/modified">dcterms:modified</a></code></td>
<td><code>xsd:dateTime</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains the most recent date on which the Catalogue Record was changed
or modified.</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="dcat:DataService">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Data Service</h3><code class="sp_section_uri">http://www.w3.org/ns/dcat#DataService</code></div>
<p><em>A collection of operations that provides access to one or more datasets or data processing functions.</em></p>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>https://data.europarl.europa.eu/service/.*$</code></li>
</ul>
<table class="sp_table_propertyshapes table-striped table-responsive">
<thead>
<tr>
<th>Property name</th>
<th>URI</th>
<th>Expected value</th>
<th>Card.</th>
<th class="sp_description_column">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>access rights</td>
<td><code><a href="http://purl.org/dc/terms/accessRights">dcterms:accessRights</a></code></td>
<td><code><a href="#dcterms:RightsStatement">Rights Statement</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_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</td>
</tr>
<tr>
<td>conforms to</td>
<td><code><a href="http://purl.org/dc/terms/conformsTo">dcterms:conformsTo</a></code></td>
<td><code><a href="#dcterms:Standard">Standard</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>contact point</td>
<td><code><a href="http://www.w3.org/ns/dcat#contactPoint">dcat:contactPoint</a></code></td>
<td><code><a href="#vcard:Kind">Kind</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>description</td>
<td><code><a href="http://purl.org/dc/terms/description">dcterms:description</a></code></td>
<td><code>rdf:langString</code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains a free-text account of the Data Service. This property can
be repeated for parallel language versions of the description.</td>
</tr>
<tr>
<td>endpoint URL</td>
<td><code><a href="http://www.w3.org/ns/dcat#endpointURL">dcat:endpointURL</a></code></td>
<td><code>rdfs:Resource</code><br></td>
<td>
<div style="width:30px">1..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">The root location or primary endpoint of the service (an IRI).</td>
</tr>
<tr>
<td>endpoint description</td>
<td><code><a href="http://www.w3.org/ns/dcat#endpointDescription">dcat:endpointDescription</a></code></td>
<td><code>rdfs:Resource</code><br></td>
<td>
<div style="width:30px">1..*</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>format</td>
<td><code><a href="http://purl.org/dc/terms/format">dcterms:format</a></code></td>
<td><code><a href="#dcterms:MediaTypeOrExtent">File Type</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property refers to the file formats availabe for the API response.</td>
</tr>
<tr>
<td>identifier</td>
<td><code><a href="http://purl.org/dc/terms/identifier">dcterms:identifier</a></code></td>
<td><code>xsd:anyUri</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>in catalog</td>
<td><code><a href="http://www.w3.org/ns/dcat#inCatalog">dcat:inCatalog</a></code></td>
<td><code><a href="#dcat:Catalog">Catalog</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property links the Data Service to the Catalogue listing it.</td>
</tr>
<tr>
<td>licence</td>
<td><code><a href="http://purl.org/dc/terms/license">dcterms:license</a></code></td>
<td><code><a href="#dcterms:LicenseDocument">Licence Document</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains the licence under which the Data Service is made available.</td>
</tr>
<tr>
<td>publisher</td>
<td><code><a href="http://purl.org/dc/terms/publisher">dcterms:publisher</a></code></td>
<td><code><a href="#foaf:Agent">Agent</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property refers to an entity (organisation) responsible for making the Data Service
available.</td>
</tr>
<tr>
<td>release date</td>
<td><code><a href="http://purl.org/dc/terms/issued">dcterms:issued</a></code></td>
<td><code>xsd:dateTime</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains the date of formal issuance (e.g., publication) of the Data
Service.</td>
</tr>
<tr>
<td>serves dataset</td>
<td><code><a href="http://www.w3.org/ns/dcat#servesDataset">dcat:servesDataset</a></code></td>
<td><code><a href="#dcat:Dataset">Dataset</a></code><br></td>
<td>
<div style="width:30px">1..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates to which Dataset the Data Service is related to.</td>
</tr>
<tr>
<td>subject</td>
<td><code><a href="http://purl.org/dc/terms/subject">dcterms:subject</a></code></td>
<td><code><a href="#skos:Concept">Concept</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains a keyword or tag describing the Data Service. Values are concept
of Eurovoc vocabulary: http://eurovoc.europa.eu/</td>
</tr>
<tr>
<td>theme</td>
<td><code><a href="http://www.w3.org/ns/dcat#theme">dcat:theme</a></code></td>
<td><code><a href="#skos:Concept">skos:Concept</a></code><code> or </code><code><a href="#euvoc:DatasetTheme">euvoc:DatasetTheme</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>title</td>
<td><code><a href="http://purl.org/dc/terms/title">dcterms:title</a></code></td>
<td><code>rdf:langString</code><br></td>
<td>
<div style="width:30px">1..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains a name given to the Data Service. This property can be repeated
for parallel language versions of the name.</td>
</tr>
<tr>
<td>type</td>
<td><code><a href="http://www.w3.org/1999/02/22-rdf-syntax-ns#type">rdf:type</a></code></td>
<td><code>IRI</code><br></td>
<td>
<div style="width:30px">1..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Property that is used to state that a resource is an instance of a class.</td>
</tr>
<tr>
<td>update / modification date</td>
<td><code><a href="http://purl.org/dc/terms/modified">dcterms:modified</a></code></td>
<td><code>xsd:dateTime</code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property contains the most recent date on which the Data Service was modified.</td>
</tr>
<tr>
<td>version info</td>
<td><code><a href="http://www.w3.org/ns/dcat#version">dcat:version</a></code></td>
<td><code>xsd:string</code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property refers to the version number of a Data Service.</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="dcat:DatasetSeries">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Dataset Series</h3><code class="sp_section_uri">http://www.w3.org/ns/dcat#DatasetSeries</code></div>
<p><em>A collection of datasets that are published separately, but share some characteristics that group them.</em></p>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>https://data.europarl.europa.eu/dataset/.*$</code></li>
</ul>
<table class="sp_table_propertyshapes table-striped table-responsive">
<thead>
<tr>
<th>Property name</th>
<th>URI</th>
<th>Expected value</th>
<th>Card.</th>
<th class="sp_description_column">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>access rights</td>
<td><code><a href="http://purl.org/dc/terms/accessRights">dcterms:accessRights</a></code></td>
<td><code><a href="#dcterms:RightsStatement">Rights Statement</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_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</td>
</tr>
<tr>
<td>conforms to</td>
<td><code><a href="http://purl.org/dc/terms/conformsTo">dcterms:conformsTo</a></code></td>
<td><code><a href="#dcterms:Standard">Standard</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>