-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
2805 lines (2730 loc) · 167 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>ELI-EP Application Profile</title>
<meta name="apple-mobile-web-app-title" content="ELI-EP Application Profile">
<meta name="twitter:title" content="ELI-EP Application Profile">
<meta property="og:title" content="ELI-EP Application Profile">
</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">ELI-EP Application Profile</h1>
</td>
</tr>
</table>
<div><b>Creation date: </b>2022-11-24<br><b>Last updated: </b>2023-12-05 00:00:00<br><b>Copyright date: </b>2022<br><b>Version: </b>1.5<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/dataset/corporate-body/EP" target="_blank">http://publications.europa.eu/resource/dataset/corporate-body/EP</a><br><b>Publisher: </b><a href="http://publications.europa.eu/resource/dataset/corporate-body/EP" target="_blank">http://publications.europa.eu/resource/dataset/corporate-body/EP</a><br><b id="formats">Download serialization: </b><div><span class="sp_serialization_badge"><a href="https://europarl.github.io/eli-ep/eli-ep.shacl.ttl" target="_blank"><img src="https://img.shields.io/badge/Format-TTL-blue.png" alt="TTL"></a></span></div><br></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="#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="#eli:Work">Work</a></li>
<li><a href="#eli:ComplexWork">Complex work</a></li>
<li><a href="#eli:Expression">Expression</a></li>
<li><a href="#eli:Manifestation">Manifestation</a></li>
<li><a href="#eli-dl:Activity">Activity</a></li>
<li><a href="#eli-dl:ForeseenActivity">ForeseenActivity</a></li>
<li><a href="#eli-dl:Participation">Participation</a></li>
<li><a href="#epvoc:Room">Room</a></li>
<li><a href="#eli-dl:ParliamentaryTerm">Parliamentary term</a></li>
<li><a href="#eli:LegalResource">Legal Resource</a></li>
<li><a href="#eli-dl:Process">Process</a></li>
<li><a href="#eli:WorkSubdivision">Work Subdivision</a></li>
<li><a href="#eli-dl:Decision">Decision</a></li>
<li><a href="#eli:WorkType">Work type</a></li>
<li><a href="#eli-dl:ParticipationRole">Participation Role</a></li>
<li><a href="#dcterms:LinguisticSystem">Linguistic System</a></li>
<li><a href="#dcterms:MediaTypeOrExtent">Media Type or Extent</a></li>
<li><a href="#dcterms:MediaType">Media Type</a></li>
<li><a href="#euvoc:Country">Country</a></li>
<li><a href="#dcterms:Location">Place</a></li>
<li><a href="#euvoc:FileStatus">Status</a></li>
<li><a href="#org:Organization">Corporate Body</a></li>
<li><a href="#org:Site">Site</a></li>
<li><a href="#skos:Concept">Concept</a></li>
<li><a href="#eli-dl:ActivityType">Activity Type</a></li>
<li><a href="#eli:SubdivisionType">Subdivision Type</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>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>eli</td>
<td><a href="http://data.europa.eu/eli/ontology#" target="_blank">http://data.europa.eu/eli/ontology#</a></td>
</tr>
<tr>
<td>eli-dl</td>
<td><a href="http://data.europa.eu/eli/eli-draft-legislation-ontology#" target="_blank">http://data.europa.eu/eli/eli-draft-legislation-ontology#</a></td>
</tr>
<tr>
<td>epvoc</td>
<td><a href="https://data.europarl.europa.eu/def/epvoc#" target="_blank">https://data.europarl.europa.eu/def/epvoc#</a></td>
</tr>
<tr>
<td>euvoc</td>
<td><a href="http://publications.europa.eu/ontology/euvoc#" target="_blank">http://publications.europa.eu/ontology/euvoc#</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>geosparql</td>
<td><a href="http://www.opengis.net/ont/geosparql#" target="_blank">http://www.opengis.net/ont/geosparql#</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>org</td>
<td><a href="http://www.w3.org/ns/org#" target="_blank">http://www.w3.org/ns/org#</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>rdfs</td>
<td><a href="http://www.w3.org/2000/01/rdf-schema#" target="_blank">http://www.w3.org/2000/01/rdf-schema#</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>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 id="diagram">
<h2 id="diagram" class="sp_section_subtitle"><a class="anchorjs-link " aria-label="Anchor" data-anchorjs-icon="#" href="#diagram" style="position: absolute; margin-left: -1.25em; padding-right: 0.25em; padding-left: 0.25em;"></a>Diagram</h2>
<figure id="fig-diagram">
<a title="Click to open the diagram at full size" href="./eli-ep.svg" target="_blank"><img alt="Diagram" src="./eli-ep.svg" width="120%"/></a>
<figcaption>ELI-EP diagram</figcaption>
</figure>
</div>
</div><br><div>
<h2 id="description" class="sp_section_subtitle">Description</h2><p>ELI-EP is an application profile based on the ELI / ELI-DL Ontology, specifically designed to describe the documents and the activities 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="eli:Work">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Work</h3><code class="sp_section_uri">http://data.europa.eu/eli/ontology#Work</code></div>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>^https://data.europarl.europa.eu/eli/dl/doc/[A-Za-z0-9\-_]+$</code></li>
<li>Example: <code>https://data.europarl.europa.eu/eli/dl/doc/A-9-2019-0001</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>adopts</td>
<td><code><a href="http://data.europa.eu/eli/eli-draft-legislation-ontology#adopts">eli-dl:adopts</a></code></td>
<td><code><a href="#eli:Work">Work</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates that the work represents the adopted work of one or several related works</td>
</tr>
<tr>
<td>amends</td>
<td><code><a href="http://data.europa.eu/eli/eli-draft-legislation-ontology#foresees_change_of">eli-dl:foresees_change_of</a></code></td>
<td><code><a href="#eli:Work">Work</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates a LegalResource already published that the future law, if adopted, will
change. Readers should refer to the definition of the eli:changes property.
Note the legal impacts can change in successive versions of the same document.</td>
</tr>
<tr>
<td>answers</td>
<td><code><a href="http://data.europa.eu/eli/eli-draft-legislation-ontology#answers_to">eli-dl:answers_to</a></code></td>
<td><code><a href="#eli:Work">Work</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates that this work is an answer the other work.</td>
</tr>
<tr>
<td>based on</td>
<td><code><a href="http://data.europa.eu/eli/ontology#based_on">eli:based_on</a></code></td>
<td><code><a href="#eli:LegalResource">Legal Resource</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates that this work is empowered by another one, typically rules, constitution,
a treaty or an enabling act.</td>
</tr>
<tr>
<td>consolidated by</td>
<td><code><a href="http://data.europa.eu/eli/ontology#consolidated_by">eli:consolidated_by</a></code></td>
<td><code><a href="#eli:Work">Work</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates that this legal resource or expression is taken into account in a consolidated
text</td>
</tr>
<tr>
<td>contributor</td>
<td><code><a href="http://purl.org/dc/terms/contributor">dcterms:contributor</a></code></td>
<td><code>foaf:Agent</code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">An entity responsible for making contributions to the resource.</td>
</tr>
<tr>
<td>corrects</td>
<td><code><a href="http://data.europa.eu/eli/ontology#corrects">eli:corrects</a></code></td>
<td><code><a href="#eli:Work">Work</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates that this work / expression corrects the other work / expression. Corrects
is used for minor corrections made to a work / expression. The property used to relate
works describe the fact that a work expresses some corrections to be made to the an
other work. The property used to relate expression indicate that a specific linguistic
expression correct a specific expression.</td>
</tr>
<tr>
<td>creator</td>
<td><code><a href="http://purl.org/dc/terms/creator">dcterms:creator</a></code></td>
<td><code>foaf:Agent</code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">An agent responsible for making the resource.</td>
</tr>
<tr>
<td>date document</td>
<td><code><a href="http://data.europa.eu/eli/ontology#date_document">eli:date_document</a></code></td>
<td><code>xsd:date</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Date of adoption or signature (of the form yyyy-mm-dd) of the document</td>
</tr>
<tr>
<td>display label</td>
<td><code><a href="http://www.w3.org/2000/01/rdf-schema#label">rdfs:label</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">Label to by displayed in user interfaces</td>
</tr>
<tr>
<td>ep number</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#epNumber">epvoc:epNumber</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">European Parliament number</td>
</tr>
<tr>
<td>ep number version</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#epNumberVersion">epvoc:epNumberVersion</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">European Parliament number version</td>
</tr>
<tr>
<td>expression content</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#expressionContent">epvoc:expressionContent</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 is a shortcut of the more fully developed path from eli:Work to eli:Expression</td>
</tr>
<tr>
<td>identifier</td>
<td><code><a href="http://purl.org/dc/terms/identifier">dcterms:identifier</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">An unambiguous reference to the resource.</td>
</tr>
<tr>
<td>identifier year</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#identifierYear">epvoc:identifierYear</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">A year linked to the reference of the resource.</td>
</tr>
<tr>
<td>is about</td>
<td><code><a href="http://data.europa.eu/eli/ontology#is_about">eli:is_about</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">A subject for this legal resource. The use of Eurovoc (http://eurovoc.europa.eu) is
encouraged to select values for this property. Member states are encouraged to align
local values to Eurovoc.</td>
</tr>
<tr>
<td>is about directory code</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#isAboutDirectoryCode">epvoc:isAboutDirectoryCode</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 is a subproperty of eli:is_about and identifies the directory code of
a Work. It points to concepts of the dir-eu-legal-act OP vocabulary.</td>
</tr>
<tr>
<td>is about subject matter</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#isAboutSubjectMatter">epvoc:isAboutSubjectMatter</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 is a subproperty of eli:is_about and identifies the subject matter of
a Work. It points to concepts of the subject-matter OP vocabulary.</td>
</tr>
<tr>
<td>is annex of</td>
<td><code><a href="http://data.europa.eu/eli/ontology#is_annex_of">eli:is_annex_of</a></code></td>
<td><code><a href="#eli:Work">Work</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates that the Work is Annex of another Work</td>
</tr>
<tr>
<td>is derivative of</td>
<td><code><a href="http://data.europa.eu/eli/ontology#is_derivative_of">eli:is_derivative_of</a></code></td>
<td><code><a href="#eli:Work">Work</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This work is derived from the other work. Example: a motion derived from an oral question.</td>
</tr>
<tr>
<td>is realized by</td>
<td><code><a href="http://data.europa.eu/eli/ontology#is_realized_by">eli:is_realized_by</a></code></td>
<td><code><a href="#eli:Expression">Expression</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Relates a work to an expression that realizes it. Inverse of "realizes".</td>
</tr>
<tr>
<td>notation in EP Public Register</td>
<td><code><a href="http://www.w3.org/2004/02/skos/core#notation">skos:notation</a></code></td>
<td><code>epvoc:publicRegister</code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">A notation is a string of characters such as "T58.5" or "303.4833" used to uniquely
identify a concept within the scope of a given concept scheme.</td>
</tr>
<tr>
<td>numbering</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#numbering">epvoc:numbering</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 a number sequence that indicates order or is used for identification.</td>
</tr>
<tr>
<td>numbering range begin</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#itemNumberBegin">epvoc:itemNumberBegin</a></code></td>
<td><code>xsd:integer</code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property identifies the starting number in a list of items.</td>
</tr>
<tr>
<td>numbering range end</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#itemNumberEnd">epvoc:itemNumberEnd</a></code></td>
<td><code>xsd:integer</code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property identifies the ending number in a list of items.</td>
</tr>
<tr>
<td>original language</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#originalLanguage">epvoc:originalLanguage</a></code></td>
<td><code><a href="#dcterms:LinguisticSystem">Linguistic System</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Original language of a work</td>
</tr>
<tr>
<td>parliamentary term</td>
<td><code><a href="http://data.europa.eu/eli/eli-draft-legislation-ontology#parliamentary_term">eli-dl:parliamentary_term</a></code></td>
<td><code><a href="#eli-dl:ParliamentaryTerm">Parliamentary term</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">The parliamentary term in which the activity took place</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="#org:Organization">Corporate Body</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">The property refers to the institution responsible for making the document available.
The values are concepts of op-aut:corporate-body.</td>
</tr>
<tr>
<td>stakeholder participant</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#workHadParticipation">epvoc:workHadParticipation</a></code></td>
<td><code><a href="#eli-dl:Participation">Participation</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates the participation of a stakeholder to an activity involving the work. The
role of the agent in this participation is described in the participation resource.</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">use ISO639-1 of controlled vocabulary</td>
</tr>
<tr>
<td>version status</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#versiontype">epvoc:versiontype</a></code></td>
<td><code><a href="#euvoc:FileStatus">Status</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates the version type of a Work part of a Complex Work, like Agenda or Minutes.</td>
</tr>
<tr>
<td>work type</td>
<td><code><a href="http://data.europa.eu/eli/ontology#work_type">eli:work_type</a></code></td>
<td><code>eli:Worktype</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">The type of a work, taken from a controlled vocabulary.</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="eli:ComplexWork">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Complex work</h3><code class="sp_section_uri">http://data.europa.eu/eli/ontology#ComplexWork</code></div>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>^https://data.europarl.europa.eu/eli/dl/doc/[A-Za-z0-9\-_]+$</code></li>
<li>Example: <code>https://data.europarl.europa.eu/eli/dl/doc/OJ-9-2020-10-21</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>date document</td>
<td><code><a href="http://data.europa.eu/eli/ontology#date_document">eli:date_document</a></code></td>
<td><code>xsd:date</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Date of adoption or signature (of the form yyyy-mm-dd) of the document</td>
</tr>
<tr>
<td>display label</td>
<td><code><a href="http://www.w3.org/2000/01/rdf-schema#label">rdfs:label</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">Label to by displayed in user interfaces</td>
</tr>
<tr>
<td>ep number</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#epNumber">epvoc:epNumber</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">European Parliament number</td>
</tr>
<tr>
<td>has current version</td>
<td><code><a href="http://www.w3.org/ns/dcat#hasCurrentVersion">dcat:hasCurrentVersion</a></code></td>
<td><code><a href="#eli:Work">Work</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property is intended for relating a non-versioned or abstract resource to a single
snapshot that can be used as a permalink to indicate the current version of the content
[PAV].The notion of version used by this property is limited to versions resulting
from revisions occurring to a resource as part of its life-cycle.</td>
</tr>
<tr>
<td>has member</td>
<td><code><a href="http://data.europa.eu/eli/ontology#has_member">eli:has_member</a></code></td>
<td><code><a href="#eli:Work">Work</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates that a Work is part of a Complex Work.</td>
</tr>
<tr>
<td>identifier</td>
<td><code><a href="http://purl.org/dc/terms/identifier">dcterms:identifier</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">An unambiguous reference to the resource.</td>
</tr>
<tr>
<td>identifier year</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#identifierYear">epvoc:identifierYear</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">A year linked to the reference of the resource.</td>
</tr>
<tr>
<td>is annex of</td>
<td><code><a href="http://data.europa.eu/eli/ontology#is_annex_of">eli:is_annex_of</a></code></td>
<td><code><a href="#eli:Work">Work</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates that the Work is Annex of another Work</td>
</tr>
<tr>
<td>is derivative of</td>
<td><code><a href="http://data.europa.eu/eli/ontology#is_derivative_of">eli:is_derivative_of</a></code></td>
<td><code><a href="#eli:Work">Work</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This work is derived from the other work. Example: a motion derived from an oral question.</td>
</tr>
<tr>
<td>notation in EP Public Register</td>
<td><code><a href="http://www.w3.org/2004/02/skos/core#notation">skos:notation</a></code></td>
<td><code>epvoc:publicRegister</code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">A notation is a string of characters such as "T58.5" or "303.4833" used to uniquely
identify a concept within the scope of a given concept scheme.</td>
</tr>
<tr>
<td>numbering</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#numbering">epvoc:numbering</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 a number sequence that indicates order or is used for identification.</td>
</tr>
<tr>
<td>numbering range begin</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#itemNumberBegin">epvoc:itemNumberBegin</a></code></td>
<td><code>xsd:integer</code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property identifies the starting number in a list of items.</td>
</tr>
<tr>
<td>numbering range end</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#itemNumberEnd">epvoc:itemNumberEnd</a></code></td>
<td><code>xsd:integer</code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property identifies the ending number in a list of items.</td>
</tr>
<tr>
<td>parliamentary term</td>
<td><code><a href="http://data.europa.eu/eli/eli-draft-legislation-ontology#parliamentary_term">eli-dl:parliamentary_term</a></code></td>
<td><code><a href="#eli-dl:ParliamentaryTerm">Parliamentary term</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">The parliamentary term in which the activity took place</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="#org:Organization">Corporate Body</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">The property refers to the institution responsible for making the document available.
The values are concepts of op-aut:corporate-body.</td>
</tr>
<tr>
<td>stakeholder participant</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#workHadParticipation">epvoc:workHadParticipation</a></code></td>
<td><code><a href="#eli-dl:Participation">Participation</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates the participation of a stakeholder to an activity involving the work. The
role of the agent in this participation is described in the participation resource.</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">use ISO639-1 of controlled vocabulary</td>
</tr>
<tr>
<td>work type</td>
<td><code><a href="http://data.europa.eu/eli/ontology#work_type">eli:work_type</a></code></td>
<td><code>eli:Worktype</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">The type of a work, taken from a controlled vocabulary.</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="eli:Expression">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Expression</h3><code class="sp_section_uri">http://data.europa.eu/eli/ontology#Expression</code></div>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>^https://data.europarl.europa.eu/eli/dl/doc/[A-Za-z0-9\-_]+/[a-z]{2,3}$</code></li>
<li>Example: <code>https://data.europarl.europa.eu/eli/dl/doc/A-9-2019-0001/en</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>alternative title</td>
<td><code><a href="http://data.europa.eu/eli/ontology#title_alternative">eli:title_alternative</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">An alternative title of the expression (if any).</td>
</tr>
<tr>
<td>is embodied by</td>
<td><code><a href="http://data.europa.eu/eli/ontology#is_embodied_by">eli:is_embodied_by</a></code></td>
<td><code><a href="#eli:Manifestation">Manifestation</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Relates an expression to the manifestation that embodies it. Inverse of "embodies".</td>
</tr>
<tr>
<td>language</td>
<td><code><a href="http://data.europa.eu/eli/ontology#language">eli:language</a></code></td>
<td><code><a href="#dcterms:LinguisticSystem">Linguistic System</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">A language of an expression.</td>
</tr>
<tr>
<td>title</td>
<td><code><a href="http://data.europa.eu/eli/ontology#title">eli: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">use ISO639-1 of controlled vocabulary</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="eli:Manifestation">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Manifestation</h3><code class="sp_section_uri">http://data.europa.eu/eli/ontology#Manifestation</code></div>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>^https://data.europarl.europa.eu/eli/dl/doc/[A-Za-z0-9\-_]+/[a-z]{2,3}/.*$</code></li>
<li>Example: <code>https://data.europarl.europa.eu/eli/dl/doc/A-9-2019-0001/en/pdf</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>byte size</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#byteSize">epvoc:byteSize</a></code></td>
<td><code>xsd:long</code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates the byte size of the file exemplified by the manifestation.</td>
</tr>
<tr>
<td>format</td>
<td><code><a href="http://purl.org/dc/terms/format">dcterms:format</a></code></td>
<td><code>dcterms:MediatypeOrExtent</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">The file format, physical medium, or dimensions of the resource.</td>
</tr>
<tr>
<td>format</td>
<td><code><a href="http://data.europa.eu/eli/ontology#media_type">eli:media_type</a></code></td>
<td><code>dcterms:Mediatype</code><br></td>
<td>