forked from europarl/org-ep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorg-ep.shacl.ttl
1078 lines (936 loc) · 40.8 KB
/
org-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: <https://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-dl: <http://data.europa.eu/eli/eli-draft-legislation-ontology#> .
@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 op-aut: <http://publications.europa.eu/resource/authority/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix org-ep: <https://data.europarl.europa.eu/def/org-ep#> .
@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 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/org-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:description "ORG-EP is an application profile of the W3C Organization Ontology, specifically designed to describe the organisational components of the European Parliament (MEPs, Parliamentary Groups, Committees, etc.)."@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 "ORG-EP Application Profile"@en;
dcterms:type <http://publications.europa.eu/resource/authority/dataset-type/APROF>;
vann:usageNote "This version of ORG-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;
owl:versionIRI <https://data.europarl.europa.eu/def/org-ep/0.3.1/>;
owl:versionInfo "0.3.1";
skos:hasTopConcept org-ep:P10, org-ep:P100, org-ep:P101, org-ep:P104, org-ep:P105,
org-ep:P108, org-ep:P109, org-ep:P11, org-ep:P12, org-ep:P13, org-ep:P14, org-ep:P15,
org-ep:P16, org-ep:P17, org-ep:P18, org-ep:P19, org-ep:P22, org-ep:P23, org-ep:P24,
org-ep:P25, org-ep:P26, org-ep:P27, org-ep:P28, org-ep:P29, org-ep:P30, org-ep:P31,
org-ep:P32, org-ep:P33, org-ep:P34, org-ep:P35, org-ep:P36, org-ep:P37, org-ep:P38,
org-ep:P39, org-ep:P40, org-ep:P41, org-ep:P42, org-ep:P43, org-ep:P46, org-ep:P47,
org-ep:P48, org-ep:P49, org-ep:P50, org-ep:P51, org-ep:P52, org-ep:P53, org-ep:P54,
org-ep:P57, org-ep:P58, org-ep:P61, org-ep:P62, org-ep:P63, org-ep:P66, org-ep:P69,
org-ep:P72, org-ep:P75, org-ep:P78, org-ep:P81, org-ep:P84, org-ep:P85, org-ep:P88,
org-ep:P89, org-ep:P9, org-ep:P92, org-ep:P93, org-ep:P96, org-ep:P97;
adms:status <http://publications.europa.eu/resource/dataset/dataset-status/DEVELOP>;
adms:versionNotes """2022-08-11:
- replace blank nodes by URIs for epvoc:ContactPoint and dcterms:PeriodOfTime. Also add examples and patterns.
2022-08-08
- cardinality set to min 0 for all main classes (except dc:identifier)
2022-08-02
- fixed license url
2022-07-01
- add missing class eli-dl:ParliamentaryTerm for dcterms:source
2022-06-20
- fixed typos
'2022-06-02
- add dcterms:source on org:Organization
- add epvoc:classificationOrganization on org:Membership
0.3.1
- corrected role example (link was not ok)
- properties column K,L formulas fixed
- general metadata of application profile harmonised with dcat-ep, eli-ep (rdfs:label, rdfs:comment deleted)
- prefix epsh changed to org-ep, added missing vann prefix
- Deleted class dcterms:Location
- 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
- Fixed syntax error in values of property skos:example
- Added description
- Specified title and description of the application profile by using also properties rdfs:label and rdfs:comment
-org:linkedTo substitutes org:hasSuborganization
- dcterms:Location class removed
- memberDuring range changed from IRI to BlankNode
- prefLabel range changed from IRI to Literal"""@en .
org:Organization a rdfs:Class, sh:NodeShape;
rdfs:comment "Represents a collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organizations are often decomposable into hierarchical structures."@en;
rdfs:label "Organization"@en;
skos:example <https://data.europarl.europa.eu/org/1234>;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9233 .
_:node1g8tmdfl9x9233 rdf:first rdf:type;
rdf:rest rdf:nil .
org:Organization sh:nodeKind sh:IRI;
sh:order 1;
sh:pattern "^https://data.europarl.europa.eu/org/.*$";
sh:property org-ep:P10, org-ep:P11, org-ep:P12, org-ep:P13, org-ep:P14, org-ep:P15,
org-ep:P16, org-ep:P17, org-ep:P18, org-ep:P19, org-ep:P9 .
foaf:Person a rdfs:Class, sh:NodeShape;
rdfs:label "Person"@en;
skos:example <https://data.europarl.europa.eu/person/124936>;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9234 .
_:node1g8tmdfl9x9234 rdf:first rdf:type;
rdf:rest rdf:nil .
foaf:Person sh:nodeKind sh:IRI;
sh:order 2;
sh:pattern "^https://data.europarl.europa.eu/person/[0-9]*?$";
sh:property org-ep:P22, org-ep:P23, org-ep:P24, org-ep:P25, org-ep:P26, org-ep:P27,
org-ep:P28, org-ep:P29, org-ep:P30, org-ep:P31, org-ep:P32, org-ep:P33, org-ep:P34,
org-ep:P35, org-ep:P36, org-ep:P37, org-ep:P38, org-ep:P39, org-ep:P40, org-ep:P41,
org-ep:P42, org-ep:P43 .
org:Membership a rdfs:Class, sh:NodeShape;
rdfs:comment "Indicates the nature of an Agent's membership of an organization."@en;
rdfs:label "Membership"@en;
skos:example <https://data.europarl.europa.eu/membership/12345-f-999900001>, <https://data.europarl.europa.eu/membership/12345-m-999900001>;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9235 .
_:node1g8tmdfl9x9235 rdf:first rdf:type;
rdf:rest rdf:nil .
org:Membership sh:nodeKind sh:IRI;
sh:order 3;
sh:property org-ep:P46, org-ep:P47, org-ep:P48, org-ep:P49, org-ep:P50, org-ep:P51,
org-ep:P52, org-ep:P53, org-ep:P54 .
vcard:Voice a rdfs:Class, sh:NodeShape;
rdfs:label "Voice"@en;
skos:example <https://data.europarl.europa.eu/tel/33388175139>;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9236 .
_:node1g8tmdfl9x9236 rdf:first rdf:type;
rdf:rest rdf:nil .
vcard:Voice sh:nodeKind sh:IRI;
sh:order 4;
sh:pattern "^https://data.europarl.europa.eu/tel/[0-9]*$";
sh:property org-ep:P66 .
vcard:Fax a rdfs:Class, sh:NodeShape;
rdfs:label "Fax"@en;
skos:example <https://data.europarl.europa.eu/tel/33388175139>;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9237 .
_:node1g8tmdfl9x9237 rdf:first rdf:type;
rdf:rest rdf:nil .
vcard:Fax sh:nodeKind sh:IRI;
sh:order 5;
sh:pattern "^https://data.europarl.europa.eu/tel/[0-9]*$";
sh:property org-ep:P69 .
dcterms:PeriodOfTime a rdfs:Class, sh:NodeShape;
rdfs:comment "An interval of time that is named or defined by its start and end dates."@en;
rdfs:label "Period of time"@en;
skos:example <https://data.europarl.europa.eu/time-period/pt_9>;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9238 .
_:node1g8tmdfl9x9238 rdf:first rdf:type;
rdf:rest rdf:nil .
dcterms:PeriodOfTime sh:nodeKind sh:IRI;
sh:order 6;
sh:pattern "^https://data.europarl.europa.eu/time-period/.*$";
sh:property org-ep:P57, org-ep:P58 .
epvoc:ContactPoint a rdfs:Class, sh:NodeShape;
rdfs:comment "A contact point for a person, an organisation"@en;
rdfs:label "Contact point"@en;
skos:example <https://data.europarl.europa.eu/contact-point/58766-m-16341-M05047>;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9239 .
_:node1g8tmdfl9x9239 rdf:first rdf:type;
rdf:rest rdf:nil .
epvoc:ContactPoint sh:nodeKind sh:IRI;
sh:order 7;
sh:pattern "^https://data.europarl.europa.eu/contact-point/.*$";
sh:property org-ep:P61, org-ep:P62, org-ep:P63 .
eli-dl:ParliamentaryTerm a rdfs:Class, sh:NodeShape;
rdfs:label "Parliamentary term"@en;
skos:example <https://data.europarl.europa.eu/org/ep-9>;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9240 .
_:node1g8tmdfl9x9240 rdf:first rdf:type;
rdf:rest rdf:nil .
eli-dl:ParliamentaryTerm sh:nodeKind sh:IRI;
sh:order 8;
sh:pattern "^https://data.europarl.europa.eu/org/ep-[0-9].*$";
sh:property org-ep:P10, org-ep:P11, org-ep:P12, org-ep:P13, org-ep:P14, org-ep:P17,
org-ep:P19, org-ep:P9 .
foaf:OnlineAccount a rdfs:Class, sh:NodeShape;
rdfs:label "Online account"@en;
skos:example <https://twitter.com/mariearenaps>;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9241 .
_:node1g8tmdfl9x9241 rdf:first rdf:type;
rdf:rest rdf:nil .
foaf:OnlineAccount sh:nodeKind sh:IRI;
sh:order 9;
sh:property org-ep:P78 .
skos:Concept a rdfs:Class, sh:NodeShape;
rdfs:label "Concept"@en;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9242 .
_:node1g8tmdfl9x9242 rdf:first rdf:type;
rdf:rest rdf:nil .
skos:Concept sh:nodeKind sh:IRI;
sh:order 10;
sh:property org-ep:P81 .
rdfs:Resource a rdfs:Class, sh:NodeShape;
rdfs:label "Resource"@en;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9243 .
_:node1g8tmdfl9x9243 rdf:first rdf:type;
rdf:rest rdf:nil .
rdfs:Resource sh:nodeKind sh:IRI;
sh:order 11 .
foaf:Document a rdfs:Class, sh:NodeShape;
rdfs:label "Document"@en;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9244 .
_:node1g8tmdfl9x9244 rdf:first rdf:type;
rdf:rest rdf:nil .
foaf:Document sh:nodeKind sh:IRI;
sh:order 12;
sh:property org-ep:P75 .
foaf:Image a rdfs:Class, sh:NodeShape;
rdfs:label "Image"@en;
skos:example <https://www.europarl.europa.eu/mepphoto/124936.jpg>;
sh:closed true;
sh:ignoredProperties _:node1g8tmdfl9x9245 .
_:node1g8tmdfl9x9245 rdf:first rdf:type;
rdf:rest rdf:nil .
foaf:Image sh:nodeKind sh:IRI;
sh:order 13;
sh:property org-ep:P72 .
org:Site a rdfs:Class, sh:NodeShape;
rdfs:comment "An office or other premise at which the organization is located. Many organizations are spread across multiple sites and many sites will host multiple locations. In most cases a Site will be a physical location. However, we don't exclude the possibility of non-physical sites such as a virtual office with an associated post box and phone reception service. Extensions may provide subclasses to denote particular types of site."@en;
rdfs:label "Site"@en;
skos:example <http://publications.europa.eu/resource/authority/site/ASP>;
sh:ignoredProperties _:node1g8tmdfl9x9246 .
_:node1g8tmdfl9x9246 rdf:first rdf:type;
rdf:rest rdf:nil .
org:Site sh:nodeKind sh:IRI;
sh:order 14;
sh:pattern "http://publications.europa.eu/resource/authority/site/.*$";
sh:property org-ep:P96, org-ep:P97 .
org:Role a rdfs:Class, sh:NodeShape;
rdfs:comment "Denotes a role that a Person or other Agent can take in an organization. Instances of this class describe the abstract role; to denote a specific instance of a person playing that role in a specific organization use an instance of `org:Membership`. It is common for roles to be arranged in some taxonomic structure and we use SKOS to represent that. The normal SKOS lexical properties should be used when labelling the Role."@en;
rdfs:label "Role"@en;
skos:example <http://publications.europa.eu/resource/authority/role/MEMBER_EP>;
sh:ignoredProperties _:node1g8tmdfl9x9247 .
_:node1g8tmdfl9x9247 rdf:first rdf:type;
rdf:rest rdf:nil .
org:Role sh:nodeKind sh:IRI;
sh:order 15;
sh:pattern "http://publications.europa.eu/resource/authority/role/.*$";
sh:property org-ep:P92, org-ep:P93 .
euvoc:HonorificTitle a rdfs:Class, sh:NodeShape;
rdfs:label "Honorific title"@en;
skos:example <http://publications.europa.eu/resource/authority/honorific/MR>;
sh:ignoredProperties _:node1g8tmdfl9x9248 .
_:node1g8tmdfl9x9248 rdf:first rdf:type;
rdf:rest rdf:nil .
euvoc:HonorificTitle sh:nodeKind sh:IRI;
sh:order 16;
sh:pattern "http://publications.europa.eu/resource/authority/honorific/.*$";
sh:property org-ep:P108, org-ep:P109 .
euvoc:Country a rdfs:Class, sh:NodeShape;
rdfs:label "Country"@en;
skos:example <http://publications.europa.eu/resource/authority/country/BEL>;
sh:ignoredProperties _:node1g8tmdfl9x9249 .
_:node1g8tmdfl9x9249 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 org-ep:P84, org-ep:P85 .
vcard:Gender a rdfs:Class, sh:NodeShape;
rdfs:label "Gender"@en;
skos:example <http://publications.europa.eu/resource/authority/human-sex/FEMALE>;
sh:ignoredProperties _:node1g8tmdfl9x9250 .
_:node1g8tmdfl9x9250 rdf:first rdf:type;
rdf:rest rdf:nil .
vcard:Gender sh:nodeKind sh:IRI;
sh:order 18;
sh:pattern "http://publications.europa.eu/resource/authority/human-sex/.*$";
sh:property org-ep:P100, org-ep:P101 .
euvoc:CorporateBodyClassification a rdfs:Class, sh:NodeShape;
rdfs:label "Corporate body classification"@en;
skos:example <http://publications.europa.eu/resource/authority/corporate-body-classification/EP_GROUP>;
sh:ignoredProperties _:node1g8tmdfl9x9251 .
_:node1g8tmdfl9x9251 rdf:first rdf:type;
rdf:rest rdf:nil .
euvoc:CorporateBodyClassification sh:nodeKind sh:IRI;
sh:order 20;
sh:pattern "http://publications.europa.eu/resource/authority/corporate-body-classification/.*$";
sh:property org-ep:P88, org-ep:P89 .
euvoc:AddressType a rdfs:Class, sh:NodeShape;
rdfs:label "Address type"@en;
skos:example <http://publications.europa.eu/resource/authority/address-type/TWT>;
sh:ignoredProperties _:node1g8tmdfl9x9252 .
_:node1g8tmdfl9x9252 rdf:first rdf:type;
rdf:rest rdf:nil .
euvoc:AddressType sh:nodeKind sh:IRI;
sh:order 21;
sh:pattern "http://publications.europa.eu/resource/authority/address-type/.*$";
sh:property org-ep:P104, org-ep:P105 .
org-ep:P9 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "An unambiguous reference to the resource within a given context."@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "Identifier"@en;
sh:nodeKind sh:Literal;
sh:path dc:identifier .
org-ep:P10 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype epvoc:codictBodyId;
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"@en;
sh:nodeKind sh:Literal;
sh:path skos:notation .
org-ep:P11 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "The property may be used to provide a human-readable version of a resource's name."@en;
sh:name "Label"@en;
sh:nodeKind sh:Literal;
sh:path rdfs:label .
org-ep:P12 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype rdf:langString;
sh:description "A preferred lexical label for a given resource."@en;
sh:name "Preferred label"@en;
sh:nodeKind sh:Literal;
sh:path skos:prefLabel .
org-ep:P13 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype rdf:langString;
sh:description "An alternative lexical label for a given resource."@en;
sh:name "Alternative label"@en;
sh:nodeKind sh:Literal;
sh:path skos:altLabel .
org-ep:P14 a skos:Concept;
owl:versionInfo "v0.3.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "A related source from which the described resource is derived."@en;
sh:maxCount 1;
sh:name "Source"@en;
sh:nodeKind sh:Literal;
sh:path dcterms:source .
org-ep:P15 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class org:Organization;
sh:description "Indicates an arbitrary relationship between two organizations."@en;
sh:name "Linked to"@en;
sh:nodeKind sh:IRI;
sh:path org:linkedTo .
org-ep:P16 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class org:Organization;
sh:description "Represents hierarchical containment of Organizations or Organizational Units; indicates an organization which is a sub-part or child of this organization. Inverse of `org:subOrganizationOf`."@en;
sh:name "Has suborganization"@en;
sh:nodeKind sh:IRI;
sh:path org:hasSubOrganization .
org-ep:P17 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class euvoc:CorporateBodyClassification;
sh:description "Indicates a classification for this Organization within some classification scheme. Extension vocabularies may wish to specialize this property to have a range corresponding to a specific `skos:ConceptScheme`. This property is under discussion and may be revised or removed - in many cases organizations are best categorized by defining a sub-class hierarchy in an extension vocabulary."@en;
sh:name "Classification"@en;
sh:nodeKind sh:IRI;
sh:path org:classification .
org-ep:P18 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class euvoc:Country;
sh:name "Represents"@en;
sh:nodeKind sh:IRI;
sh:path euvoc:represents .
org-ep:P19 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class dcterms:PeriodOfTime;
sh:description "Temporal characteristics of the resource."@en;
sh:maxCount 1;
sh:name "Temporal"@en;
sh:nodeKind sh:IRI;
sh:path dcterms:temporal .
org-ep:P22 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "An unambiguous reference to the resource within a given context."@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "Identifier"@en;
sh:nodeKind sh:Literal;
sh:path dc:identifier .
org-ep:P23 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype epvoc:codictPersonId;
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"@en;
sh:nodeKind sh:Literal;
sh:path skos:notation .
org-ep:P24 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "The property may be used to provide a human-readable version of a resource's name."@en;
sh:name "Label"@en;
sh:nodeKind sh:Literal;
sh:path rdfs:label .
org-ep:P25 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "The given name of some person."@en;
sh:maxCount 1;
sh:name "Given name"@en;
sh:nodeKind sh:Literal;
sh:path foaf:givenName .
org-ep:P26 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "The family name of some person."@en;
sh:maxCount 1;
sh:name "Family name"@en;
sh:nodeKind sh:Literal;
sh:path foaf:familyName .
org-ep:P27 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "Given name in uppercase"@en;
sh:maxCount 1;
sh:name "Upper given name"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:upperGivenName .
org-ep:P28 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "Family name in uppercase"@en;
sh:maxCount 1;
sh:name "Upper family name"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:upperFamilyName .
org-ep:P29 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "Official given name"@en;
sh:maxCount 1;
sh:name "Official given name"@en;
sh:nodeKind sh:Literal;
sh:path euvoc:officialGivenName .
org-ep:P30 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "Official family name"@en;
sh:maxCount 1;
sh:name "Official family name"@en;
sh:nodeKind sh:Literal;
sh:path euvoc:officialFamilyName .
org-ep:P31 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "Official given name in uppercase"@en;
sh:maxCount 1;
sh:name "Uppercase official given name"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:upperOfficialGivenName .
org-ep:P32 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "Official family name in uppercase"@en;
sh:maxCount 1;
sh:name "Uppercase official family name"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:upperOfficialFamilyName .
org-ep:P33 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:dateTime;
sh:description "To specify the birth date of the object"@en;
sh:maxCount 1;
sh:name "Birthday"@en;
sh:nodeKind sh:Literal;
sh:path vcard:bday .
org-ep:P34 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:dateTime;
sh:description "Date of death."@en;
sh:maxCount 1;
sh:name "Death date"@en;
sh:nodeKind sh:Literal;
sh:path epvoc:deathDate .
org-ep:P35 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class vcard:Gender;
sh:description "The gender of this Agent (typically but not necessarily 'male' or 'female')."@en;
sh:maxCount 1;
sh:name "Has gender"@en;
sh:nodeKind sh:IRI;
sh:path vcard:hasGender .
org-ep:P36 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class foaf:Image;
sh:description "An image that can be used to represent some thing (ie. those depictions which are particularly representative of something, eg. one's photo on a homepage)."@en;
sh:maxCount 1;
sh:name "Image"@en;
sh:nodeKind sh:IRI;
sh:path foaf:img .
org-ep:P37 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class euvoc:HonorificTitle;
sh:description "Used to support property parameters for the honorific prefix data property"@en;
sh:name "Has honorific prefix"@en;
sh:nodeKind sh:IRI;
sh:path vcard:hasHonorificPrefix .
org-ep:P38 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class euvoc:Country;
sh:description "The citizenship relationship links a Person to a Jurisdiction that has conferred citizenship rights on the individual such as the right to vote, to receive certain protection from the community or the issuance of a passport. Multiple citizenships are recorded as multiple instances of the citizenship relationship."@en;
sh:name "Citizenship"@en;
sh:nodeKind sh:IRI;
sh:path person:citizenship .
org-ep:P39 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "A person's place of birth."@en;
sh:maxCount 1;
sh:name "Place of birth"@en;
sh:nodeKind sh:Literal;
sh:path person:placeOfBirth .
org-ep:P40 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "To specify the electronic mail address for communication with the object"@en;
sh:name "Has email"@en;
sh:nodeKind sh:IRI;
sh:path vcard:hasEmail .
org-ep:P41 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class foaf:Document;
sh:description "A homepage for some thing."@en;
sh:name "Homepage"@en;
sh:nodeKind sh:IRI;
sh:path foaf:homepage .
org-ep:P42 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class foaf:OnlineAccount;
sh:description "Indicates an account held by this agent."@en;
sh:name "Account"@en;
sh:nodeKind sh:IRI;
sh:path foaf:account .
org-ep:P43 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class org:Membership;
sh:description "Indicates a membership relationship that the Agent plays. Inverse of `org:member`"@en;
sh:name "Has membership"@en;
sh:nodeKind sh:IRI;
sh:path org:hasMembership .
org-ep:P46 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:description "An unambiguous reference to the resource within a given context."@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "Membership id"@en;
sh:nodeKind sh:Literal;
sh:path dc:identifier .
org-ep:P47 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
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"@en;
sh:nodeKind sh:Literal;
sh:or _:node1g8tmdfl9x9255 .
_:node1g8tmdfl9x9255 rdf:first _:node1g8tmdfl9x9256 .
_:node1g8tmdfl9x9256 sh:datatype epvoc:codictFunctionId .
_:node1g8tmdfl9x9255 rdf:rest _:node1g8tmdfl9x9257 .
_:node1g8tmdfl9x9257 rdf:first _:node1g8tmdfl9x9258 .
_:node1g8tmdfl9x9258 sh:datatype epvoc:codictMandateId .
_:node1g8tmdfl9x9257 rdf:rest rdf:nil .
org-ep:P47 sh:path skos:notation .
org-ep:P48 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class dcterms:PeriodOfTime;
sh:description "property to indicate the interval for which the membership is/was valid."@en;
sh:maxCount 1;
sh:name "Member during"@en;
sh:nodeKind sh:IRI;
sh:path org:memberDuring .
org-ep:P49 a skos:Concept;
owl:versionInfo "v0.2";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class org:Organization;
sh:maxCount 1;
sh:name "Member during parliamentary term"@en;
sh:nodeKind sh:IRI;
sh:path epvoc:memberDuringParliamentaryTerm .
org-ep:P50 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class org:Role;
sh:description "Indicates the Role that the Agent plays in a Membership relationship with an Organization. Can also be used on a org:Post to indicate the role that any holder of the Post plays."@en;
sh:maxCount 1;
sh:name "Role"@en;
sh:nodeKind sh:IRI;
sh:path org:role .
org-ep:P51 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class org:Organization;
sh:description "Indicates the organization in which the Agent is a member."@en;
sh:maxCount 1;
sh:name "Organization"@en;
sh:nodeKind sh:IRI;
sh:path org:organization .
org-ep:P52 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class euvoc:Country;
sh:maxCount 1;
sh:name "Represents"@en;
sh:nodeKind sh:IRI;
sh:path euvoc:represents .
org-ep:P53 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class epvoc:ContactPoint;
sh:description "A contact point for a person, an organisation"@en;
sh:name "Contact point"@en;
sh:nodeKind sh:IRI;
sh:path dcat:contactPoint .
org-ep:P54 a skos:Concept;
owl:versionInfo "v0.3.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class euvoc:CorporateBodyClassification;
sh:description "Indicates a classification for memberships within some classification scheme, depending on implied org:Organization classification."@en;
sh:maxCount 1;
sh:name "Membership classification"@en;
sh:nodeKind sh:IRI;
sh:path epvoc:membershipClassification .
org-ep:P57 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:dateTime;
sh:description "The start of the period."@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "Start date"@en;
sh:nodeKind sh:Literal;
sh:path dcat:startDate .
org-ep:P58 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:dateTime;
sh:description "The end of the period."@en;
sh:maxCount 1;
sh:name "End date"@en;
sh:nodeKind sh:Literal;
sh:path dcat:endDate .
org-ep:P61 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype xsd:string;
sh:maxCount 1;
sh:name "Office address"@en;
sh:nodeKind sh:Literal;
sh:path euvoc:officeAddress .
org-ep:P62 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class org:Site;
sh:description "Indicates the site where a resource is located"@en;
sh:maxCount 1;
sh:name "Has site"@en;
sh:nodeKind sh:IRI;
sh:path epvoc:hasSite .
org-ep:P63 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "To specify the telephone number for telephony communication with the object"@en;
sh:name "Has telephone"@en;
sh:nodeKind sh:IRI;
sh:or _:node1g8tmdfl9x9259 .
_:node1g8tmdfl9x9259 rdf:first _:node1g8tmdfl9x9260 .
_:node1g8tmdfl9x9260 sh:node vcard:Voice .
_:node1g8tmdfl9x9259 rdf:rest _:node1g8tmdfl9x9261 .
_:node1g8tmdfl9x9261 rdf:first _:node1g8tmdfl9x9262 .
_:node1g8tmdfl9x9262 sh:node vcard:Fax .
_:node1g8tmdfl9x9261 rdf:rest rdf:nil .
org-ep:P63 sh:path vcard:hasTelephone .
org-ep:P66 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "Used to indicate the resource value of an object property that requires property parameters"@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "Has value"@en;
sh:nodeKind sh:IRI;
sh:path vcard:hasValue .
org-ep:P69 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "Used to indicate the resource value of an object property that requires property parameters"@en;
sh:maxCount 1;
sh:minCount 1;
sh:name "Has value"@en;
sh:nodeKind sh:IRI;
sh:path vcard:hasValue .
org-ep:P72 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "Property that is used to state that a resource is an instance of a class"@en;
sh:maxCount 1;
sh:name "Type"@en;
sh:nodeKind sh:IRI;
sh:path rdf:type .
org-ep:P75 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "Property that is used to state that a resource is an instance of a class"@en;
sh:maxCount 1;
sh:name "Type"@en;
sh:nodeKind sh:IRI;
sh:path rdf:type .
org-ep:P78 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:class euvoc:AddressType;
sh:description "Property that is used to state that a resource is an instance of a class"@en;
sh:maxCount 1;
sh:name "Type"@en;
sh:nodeKind sh:IRI;
sh:path dcterms:type .
org-ep:P81 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:datatype rdf:langString;
sh:description "Property stating the concept scheme that a given resource is part of"@en;
sh:name "Preferred label"@en;
sh:nodeKind sh:Literal;
sh:path skos:prefLabel .
org-ep:P84 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "Property stating the concept scheme that a given resource is part of"@en;
sh:name "Is in scheme"@en;
sh:nodeKind sh:IRI;
sh:path skos:inScheme .
org-ep:P85 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "Property that is used to state that a resource is an instance of a class"@en;
sh:hasValue skos:Concept;
sh:name "Type"@en;
sh:nodeKind sh:IRI;
sh:path rdf:type .
org-ep:P88 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "Property stating the concept scheme that a given resource is part of"@en;
sh:name "Is in scheme"@en;
sh:nodeKind sh:IRI;
sh:path skos:inScheme .
org-ep:P89 a skos:Concept;
owl:versionInfo "v0.3";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "Property that is used to state that a resource is an instance of a class"@en;
sh:hasValue skos:Concept;
sh:name "Type"@en;
sh:path rdf:type .
org-ep:P92 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "Property stating the concept scheme that a given resource is part of"@en;
sh:name "Is in scheme"@en;
sh:nodeKind sh:IRI;
sh:path skos:inScheme .
org-ep:P93 a skos:Concept;
owl:versionInfo "v0.1";
skos:inScheme <https://data.europarl.europa.eu/def/org-ep#>;
skos:topConceptOf <https://data.europarl.europa.eu/def/org-ep#>;
sh:description "Property that is used to state that a resource is an instance of a class"@en;
sh:hasValue skos:Concept;
sh:name "Type"@en;