-
Notifications
You must be signed in to change notification settings - Fork 4
/
eli-ep.shacl.ttl
1271 lines (1128 loc) · 48.2 KB
/
eli-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 adms: <http://www.w3.org/ns/adms#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix eli: <http://data.europa.eu/eli/ontology#> .
@prefix eli-dl: <http://data.europa.eu/eli/eli-draft-legislation-ontology#> .
@prefix eli-ep: <https://data.europarl.europa.eu/def/eli-ep#> .
@prefix epvoc: <https://data.europarl.europa.eu/def/epvoc#> .
@prefix euvoc: <http://publications.europa.eu/ontology/euvoc#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix geosparql: <http://www.opengis.net/ont/geosparql#> .
@prefix locn: <http://www.w3.org/ns/locn#> .
@prefix op-aut: <http://publications.europa.eu/resource/authority/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix person: <http://www.w3.org/ns/person#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix shacl-play: <https://shacl-play.sparna.fr/ontology#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix skosthes: <http://purl.org/iso25964/skos-thes#> .
@prefix skosxl: <http://www.w3.org/2008/05/skos-xl#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://data.europarl.europa.eu/def/eli-ep#> a owl:Ontology, skos:ConceptScheme,
adms:Asset;
dcterms:conformsTo <https://www.w3.org/TR/shacl>;
dcterms:created "2021-11-11"^^xsd:date;
dcterms:creator <http://publications.europa.eu/resource/dataset/corporate-body/EP>;
dcterms:dateCopyrighted "2021"^^xsd:gYear;
dcterms:description "ELI-EP is an application profile of the European Legislation Identifier (ELI) ontology (https://op.europa.eu/en/web/eu-vocabularies/eli), designed and used for data of the European Parliament."@en;
dcterms:issued "2022-08-19"^^xsd:date;
dcterms:license <https://www.europarl.europa.eu/legal-notice/>;
dcterms:modified "2022-08-17"^^xsd:date;
dcterms:publisher <http://publications.europa.eu/resource/dataset/corporate-body/EP>;
dcterms:rigthsHolder <http://publications.europa.eu/resource/dataset/corporate-body/EURUN>;
dcterms:title "ELI-EP Application Profile"@en;
dcterms:type <http://publications.europa.eu/resource/authority/dataset-type/APROF>;
vann:usageNote "This version of ELI-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."@en;
rdfs:label "ELI-EP Application Profile"@en;
owl:versionIRI <https://data.europarl.europa.eu/def/eli-ep/0.4.4/>;
owl:versionInfo "0.4.4";
skos:hasTopConcept eli-ep:P10, eli-ep:P102, eli-ep:P103, eli-ep:P106, eli-ep:P107,
eli-ep:P11, eli-ep:P110, eli-ep:P111, eli-ep:P114, eli-ep:P115, eli-ep:P118, eli-ep:P119,
eli-ep:P12, eli-ep:P122, eli-ep:P123, eli-ep:P124, eli-ep:P127, eli-ep:P128, eli-ep:P13,
eli-ep:P131, eli-ep:P132, eli-ep:P14, eli-ep:P15, eli-ep:P16, eli-ep:P17, eli-ep:P18,
eli-ep:P19, eli-ep:P20, eli-ep:P21, eli-ep:P22, eli-ep:P23, eli-ep:P24, eli-ep:P27,
eli-ep:P28, eli-ep:P29, eli-ep:P30, eli-ep:P31, eli-ep:P32, eli-ep:P33, eli-ep:P34,
eli-ep:P35, eli-ep:P36, eli-ep:P37, eli-ep:P38, eli-ep:P41, eli-ep:P42, eli-ep:P45,
eli-ep:P46, eli-ep:P47, eli-ep:P48, eli-ep:P52, eli-ep:P53, eli-ep:P54, eli-ep:P55,
eli-ep:P56, eli-ep:P60, eli-ep:P62, eli-ep:P63, eli-ep:P64, eli-ep:P65, eli-ep:P66,
eli-ep:P67, eli-ep:P68, eli-ep:P69, eli-ep:P70, eli-ep:P71, eli-ep:P72, eli-ep:P73,
eli-ep:P74, eli-ep:P77, eli-ep:P78, eli-ep:P79, eli-ep:P80, eli-ep:P83, eli-ep:P84,
eli-ep:P85, eli-ep:P88, eli-ep:P91, eli-ep:P94, eli-ep:P95, eli-ep:P98, eli-ep:P99;
adms:status <http://publications.europa.eu/resource/dataset/dataset-status/DEVELOP>;
adms:versionNotes """0.4.4 -
2022-08-02
- fixed license url
2022-07-14
- eli:is_exemplified_by changed to ObjectProperty (sh:IRI)
0.4.4 - 2022-07-11
- change of cardinality for eli:title_alternative
- correct pattern for dcterms:MediaType (V54)
- add geosparql:sfWithin
0.4.4 - 2022-06-02
- add property epvoc:identifierYear on eli:Work, eli:ComplexWork
0.4.4
- wrong vocabulary for dcterms:format (op-aut:event => op-aut:file-type)
- \"removed\" dcterms:MediaType from classes, however added sh:pattern (V54) for eli:media_type
- add example and pattern for Eurovoc
- change skos:example DOCUMENT_DEPOSIT replaced by DOCUMENT_SUBMISSION
- add rdfs:label as needed for SHACL Play Documentation Generation
- change colours
- add missing info on skos:Concept
- add eli:title_alternative on eli:Expression
- add epvoc:itemNumberBegin, epvoc:itemNumberEnd
- add property eli:consolidated_by
0.4.3
- add eli-dl:activity_id
- add eli-dl:activity_label
- eli-dl:Participation has persistent URI
- add '/eli/dl/' in URI for eli/eli-dl classes
0.4.2
- added epvoc:numbering
- removed :ComplexWork domain for :epNumberVersion
- added domain :ComplexWork for dcterms:publisher
- deleted skos:inScheme
- new property epvoc:hasRoom and class epvoc:Room (with persistent URI .../room/{identifier}). URI identifier creation rule still needs to be validated.
- removed properties vcard:hasAddress, vcard:hasCountryName, class vcard:Address
- vcard:hasLocality directly linked to eli-dl:Activity
- new property epvoc:hasSite and org:Site (even if no data yet available)
- link between Town and Country will not be created. It will be retrieved from vocabulary during serialization process.
- skos:Concept class added (needed for eli:is_about) for eurovoc vocabulary.
0.4.1
- removed lookup in frbr-ep-v0,3 file (probably error of copy/paste)
- format of file changed to .xslm, and formula dcterms:modified, but still have an issue on it
- owl:versionIRI corrected (was org-ep)
- prefixes clean-up
- classes: added skos:example and sh:pattern of vocabularies;
- new class epvoc:Room (vcard:Address will be deprecated, waiting confirmation)
- added missing org:Organization class and restriction with op-aut: vocabulary
- added missing eli:LegalResource class
- property :is_annex_of domain extended to both :Work and :ComplexWork
- property :has_member domain :Work removed
- property :is_about range was wrong (eli:LegalResource). However, domain eli:Work is not yet compliant with current eli version.
0.4
- Fixed URIs
- Extended range for skos:notation in org:Membership
- Constraints on ranges defined by sh:class, no more sh:node
- dct:temporal deleted for eli-dl:ParliamentaryTerm
- added constraints on shapes linked to vocabulaires
- adms prefix added"""@en .
eli:Work a rdfs:Class, sh:NodeShape;
rdfs:label "Work"@en;
owl:versionInfo "v0.1";
skos:example "https://data.europarl.europa.eu/eli/dl/doc/A-9-2019-0001";
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9171 .
_:node1g8tmdfl9x9171 rdf:first rdf:type;
rdf:rest rdf:nil .
eli:Work sh:nodeKind sh:IRI;
sh:order 1;
sh:pattern "^https://data.europarl.europa.eu/eli/dl/doc/[A-Za-z0-9\\-_]+$";
sh:property eli-ep:P10, eli-ep:P11, eli-ep:P12, eli-ep:P13, eli-ep:P14, eli-ep:P15,
eli-ep:P16, eli-ep:P17, eli-ep:P18, eli-ep:P19, eli-ep:P20, eli-ep:P21, eli-ep:P22,
eli-ep:P23, eli-ep:P24, eli-ep:P27, eli-ep:P28, eli-ep:P29, eli-ep:P30, eli-ep:P31,
eli-ep:P32, eli-ep:P33, eli-ep:P34, eli-ep:P35, eli-ep:P36, eli-ep:P37, eli-ep:P38;
shacl-play:color "Orange" .
eli:ComplexWork a rdfs:Class, sh:NodeShape;
rdfs:label "Complex work"@en;
owl:versionInfo "v0.3";
skos:example "https://data.europarl.europa.eu/eli/dl/doc/OJ-9-2020-10-21";
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9172 .
_:node1g8tmdfl9x9172 rdf:first rdf:type;
rdf:rest rdf:nil .
eli:ComplexWork sh:nodeKind sh:IRI;
sh:order 2;
sh:pattern "^https://data.europarl.europa.eu/eli/dl/doc/[A-Za-z0-9\\-_]+$";
sh:property eli-ep:P10, eli-ep:P11, eli-ep:P12, eli-ep:P13, eli-ep:P14, eli-ep:P15,
eli-ep:P16, eli-ep:P17, eli-ep:P18, eli-ep:P19, eli-ep:P20, eli-ep:P21, eli-ep:P22,
eli-ep:P23, eli-ep:P24, eli-ep:P41, eli-ep:P42;
shacl-play:color "Orange" .
eli:Expression a rdfs:Class, sh:NodeShape;
rdfs:label "Expression"@en;
owl:versionInfo "v0.1";
skos:example "https://data.europarl.europa.eu/eli/dl/doc/A-9-2019-0001/en";
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9173 .
_:node1g8tmdfl9x9173 rdf:first rdf:type;
rdf:rest rdf:nil .
eli:Expression sh:nodeKind sh:IRI;
sh:order 3;
sh:pattern "^https://data.europarl.europa.eu/eli/dl/doc/[A-Za-z0-9\\-_]+/[a-z][a-z]$";
sh:property eli-ep:P45, eli-ep:P46, eli-ep:P47, eli-ep:P48;
shacl-play:color "Blue" .
eli:Manifestation a rdfs:Class, sh:NodeShape;
rdfs:label "Manifestation"@en;
owl:versionInfo "v0.1";
skos:example "https://data.europarl.europa.eu/eli/dl/doc/A-9-2019-0001/en/pdf";
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9174 .
_:node1g8tmdfl9x9174 rdf:first rdf:type;
rdf:rest rdf:nil .
eli:Manifestation sh:nodeKind sh:IRI;
sh:order 4;
sh:pattern "^https://data.europarl.europa.eu/eli/dl/doc/[A-Za-z0-9\\-_]+/[a-z][a-z]/.*$";
sh:property eli-ep:P52, eli-ep:P53, eli-ep:P54, eli-ep:P55, eli-ep:P56;
shacl-play:color "Green" .
eli-dl:Activity a rdfs:Class, sh:NodeShape;
rdfs:label "Activity"@en;
owl:versionInfo "v0.2";
skos:example "https://data.europarl.europa.eu/eli/dl/event/MTG-PL-2020-10-23";
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9175 .
_:node1g8tmdfl9x9175 rdf:first rdf:type;
rdf:rest rdf:nil .
eli-dl:Activity sh:nodeKind sh:IRI;
sh:order 5;
sh:pattern "^https://data.europarl.europa.eu/eli/dl/event/[A-Za-z0-9\\-_]+$";
sh:property eli-ep:P60, eli-ep:P62, eli-ep:P63, eli-ep:P64, eli-ep:P65, eli-ep:P66,
eli-ep:P67, eli-ep:P68, eli-ep:P69, eli-ep:P70, eli-ep:P71, eli-ep:P72, eli-ep:P73,
eli-ep:P74;
shacl-play:color "DarkBlue" .
eli-dl:Participation a rdfs:Class, sh:NodeShape;
rdfs:label "Participation"@en;
owl:versionInfo "v0.4.3";
skos:example "https://data.europarl.europa.eu/eli/dl/participation/A-9-2021-0226_112611";
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9176 .
_:node1g8tmdfl9x9176 rdf:first rdf:type;
rdf:rest rdf:nil .
eli-dl:Participation sh:nodeKind sh:IRI;
sh:order 6;
sh:pattern "^https://data.europarl.europa.eu/eli/dl/participation/[A-Za-z0-9\\-_]+_+[A-Za-z0-9\\-_]+$";
sh:property eli-ep:P77, eli-ep:P78, eli-ep:P79, eli-ep:P80;
shacl-play:color "Purple" .
epvoc:Room a rdfs:Class, sh:NodeShape;
rdfs:label "Room"@en;
owl:versionInfo "v0.4.2";
skos:example "https://data.europarl.europa.eu/room/LOWHEM";
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9177 .
_:node1g8tmdfl9x9177 rdf:first rdf:type;
rdf:rest rdf:nil .
epvoc:Room sh:nodeKind sh:IRI;
sh:order 7;
sh:pattern "^https://data.europarl.europa.eu/room/[A-Za-z0-9\\-_]+$";
sh:property eli-ep:P83, eli-ep:P84, eli-ep:P85;
shacl-play:color "Black" .
eli-dl:ParliamentaryTerm a rdfs:Class, sh:NodeShape;
rdfs:label "Parliamentary term"@en;
owl:versionInfo "v0.4";
skos:example "https://data.europarl.europa.eu/org/ep-9";
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9178 .
_:node1g8tmdfl9x9178 rdf:first rdf:type;
rdf:rest rdf:nil .
eli-dl:ParliamentaryTerm sh:nodeKind sh:IRI;
sh:order 9;
sh:pattern "^https://data.europarl.europa.eu/org/ep-[0-9].*$";
sh:property eli-ep:P88;
shacl-play:color "Black" .
eli:LegalResource a rdfs:Class, sh:NodeShape;
rdfs:label "Legal Resource"@en;
owl:versionInfo "v0.4";
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9179 .
_:node1g8tmdfl9x9179 rdf:first rdf:type;
rdf:rest rdf:nil .
eli:LegalResource sh:nodeKind sh:IRI;
sh:order 10;
shacl-play:color "Orange" .
eli:WorkType a rdfs:Class, sh:NodeShape;
rdfs:label "Work type"@en;
owl:versionInfo "v0.4";
skos:example "http://publications.europa.eu/resource/authority/resource-type/ADOPT_TEXT";
sh:ignoredProperties _:node1g8tmdfl9x9180 .
_:node1g8tmdfl9x9180 rdf:first rdf:type;
rdf:rest rdf:nil .
eli:WorkType sh:nodeKind sh:IRI;
sh:order 11;
sh:pattern "http://publications.europa.eu/resource/authority/resource-type/.*$";
sh:property eli-ep:P102, eli-ep:P103;
shacl-play:color "DarkGrey" .
eli-dl:ActivityType a rdfs:Class, sh:NodeShape;
rdfs:label "Activity type"@en;
owl:versionInfo "v0.4";
skos:example "http://publications.europa.eu/resource/authority/event/DOCUMENT_SUBMISSION";
sh:ignoredProperties _:node1g8tmdfl9x9181 .
_:node1g8tmdfl9x9181 rdf:first rdf:type;
rdf:rest rdf:nil .
eli-dl:ActivityType sh:nodeKind sh:IRI;
sh:order 12;
sh:pattern "http://publications.europa.eu/resource/authority/event/.*$";
sh:property eli-ep:P94, eli-ep:P95;
shacl-play:color "DarkGrey" .
eli-dl:ParticipationRole a rdfs:Class, sh:NodeShape;
rdfs:label "Participation Role"@en;
owl:versionInfo "v0.4";
skos:example "http://publications.europa.eu/resource/authority/role/RAPP";
sh:ignoredProperties _:node1g8tmdfl9x9182 .
_:node1g8tmdfl9x9182 rdf:first rdf:type;
rdf:rest rdf:nil .
eli-dl:ParticipationRole sh:nodeKind sh:IRI;
sh:order 13;
sh:pattern "http://publications.europa.eu/resource/authority/role/.*$";
sh:property eli-ep:P98, eli-ep:P99;
shacl-play:color "DarkGrey" .
dcterms:LinguisticSystem a rdfs:Class, sh:NodeShape;
rdfs:label "Linguistic System"@en;
owl:versionInfo "v0.4";
skos:example "http://publications.europa.eu/resource/authority/language/LIT";
sh:ignoredProperties _:node1g8tmdfl9x9183 .
_:node1g8tmdfl9x9183 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:LinguisticSystem sh:nodeKind sh:IRI;
sh:order 14;
sh:pattern "http://publications.europa.eu/resource/authority/langauge/.*$";
sh:property eli-ep:P114, eli-ep:P115;
shacl-play:color "DarkGrey" .
dcterms:MediaTypeOrExtent a rdfs:Class, sh:NodeShape;
rdfs:label "Media Type or Extent"@en;
owl:versionInfo "v0.4";
skos:example "http://publications.europa.eu/resource/authority/file-type/PDF";
sh:ignoredProperties _:node1g8tmdfl9x9184 .
_:node1g8tmdfl9x9184 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:MediaTypeOrExtent sh:nodeKind sh:IRI;
sh:order 15;
sh:pattern "http://publications.europa.eu/resource/authority/file-type/.*$";
sh:property eli-ep:P110, eli-ep:P111;
shacl-play:color "DarkGrey" .
euvoc:Country a rdfs:Class, sh:NodeShape;
rdfs:label "Country"@en;
owl:versionInfo "v0.4";
skos:example "http://publications.europa.eu/resource/authority/country/FRA";
sh:ignoredProperties _:node1g8tmdfl9x9185 .
_:node1g8tmdfl9x9185 rdf:first rdf:type;
rdf:rest rdf:nil .
euvoc:Country sh:nodeKind sh:IRI;
sh:order 17;
sh:pattern "http://publications.europa.eu/resource/authority/country/.*$";
sh:property eli-ep:P118, eli-ep:P119;
shacl-play:color "DarkGrey" .
dcterms:Location a rdfs:Class, sh:NodeShape;
rdfs:label "Place"@en;
owl:versionInfo "v0.4";
skos:example "http://publications.europa.eu/resource/authority/place/FRA_SXB";
sh:ignoredProperties _:node1g8tmdfl9x9186 .
_:node1g8tmdfl9x9186 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:Location sh:nodeKind sh:IRI;
sh:order 18;
sh:pattern "http://publications.europa.eu/resource/authority/place/.*$";
sh:property eli-ep:P122, eli-ep:P123, eli-ep:P124;
shacl-play:color "DarkGrey" .
epvoc:Status a rdfs:Class, sh:NodeShape;
rdfs:label "Status"@en;
owl:versionInfo "v0.4";
sh:ignoredProperties _:node1g8tmdfl9x9187 .
_:node1g8tmdfl9x9187 rdf:first rdf:type;
rdf:rest rdf:nil .
epvoc:Status sh:nodeKind sh:IRI;
sh:order 19;
sh:property eli-ep:P106, eli-ep:P107;
shacl-play:color "DarkGrey" .
org:Organization a rdfs:Class, sh:NodeShape;
rdfs:label "Corporate Body"@en;
owl:versionInfo "v0.4";
skos:example "http://publications.europa.eu/resource/authority/corporate-body/EP";
sh:ignoredProperties _:node1g8tmdfl9x9188 .
_:node1g8tmdfl9x9188 rdf:first rdf:type;
rdf:rest rdf:nil .
org:Organization sh:nodeKind sh:IRI;
sh:order 20;
sh:pattern "http://publications.europa.eu/resource/authority/corporate-body/.*$";
sh:property eli-ep:P131, eli-ep:P132;
shacl-play:color "DarkGrey" .
org:Site a rdfs:Class, sh:NodeShape;
rdfs:label "Site"@en;
owl:versionInfo "v0.4.2";
skos:example "http://publications.europa.eu/resource/authority/site/ASP";
sh:ignoredProperties _:node1g8tmdfl9x9189 .
_:node1g8tmdfl9x9189 rdf:first rdf:type;
rdf:rest rdf:nil .
org:Site sh:nodeKind sh:IRI;
sh:order 21;
sh:pattern "http://publications.europa.eu/resource/authority/site/.*$";
sh:property eli-ep:P127, eli-ep:P128;
shacl-play:color "DarkGrey" .
skos:Concept a rdfs:Class, sh:NodeShape;
rdfs:label "Concept"@en;
owl:versionInfo "v0.4";
skos:example "http://eurovoc.europa.eu/434743";
sh:ignoredProperties _:node1g8tmdfl9x9190 .
_:node1g8tmdfl9x9190 rdf:first rdf:type;
rdf:rest rdf:nil .
skos:Concept sh:nodeKind sh:IRI;
sh:order 22;
sh:pattern "http://eurovoc.europa.eu/.*$";
sh:property eli-ep:P91;
shacl-play:color "DarkGrey" .
eli-ep:P10 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli-dl:ParliamentaryTerm;
sh:maxCount 1;
sh:name "parliamentary term"@en;
sh:nodeKind sh:IRI;
sh:path eli-dl:parliamentary_term .
eli-ep:P11 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:WorkType;
sh:maxCount 1;
sh:minCount 1;
sh:name "work type"@en;
sh:nodeKind sh:IRI;
sh:path eli:work_type .
eli-ep:P12 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:dateTime;
sh:description "Date of adoption or signature (of the form yyyy-mm-dd) of the document"@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "date document"@en;
sh:nodeKind sh:Literal;
sh:path eli:date_document .
eli-ep:P13 a skos:Concept;
owl:versionInfo "v4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:string;
sh:description "European Parliament number"@en;
sh:maxCount 1;
sh:name "ep number"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:epNumber .
eli-ep:P14 a skos:Concept;
owl:versionInfo "v4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:string;
sh:description "Label to by displayed in user interfaces"@en;
sh:maxCount 1;
sh:name "display label"@en;
sh:nodeKind sh:Literal;
sh:path rdfs:label .
eli-ep:P15 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:string;
sh:description "An unambiguous reference to the resource."@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "identifier"@en;
sh:nodeKind sh:Literal;
sh:path dc:identifier .
eli-ep:P16 a skos:Concept;
owl:versionInfo "v0.4.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:string;
sh:description "A year linked to the reference of the resource."@en;
sh:maxCount 1;
sh:name "identifier year"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:identifierYear .
eli-ep:P17 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype rdf:langString;
sh:description "use ISO639-1 of controlled vocabulary"@en;
sh:minCount 1;
sh:name "title"@en;
sh:nodeKind sh:Literal;
sh:path dcterms:title .
eli-ep:P18 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype epvoc:publicRegister;
sh: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."@en;
sh:name "notation in EP Public Register"@en;
sh:nodeKind sh:Literal;
sh:path skos:notation .
eli-ep:P19 a skos:Concept;
owl:versionInfo "v4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Work;
sh:description "This work is derived from the other work. Example: a motion derived from an oral question."@en;
sh:name "is derivative of"@en;
sh:nodeKind sh:IRI;
sh:path eli:is_derivative_of .
eli-ep:P20 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Work;
sh:description "Indicates that the Work is Annex of another Work"@en;
sh:name "is annex of"@en;
sh:nodeKind sh:IRI;
sh:path eli:is_annex_of .
eli-ep:P21 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class org:Organization;
sh:description "The property refers to the institution responsible for making the document available. The values are concepts of op-aut:corporate-body."@en;
sh:maxCount 1;
sh:name "publisher"@en;
sh:nodeKind sh:IRI;
sh:path dcterms:publisher .
eli-ep:P22 a skos:Concept;
owl:versionInfo "v0.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:string;
sh:maxCount 1;
sh:name "numbering"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:numbering .
eli-ep:P23 a skos:Concept;
owl:versionInfo "v0.4.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:integer;
sh:maxCount 1;
sh:name "numbering range begin"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:itemNumberBegin .
eli-ep:P24 a skos:Concept;
owl:versionInfo "v0.4.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:integer;
sh:maxCount 1;
sh:name "numbering range end"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:itemNumberEnd .
eli-ep:P27 a skos:Concept;
owl:versionInfo "v4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:string;
sh:description "European Parliament number version"@en;
sh:maxCount 1;
sh:name "ep number version"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:epNumberVersion .
eli-ep:P28 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Work;
sh:description "Indicates that this work introduces changes in what is expressed in the other work. For minor modifications that do not change the meaning of the work, use eli:corrects."@en;
sh:maxCount 1;
sh:name "amends"@en;
sh:nodeKind sh:IRI;
sh:path eli:amends .
eli-ep:P29 a skos:Concept;
owl:versionInfo "v0.4.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Work;
sh:description "Indicates that this legal resource or expression is taken into account in a consolidated text"@en;
sh:maxCount 1;
sh:name "consolidated by"@en;
sh:nodeKind sh:IRI;
sh:path eli:consolidated_by .
eli-ep:P30 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Work;
sh:description "Indicates that this work is an answer the other work."@en;
sh:maxCount 1;
sh:name "answers"@en;
sh:nodeKind sh:IRI;
sh:path eli-dl:answers_to .
eli-ep:P31 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:LegalResource;
sh:description "Indicates that this work is empowered by another one, typically rules, constitution, a treaty or an enabling act."@en;
sh:name "based on"@en;
sh:nodeKind sh:IRI;
sh:path eli:based_on .
eli-ep:P32 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class foaf:Agent;
sh:name "contributor"@en;
sh:nodeKind sh:IRI;
sh:path dcterms:contributor .
eli-ep:P33 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class foaf:Agent;
sh:description "An agent responsible for making the resource."@en;
sh:name "creator"@en;
sh:nodeKind sh:IRI;
sh:path dcterms:creator .
eli-ep:P34 a skos:Concept;
owl:versionInfo "v0.4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class epvoc:Status;
sh:description "Indicates the version type of a Work part of a Complex Work, like Agenda or Minutes."@en;
sh:maxCount 1;
sh:name "version status"@en;
sh:nodeKind sh:IRI;
sh:path epvoc:versionType .
eli-ep:P35 a skos:Concept;
owl:versionInfo "v0.4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class dcterms:LinguisticSystem;
sh:description "Original language of a work"@en;
sh:maxCount 1;
sh:name "original language"@en;
sh:nodeKind sh:IRI;
sh:path epvoc:originalLanguage .
eli-ep:P36 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Work;
sh: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."@en;
sh:maxCount 1;
sh:name "corrects"@en;
sh:nodeKind sh:IRI;
sh:path eli:corrects .
eli-ep:P37 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Expression;
sh:description "Relates a work to an expression that realizes it. Inverse of \"realizes\"."@en;
sh:name "is realized by"@en;
sh:nodeKind sh:IRI;
sh:path eli:is_realized_by .
eli-ep:P38 a skos:Concept;
owl:versionInfo "v0.4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class skos:Concept;
sh: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."@en;
sh:name "is about"@en;
sh:nodeKind sh:IRI;
sh:path eli:is_about .
eli-ep:P41 a skos:Concept;
owl:versionInfo "v4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Work;
sh:description "Indicates that a Work is part of a Complex Work."@en;
sh:name "has member"@en;
sh:nodeKind sh:IRI;
sh:path eli:has_member .
eli-ep:P42 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Work;
sh: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."@en;
sh:maxCount 1;
sh:name "has current version"@en;
sh:nodeKind sh:IRI;
sh:path dcat:hasCurrentVersion .
eli-ep:P45 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype rdf:langString;
sh:description "use ISO639-1 of controlled vocabulary"@en;
sh:minCount 1;
sh:name "title"@en;
sh:nodeKind sh:Literal;
sh:path eli:title .
eli-ep:P46 a skos:Concept;
owl:versionInfo "v0.4.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype rdf:langString;
sh:description "An alternative title of the expression (if any)."@en;
sh:name "alternative title"@en;
sh:nodeKind sh:Literal;
sh:path eli:title_alternative .
eli-ep:P47 a skos:Concept;
owl:versionInfo "v0.4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class dcterms:LinguisticSystem;
sh:description "A language of an expression."@en;
sh:minCount 1;
sh:name "language"@en;
sh:nodeKind sh:IRI;
sh:path eli:language .
eli-ep:P48 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Manifestation;
sh:description "Relates an expression to the manifestation that embodies it. Inverse of \"embodies\"."@en;
sh:name "is embodied by"@en;
sh:nodeKind sh:IRI;
sh:path eli:is_embodied_by .
eli-ep:P52 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class rdfs:Resource;
sh:description "Link to a concrete file URL.Relates a manifestation to a single exemplar or instance of that manifestation."@en;
sh:minCount 1;
sh:name "is exemplified by"@en;
sh:nodeKind sh:IRI;
sh:path eli:is_exemplified_by .
eli-ep:P53 a skos:Concept;
owl:versionInfo "v0.4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class dcterms:MediaTypeOrExtent;
sh:description "The file format, physical medium, or dimensions of the resource."@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "format"@en;
sh:nodeKind sh:IRI;
sh:path dcterms:format .
eli-ep:P54 a skos:Concept;
owl:versionInfo "v0.4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class dcterms:MediaType;
sh:description """The file format of the manifestation (IANA).
This field is intended to capture the technical file format and will serve as a basis for content negotiation for the server to return the appropriate file based on the client preference."""@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "format"@en;
sh:nodeKind sh:IRI;
sh:path eli:media_type;
sh:pattern "https://www.iana.org/assignments/media-types/.*$" .
eli-ep:P55 a skos:Concept;
owl:versionInfo "v0.4.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:long;
sh:description "Indicates the byte size of the file exemplified by the manifestation."@en;
sh:maxCount 1;
sh:name "byte size"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:byteSize .
eli-ep:P56 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:dateTime;
sh:description "Date of formal issuance of the work."@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "issued"@en;
sh:nodeKind sh:Literal;
sh:path dcterms:issued .
eli-ep:P60 a skos:Concept;
owl:versionInfo "v0.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli-dl:ActivityType;
sh:description "op-aut:event"@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "activity type"@en;
sh:nodeKind sh:IRI;
sh:path eli-dl:had_activity_type .
eli-ep:P62 a skos:Concept;
owl:versionInfo "v0.2.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Work;
sh:description "indicates that the work is the output of an activity."@en;
sh:maxCount 1;
sh:name "created a realization of"@en;
sh:nodeKind sh:IRI;
sh:path eli-dl:created_a_realization_of;
shacl-play:note "Cardinality 0.1 for Activities of type op-aut:event/DOC_DEPOSIT" .
eli-ep:P63 a skos:Concept;
owl:versionInfo "v0.2.1";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:dateTime;
sh:description "indicates the date of the Activity"@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "activity date"@en;
sh:nodeKind sh:Literal;
sh:path eli-dl:activity_date .
eli-ep:P64 a skos:Concept;
owl:versionInfo "v0.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:dateTime;
sh:description "indicates the start date and time of the Activity"@en;
sh:maxCount 1;
sh:name "activity start date"@en;
sh:nodeKind sh:Literal;
sh:path eli-dl:activity_start_date .
eli-ep:P65 a skos:Concept;
owl:versionInfo "v0.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:dateTime;
sh:description "indicates the end date and time of the Activity"@en;
sh:maxCount 1;
sh:name "activity end date"@en;
sh:nodeKind sh:Literal;
sh:path eli-dl:activity_end_date .
eli-ep:P66 a skos:Concept;
owl:versionInfo "v0.4.3";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype xsd:string;
sh:description "An identifier for the activity"@en;
sh:maxCount 1;
sh:name "activity id"@en;
sh:nodeKind sh:Literal;
sh:path eli-dl:activity_id .
eli-ep:P67 a skos:Concept;
owl:versionInfo "v0.4.3";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:datatype rdf:langString;
sh:description "A label on the activity, describing what is being carried out."@en;
sh:name "activity label"@en;
sh:nodeKind sh:Literal;
sh:path eli-dl:activity_label .
eli-ep:P68 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli-dl:Participation;
sh:description "Indicates the participation of a stakeholder to an activity. The role of the agent in this participation is described in the stakeholder resource."@en;
sh:name "stakeholder participant"@en;
sh:nodeKind sh:IRI;
sh:path eli-dl:had_participation .
eli-ep:P69 a skos:Concept;
owl:versionInfo "v0.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Work;
sh:description "Indicates that the activity was or will be conducted according to the plan described by a Work. Typically these works are agendas that foreseen how future activities will take place."@en;
sh:name "documented by a realization of"@en;
sh:nodeKind sh:IRI;
sh:path eli-dl:documented_by_a_realization_of .
eli-ep:P70 a skos:Concept;
owl:versionInfo "v0.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli:Work;
sh:description "Indicates that an activity was recorded in a related work."@en;
sh:name "recorded in realization of"@en;
sh:nodeKind sh:IRI;
sh:path eli-dl:recorded_in_realization_of .
eli-ep:P71 a skos:Concept;
owl:versionInfo "v0.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli-dl:Activity;
sh:description "Indicates a more fine-grained activity that is taking place within this one. This allows to nest activities inside each other, at an arbitrary level of precision."@en;
sh:name "consists of"@en;
sh:nodeKind sh:IRI;
sh:path eli-dl:consists_of .
eli-ep:P72 a skos:Concept;
owl:versionInfo "v0.4";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class eli-dl:ParliamentaryTerm;
sh:maxCount 1;
sh:name "parliamentary term"@en;
sh:nodeKind sh:IRI;
sh:path eli-dl:parliamentary_term .
eli-ep:P73 a skos:Concept;
owl:versionInfo "v0.4.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class epvoc:Room;
sh:name "room"@en;
sh:nodeKind sh:IRI;
sh:path epvoc:hasRoom .
eli-ep:P74 a skos:Concept;
owl:versionInfo "v0.4.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class dcterms:Location;
sh:description "The key postal division of the address, usually the city."@en;
sh:maxCount 1;
sh:name "locality"@en;
sh:nodeKind sh:IRI;
sh:path vcard:hasLocality .
eli-ep:P77 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/eli-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/eli-ep#>;
sh:class org:Organization;
sh:description "Describes that the organisation is the actor in a participation description."@en;
sh:maxCount 1;
sh:name "participation has Organization"@en;
sh:nodeKind sh:IRI;
sh:path eli-dl:had_participant_organization .
eli-ep:P78 a skos:Concept;