-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1590 lines (1552 loc) · 86.2 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;}
.sp_list_toc_l3 {padding-left: 8px;}
</style>
<meta charset="UTF-8">
<meta name="lang" content="en">
<meta property="og:locale" content="en">
<title>ORG-EP Application Profile</title>
<meta name="apple-mobile-web-app-title" content="ORG-EP Application Profile">
<meta name="twitter:title" content="ORG-EP Application Profile">
<meta property="og:title" content="ORG-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">ORG-EP Application Profile</h1>
</td>
</tr>
</table>
<div><b>Creation date: </b>2021-11-18<br><b>Last updated: </b>2024-03-06 00:00:00<br><b>Copyright date: </b>2022<br><b>Version: </b>2.1.0<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="https://publications.europa.eu/resource/authority/corporate-body/EP" target="_blank">https://publications.europa.eu/resource/authority/corporate-body/EP</a><br><b>Publisher: </b><a href="https://publications.europa.eu/resource/authority/corporate-body/EP" target="_blank">https://publications.europa.eu/resource/authority/corporate-body/EP</a><br><b>Rightsholder: </b><br><b>Feedback: </b><br><b id="formats">Download serialization: </b><div><span class="sp_serialization_badge"><a href="https://europarl.github.io/org-ep/2.1.0/org-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="#org:Organization">Organization</a></li>
<li><a href="#foaf:Person">Person</a></li>
<li><a href="#org:Membership">Membership</a></li>
<li><a href="#vcard:Voice">Voice</a></li>
<li><a href="#vcard:Fax">Fax</a></li>
<li><a href="#dcterms:PeriodOfTime">Period of time</a></li>
<li><a href="#ept:epvoc#ContactPoint">Contact point</a></li>
<li><a href="#eli-dl:ParliamentaryTerm">Parliamentary term</a></li>
<li><a href="#foaf:OnlineAccount">Online account</a></li>
<li><a href="#skos:Concept">Concept</a></li>
<li><a href="#rdfs:Resource">Resource</a></li>
<li><a href="#foaf:Document">Document</a></li>
<li><a href="#foaf:Image">Image</a></li>
<li><a href="#org:Site">Site</a></li>
<li><a href="#org:Role">Role</a></li>
<li><a href="#euvoc:HonorificTitle">Honorific title</a></li>
<li><a href="#euvoc:Country">Country</a></li>
<li><a href="#vcard:Gender">Gender</a></li>
<li><a href="#euvoc:CorporateBodyClassification">Corporate body classification</a></li>
<li><a href="#euvoc:AddressType">Address type</a></li>
</ul>
</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>ept</td>
<td><a href="https://data.europarl.europa.eu/def/" target="_blank">https://data.europarl.europa.eu/def/</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>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>person</td>
<td><a href="http://www.w3.org/ns/person#" target="_blank">http://www.w3.org/ns/person#</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">
<br>
<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="org-ep.svg" target="_blank"><img alt="Diagram" src="org-ep.svg" width="110%"/></a>
<figcaption>ORG-EP diagram</figcaption>
</figure>
</div>
</div><br><div>
<h2 id="description" class="sp_section_subtitle">Description</h2><p>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.).</p>
</div>
<h2 id="documentation" class="sp_section_subtitle">Model documentation</h2>
<div class="row mt-3">
<div class="col">
<section id="org:Organization">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Organization</h3><code class="sp_section_uri">http://www.w3.org/ns/org#Organization</code></div>
<p><em>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.</em></p>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>^https://data.europarl.europa.eu/org/.*$</code></li>
<li>Example: <code>https://data.europarl.europa.eu/org/1234</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 label</td>
<td><code><a href="http://www.w3.org/2004/02/skos/core#altLabel">skos:altLabel</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 lexical label for a given resource.</td>
</tr>
<tr>
<td>Classification</td>
<td><code><a href="http://www.w3.org/ns/org#classification">org:classification</a></code></td>
<td><code><a href="#euvoc:CorporateBodyClassification">Corporate body classification</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>Has suborganization</td>
<td><code><a href="http://www.w3.org/ns/org#hasSubOrganization">org:hasSubOrganization</a></code></td>
<td><code><a href="#org:Organization">Organization</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_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`.</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 within a given context.</td>
</tr>
<tr>
<td>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..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">The property may be used to provide a human-readable version of a resource's name.</td>
</tr>
<tr>
<td>Linked to</td>
<td><code><a href="http://www.w3.org/ns/org#linkedTo">org:linkedTo</a></code></td>
<td><code><a href="#org:Organization">Organization</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates an arbitrary relationship between two organizations.</td>
</tr>
<tr>
<td>Notation</td>
<td><code><a href="http://www.w3.org/2004/02/skos/core#notation">skos:notation</a></code></td>
<td><code>ept:epvoc#codictBodyId</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>Preferred label</td>
<td><code><a href="http://www.w3.org/2004/02/skos/core#prefLabel">skos:prefLabel</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">A preferred lexical label for a given resource.</td>
</tr>
<tr>
<td>Represents</td>
<td><code><a href="http://publications.europa.eu/ontology/euvoc#represents">euvoc:represents</a></code></td>
<td><code><a href="#euvoc:Country">Country</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property idicates an entoty representig another. Usually refers to Countries
and/or Organizations.</td>
</tr>
<tr>
<td>Source</td>
<td><code><a href="http://purl.org/dc/terms/source">dcterms:source</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 related source from which the described resource is derived.</td>
</tr>
<tr>
<td>Temporal</td>
<td><code><a href="http://purl.org/dc/terms/temporal">dcterms:temporal</a></code></td>
<td><code><a href="#dcterms:PeriodOfTime">Period of time</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Temporal characteristics of the resource.</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="#org:Organization">Organization</a></code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description"></td>
</tr>
<tr>
<td>is version of</td>
<td><code><a href="http://purl.org/dc/terms/isVersionOf">dcterms:isVersionOf</a></code></td>
<td><code><a href="#org:Organization">Organization</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description"></td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="foaf:Person">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Person</h3><code class="sp_section_uri">http://xmlns.com/foaf/0.1/Person</code></div>
<p><em>The foaf:Person class represents people.</em></p>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>^https://data.europarl.europa.eu/person/[0-9]*?$</code></li>
<li>Example: <code>https://data.europarl.europa.eu/person/124936</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>Account</td>
<td><code><a href="http://xmlns.com/foaf/0.1/account">foaf:account</a></code></td>
<td><code><a href="#foaf:OnlineAccount">Online account</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates an account held by this agent.</td>
</tr>
<tr>
<td>Birthday</td>
<td><code><a href="http://www.w3.org/2006/vcard/ns#bday">vcard:bday</a></code></td>
<td><code>xsd:date</code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">To specify the birth date of the object</td>
</tr>
<tr>
<td>Citizenship</td>
<td><code><a href="http://www.w3.org/ns/person#citizenship">person:citizenship</a></code></td>
<td><code><a href="#euvoc:Country">Country</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
<tr>
<td>Death date</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#deathDate">ept:epvoc#deathDate</a></code></td>
<td><code>xsd:date</code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Date of death.</td>
</tr>
<tr>
<td>Family name</td>
<td><code><a href="http://xmlns.com/foaf/0.1/familyName">foaf:familyName</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">The family name of some person.</td>
</tr>
<tr>
<td>Given name</td>
<td><code><a href="http://xmlns.com/foaf/0.1/givenName">foaf:givenName</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">The given name of some person.</td>
</tr>
<tr>
<td>Has email</td>
<td><code><a href="http://www.w3.org/2006/vcard/ns#hasEmail">vcard:hasEmail</a></code></td>
<td><code>IRI</code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">To specify the electronic mail address for communication with the object</td>
</tr>
<tr>
<td>Has gender</td>
<td><code><a href="http://www.w3.org/2006/vcard/ns#hasGender">vcard:hasGender</a></code></td>
<td><code><a href="#vcard:Gender">Gender</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">The gender of this Agent (typically but not necessarily 'male' or 'female').</td>
</tr>
<tr>
<td>Has honorific prefix</td>
<td><code><a href="http://www.w3.org/2006/vcard/ns#hasHonorificPrefix">vcard:hasHonorificPrefix</a></code></td>
<td><code><a href="#euvoc:HonorificTitle">Honorific title</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Used to support property parameters for the honorific prefix data property</td>
</tr>
<tr>
<td>Has membership</td>
<td><code><a href="http://www.w3.org/ns/org#hasMembership">org:hasMembership</a></code></td>
<td><code><a href="#org:Membership">Membership</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates a membership relationship that the Agent plays. Inverse of `org:member`</td>
</tr>
<tr>
<td>Homepage</td>
<td><code><a href="http://xmlns.com/foaf/0.1/homepage">foaf:homepage</a></code></td>
<td><code><a href="#foaf:Document">Document</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">A homepage for some thing.</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 within a given context.</td>
</tr>
<tr>
<td>Image</td>
<td><code><a href="http://xmlns.com/foaf/0.1/img">foaf:img</a></code></td>
<td><code><a href="#foaf:Image">Image</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_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).</td>
</tr>
<tr>
<td>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..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">The property may be used to provide a human-readable version of a resource's name.</td>
</tr>
<tr>
<td>Notation</td>
<td><code><a href="http://www.w3.org/2004/02/skos/core#notation">skos:notation</a></code></td>
<td><code>ept:epvoc#codictPersonId</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>Official family name</td>
<td><code><a href="http://publications.europa.eu/ontology/euvoc#officialFamilyName">euvoc:officialFamilyName</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">Official family name</td>
</tr>
<tr>
<td>Official given name</td>
<td><code><a href="http://publications.europa.eu/ontology/euvoc#officialGivenName">euvoc:officialGivenName</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">Official given name</td>
</tr>
<tr>
<td>Place of birth</td>
<td><code><a href="http://www.w3.org/ns/person#placeOfBirth">person:placeOfBirth</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 person's place of birth.</td>
</tr>
<tr>
<td>Sort label</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#sortLabel">ept:epvoc#sortLabel</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 identifies the part of the family name of the Person used in sorting.</td>
</tr>
<tr>
<td>Upper family name</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#upperFamilyName">ept:epvoc#upperFamilyName</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">Family name in uppercase</td>
</tr>
<tr>
<td>Upper given name</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#upperGivenName">ept:epvoc#upperGivenName</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">Given name in uppercase</td>
</tr>
<tr>
<td>Uppercase official family name</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#upperOfficialFamilyName">ept:epvoc#upperOfficialFamilyName</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">Official family name in uppercase</td>
</tr>
<tr>
<td>Uppercase official given name</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#upperOfficialGivenName">ept:epvoc#upperOfficialGivenName</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">Official given name in uppercase</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="org:Membership">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Membership</h3><code class="sp_section_uri">http://www.w3.org/ns/org#Membership</code></div>
<p><em>Indicates the nature of an Agent's membership of an organization.</em></p>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>^https://data.europarl.europa.eu/membership/.*$</code></li>
<li>Example: <code>https://data.europarl.europa.eu/membership/12345-m-999900001</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>Contact point</td>
<td><code><a href="http://www.w3.org/ns/dcat#contactPoint">dcat:contactPoint</a></code></td>
<td><code><a href="#ept:epvoc#ContactPoint">Contact point</a></code><br></td>
<td>
<div style="width:30px">0..*</div>
</td>
<td class="sp_table_propertyshapes_col_description">A contact point for a person, an organisation</td>
</tr>
<tr>
<td>Member during</td>
<td><code><a href="http://www.w3.org/ns/org#memberDuring">org:memberDuring</a></code></td>
<td><code><a href="#dcterms:PeriodOfTime">Period of time</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">property to indicate the interval for which the membership is/was valid.</td>
</tr>
<tr>
<td>Member during parliamentary term</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#memberDuringParliamentaryTerm">ept:epvoc#memberDuringParliamentaryTerm</a></code></td>
<td><code><a href="#org:Organization">Organization</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property identifies the parliamentary term during which a person was a Member
of the European Parliament.</td>
</tr>
<tr>
<td>Membership classification</td>
<td><code><a href="https://data.europarl.europa.eu/def/epvoc#membershipClassification">ept:epvoc#membershipClassification</a></code></td>
<td><code><a href="#euvoc:CorporateBodyClassification">Corporate body classification</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates a classification for memberships within some classification scheme, depending
on implied org:Organization classification.</td>
</tr>
<tr>
<td>Membership id</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 within a given context.</td>
</tr>
<tr>
<td>Notation</td>
<td><code><a href="http://www.w3.org/2004/02/skos/core#notation">skos:notation</a></code></td>
<td><code><a href="#ept:epvoc#codictFunctionId">ept:epvoc#codictFunctionId</a></code><code> or </code><code><a href="#ept:epvoc#codictMandateId">ept:epvoc#codictMandateId</a></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>Organization</td>
<td><code><a href="http://www.w3.org/ns/org#organization">org:organization</a></code></td>
<td><code><a href="#org:Organization">Organization</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Indicates the organization in which the Agent is a member.</td>
</tr>
<tr>
<td>Represents</td>
<td><code><a href="http://publications.europa.eu/ontology/euvoc#represents">euvoc:represents</a></code></td>
<td><code><a href="#euvoc:Country">Country</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">This property idicates an entoty representig another. Usually refers to Countries
and/or Organizations.</td>
</tr>
<tr>
<td>Role</td>
<td><code><a href="http://www.w3.org/ns/org#role">org:role</a></code></td>
<td><code><a href="#org:Role">Role</a></code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_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.</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="vcard:Voice">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Voice</h3><code class="sp_section_uri">http://www.w3.org/2006/vcard/ns#Voice</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/tel/[0-9]*$</code></li>
<li>Example: <code>https://data.europarl.europa.eu/tel/33388175139</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>Has value</td>
<td><code><a href="http://www.w3.org/2006/vcard/ns#hasValue">vcard:hasValue</a></code></td>
<td><code>IRI</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Used to indicate the resource value of an object property that requires property parameters</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="vcard:Fax">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Fax</h3><code class="sp_section_uri">http://www.w3.org/2006/vcard/ns#Fax</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/tel/[0-9]*$</code></li>
<li>Example: <code>https://data.europarl.europa.eu/tel/33388175139</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>Has value</td>
<td><code><a href="http://www.w3.org/2006/vcard/ns#hasValue">vcard:hasValue</a></code></td>
<td><code>IRI</code><br></td>
<td>
<div style="width:30px">1..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">Used to indicate the resource value of an object property that requires property parameters</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="dcterms:PeriodOfTime">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Period of time</h3><code class="sp_section_uri">http://purl.org/dc/terms/PeriodOfTime</code></div>
<p><em>An interval of time that is named or defined by its start and end dates.</em></p>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>^https://data.europarl.europa.eu/time-period/.*$</code></li>
<li>Example: <code>https://data.europarl.europa.eu/time-period/pt_9</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>End date</td>
<td><code><a href="http://www.w3.org/ns/dcat#endDate">dcat:endDate</a></code></td>
<td><code>xsd:date</code><br></td>
<td>
<div style="width:30px">0..1</div>
</td>
<td class="sp_table_propertyshapes_col_description">The end of the period.</td>
</tr>
<tr>
<td>Start date</td>
<td><code><a href="http://www.w3.org/ns/dcat#startDate">dcat:startDate</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">The start of the period.</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><br><div class="row mt-3">
<div class="col">
<section id="ept:epvoc#ContactPoint">
<div class="sp_section_title_table_wrapper">
<h3 class="sp_section_title_table">Contact point</h3><code class="sp_section_uri">https://data.europarl.europa.eu/def/epvoc#ContactPoint</code></div>
<p><em>A contact point for a person, an organisation</em></p>
<ul class="sp_list_description_properties">
<li>Nodes: IRI</li>
<li>Closed shape</li>
<li>URI pattern: <code>^https://data.europarl.europa.eu/contact-point/.*$</code></li>
<li>Example: <code>https://data.europarl.europa.eu/contact-point/58766-m-16341-M05047</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>