-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
2539 lines (2301 loc) · 58.8 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>
<head>
<title>Citizenship Vocabulary v2.0</title>
<meta http-equiv='Content-Type' content='text/html;charset=utf-8'/>
<!--
=== NOTA BENE ===
For the three scripts below, if your spec resides on dev.w3 you can check them
out in the same tree and use relative links so that they'll work offline,
-->
<script src='https://www.w3.org/Tools/respec/respec-w3c' class='remove'></script>
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<script src="./common.js" class="remove"></script>
<script type="text/javascript" class="remove">
var respecConfig = {
// specification status (e.g., WD, LCWD, NOTE, etc.). If in doubt use ED.
specStatus: "CG-DRAFT",
// the specification's short name, as in http://www.w3.org/TR/short-name/
shortName: "citizenship-vocab",
// subtitle for the spec
subtitle: "A Linked Data vocabulary for expressing attributes related to citizenship",
// if you wish the publication date to be other than today, set this
//publishDate: "2019-03-26",
//crEnd: "2019-04-23",
//implementationReportURI: "https://w3c.github.io/",
previousMaturity: "UNOFFICIAL",
previousPublishDate: "2019-12-03",
// if there is a previously published draft, uncomment this and set its YYYY-MM-DD date
// and its maturity status
// previousPublishDate: "1977-03-15",
// previousMaturity: "WD",
// extend the bibliography entries
localBiblio: ccg.localBiblio,
doJsonLd: true,
group: "credentials",
github: "https://github.com/w3c-ccg/citizenship-vocab/",
includePermalinks: false,
// if there a publicly available Editor's Draft, this is the link
edDraftURI: "https://w3c-ccg.github.io/citizenship-vocab/",
// if this is a LCWD, uncomment and set the end of its review period
// lcEnd: "2009-08-05",
// editors, add as many as you like
// only "name" is required
editors: [{
name: "Manu Sporny",
url: "http://manu.sporny.org/",
company: "Digital Bazaar",
companyURL: "https://digitalbazaar.com/",
w3cid: 41758
}, {
name: "Mike Varley",
url: "https://www.linkedin.com/in/mavarley/",
company: "Secure Key",
companyURL: "https://securekey.com/"},
{
name: "Markus Sabadello",
url: "https://www.linkedin.com/in/markus-sabadello-353a0821",
company: "Danube Tech",
companyURL: "https://danubetech.com/",
w3cid: 46729
}],
// authors, add as many as you like.
// This is optional, uncomment if you have authors as well as editors.
// only "name" is required. Same format as editors.
authors:[{
name: "Dave Longley",
url: "https://github.com/dlongley",
company: "Digital Bazaar",
companyURL: "https://digitalbazaar.com/"
}, {
name: "Manu Sporny",
url: "http://manu.sporny.org/",
company: "Digital Bazaar",
companyURL: "https://digitalbazaar.com/",
w3cid: 41758
}],
// name of the WG
wg: "Credentials Community Group",
// URI of the public WG page
wgURI: "https://www.w3.org/community/credentials/",
// name (with the @w3c.org) of the public mailing to which comments are due
wgPublicList: "public-credentials",
// URI of the patent status for this WG, for Rec-track documents
// !!!! IMPORTANT !!!!
// This is important for Rec-track documents, do not copy a patent URI from a random
// document unless you know what you're doing. If in doubt ask your friendly neighborhood
// Team Contact.
//wgPatentURI: "https://www.w3.org/2004/01/pp-impl/98922/status",
maxTocLevel: 3,
inlineCSS: true
};
</script>
<style>
pre .highlight {
font-weight: bold;
color: green;
}
pre .comment {
font-weight: bold;
color: Gray;
}
.color-text {
font-weight: bold;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
table.vc-info th:nth-child(2), table.vc-info td:nth-child(2) {
text-align: right
}
</style>
</head>
<body>
<section id='abstract'>
<p>
This specification describes a Linked Data vocabulary for asserting Verifiable
Credentials related to residency and citizenship information, such as given
name, family name, country of citizenship, birthday, and other attributes used
to determine the citizenship status of a citizen.
</p>
</section>
<section id='sotd'>
<!--
<p>
Comments regarding all aspects of this document are welcome.
Please file issues
directly on <a href="https://github.com/digitalbazaar/citizenship-vocab/issues/">GitHub</a>,
or send them to
<a href="mailto:[email protected]">[email protected]</a>
(<a href="mailto:[email protected]?subject=subscribe">subscribe</a>,
<a href="https://lists.w3.org/Archives/Public/public-credentials/">archives</a>).
</p>
-->
</section>
<section class="informative">
<h2>Introduction</h2>
<p>
This specification describes a Linked Data vocabulary for asserting
Verifiable Credentials related to citizenship information, such as
given name, family name, country of citizenship, birthday, and other
attributes used to determine the citizenship status of a citizen.
</p>
<section class="informative">
<h3>Use Cases and Requirements</h3>
<p>
The following use cases outline a number of key scenarios that readers might
find useful:
</p>
<ul>
<li>
Permanent Resident Card
(<a href="#minimal-permanent-resident-card-example">minimal</a>)
(<a href="#full-permanent-resident-card-example">full</a>)
</li>
<li>
Employment Authorization Document
(<a href="#minimal-employment-authorization-document-example">minimal</a>)
(<a href="#full-employment-authorization-document-example">full</a>)
</li>
<li>
Certificate of Naturalization
(<a href="#minimal-certificate-of-naturalization-example">minimal</a>)
(<a href="#full-certificate-of-naturalization-example">full</a>)
</li>
<li>
Certificate of Citizenship
(<a href="#minimal-certificate-of-citizenship-example">minimal</a>)
(<a href="#full-certificate-of-citizenship-example">full</a>)
</li>
</ul>
</section>
<section class="informative">
<h3>Examples</h3>
<ul>
<li>
In all examples, optional country-specific term additions can be added to the
end of the `@context` array e.g., `https://example.gov/example/v1`.
</li>
<li>
The QR code image sizes can have slight variations due to the use of
non-deterministic ECDSA signatures and image compression.
</li>
</ul>
<!-- Permanent Resident Card -->
<section class="informative">
<h4>Minimal Permanent Resident Card Example</h4>
<pre class="example"
title="Minimal Permanent Resident Card VC"
data-include="examples/prc-min-signed.jsonld"></pre>
<aside class="example"
title="Minimal Permanent Resident Card QR Code"
data-include="examples/prc-min-qrcode.html"></aside>
<aside class="example"
title="Minimal Permanent Resident Card Information"
data-include="examples/prc-min-info.html"></aside>
</section>
<section class="informative">
<h4>Full Permanent Resident Card Example</h4>
<pre class="example"
title="Full Permanent Resident Card VC"
data-include="examples/prc-full-signed.jsonld"></pre>
<aside class="example"
title="Full Permanent Resident Card QR Code"
data-include="examples/prc-full-qrcode.html"></aside>
<aside class="example"
title="Full Permanent Resident Card Information"
data-include="examples/prc-full-info.html"></aside>
</section>
<!-- Employment Authorization Document -->
<section class="informative">
<h4>Minimal Employment Authorization Document Example</h4>
<pre class="example"
title="Employment Authorization Document VC"
data-include="examples/ead-min-signed.jsonld"></pre>
<aside class="example"
title="Employment Authorization Document QR Code"
data-include="examples/ead-min-qrcode.html"></aside>
<aside class="example"
title="Employment Authorization Document Information"
data-include="examples/ead-min-info.html"></aside>
</section>
<section class="informative">
<h4>Full Employment Authorization Document Example</h4>
<pre class="example"
title="Full Employment Authorization Document VC"
data-include="examples/ead-full-signed.jsonld"></pre>
<aside class="example"
title="Full Employment Authorization Document QR Code"
data-include="examples/ead-full-qrcode.html"></aside>
<aside class="example"
title="Full Employment Authorization Document Information"
data-include="examples/ead-full-info.html"></aside>
</section>
<!-- Certificate of Naturalization -->
<section class="informative">
<h4>Minimal Certificate of Naturalization Example</h4>
<pre class="example"
title="Minimal Certificate of Naturalization VC"
data-include="examples/naturalization-min-signed.jsonld"></pre>
<aside class="example"
title="Minimal Certificate of Naturalization QR Code"
data-include="examples/naturalization-min-qrcode.html"></aside>
<aside class="example"
title="Minimal Certificate of Naturalization Information"
data-include="examples/naturalization-min-info.html"></aside>
</section>
<section class="informative">
<h4>Full Certificate of Naturalization Example</h4>
<pre class="example"
title="Full Certificate of Naturalization VC"
data-include="examples/naturalization-full-signed.jsonld"></pre>
<aside class="example"
title="Full Certificate of Naturalization QR Code"
data-include="examples/naturalization-full-qrcode.html"></aside>
<aside class="example"
title="Full Certificate of Naturalization Information"
data-include="examples/naturalization-full-info.html"></aside>
</section>
<!-- Certificate of Citizenship -->
<section class="informative">
<h4>Minimal Certificate of Citizenship Example</h4>
<pre class="example"
title="Minimal Certificate of Citizenship VC"
data-include="examples/citizenship-min-signed.jsonld"></pre>
<aside class="example"
title="Minimal Certificate of Citizenship QR Code"
data-include="examples/citizenship-min-qrcode.html"></aside>
<aside class="example"
title="Minimal Certificate of Citizenship Information"
data-include="examples/citizenship-min-info.html"></aside>
</section>
<section class="informative">
<h4>Full Certificate of Citizenship Example</h4>
<pre class="example"
title="Full Certificate of Citizenship VC"
data-include="examples/citizenship-full-signed.jsonld"></pre>
<aside class="example"
title="Full Certificate of Citizenship QR Code"
data-include="examples/citizenship-full-qrcode.html"></aside>
<aside class="example"
title="Full Certificate of Citizenship Information"
data-include="examples/citizenship-full-info.html"></aside>
</section>
</section>
</section>
<section class="informative">
<h2>Terminology</h2>
<div data-include="./terms.html"
data-oninclude="restrictReferences">
</div>
</section>
<section class="normative">
<h2>The Citizenship Vocabulary</h2>
<p>
This vocabulary assumes all classes and terms specified in the base Verifiable
Credentials [[VC-DATA-MODEL]] context.
</p>
<h3>Classes</h3>
<p>
The following classes are available for specifying information related to
residency, employment, and citizenship status.
</p>
<table class="simple">
<thead>
<tr>
<th>Class</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="#QuantitativeValue">QuantitativeValue</a>
</td>
<td>
A point value or interval for product characteristics and other purposes. Used
with `height`.
</td>
</tr>
<tr>
<td>
<a href="#PostalAddress">PostalAddress</a>
</td>
<td>
A mailing address.
</td>
</tr>
<tr>
<td>
<a href="#Person">Person</a>
</td>
<td>
Specifies that the subject of the credential is a person.
</td>
</tr>
<tr>
<td>
<a href="#PermanentResident">PermanentResident</a>
</td>
<td>
Specifies that the subject of the credential is a permanent resident.
</td>
</tr>
<tr>
<td>
<a href="#PermanentResidentCard">PermanentResidentCard</a>
</td>
<td>
Specifies that the object is a Permanent Resident Card.
</td>
</tr>
<tr>
<td>
<a href="#PermanentResidentCardCredential">PermanentResidentCardCredential</a>
</td>
<td>
Specifies that the credential is a permanent resident card credential.
</td>
</tr>
<tr>
<td>
<a href="#EmployablePerson">EmployablePerson</a>
</td>
<td>
Specifies that the subject of the credential is authorized for employment.
</td>
</tr>
<tr>
<td>
<a href="#EmploymentAuthorizationDocument">EmploymentAuthorizationDocument</a>
</td>
<td>
Specifies that the object is a Employment Authorization Document.
</td>
</tr>
<tr>
<td>
<a href="#EmploymentAuthorizationDocumentCredential">EmploymentAuthorizationDocumentCredential</a>
</td>
<td>
Specifies that the credential is a Employment Authorization Document credential.
</td>
</tr>
<tr>
<td>
<a href="#NaturalizedPerson">NaturalizedPerson</a>
</td>
<td>
Specifies that the subject of the credential is a naturalized person.
</td>
</tr>
<tr>
<td>
<a href="#CertificateOfNaturalization">CertificateOfNaturalization</a>
</td>
<td>
Specifies that the object is a Certificate of Naturalization.
</td>
</tr>
<tr>
<td>
<a href="#CertificateOfNaturalizationCredential">CertificateOfNaturalizationCredential</a>
</td>
<td>
Specifies that the credential is a Certificate of Naturalization credential.
</td>
</tr>
<tr>
<td>
<a href="#Citizen">Citizen</a>
</td>
<td>
Specifies that the subject of the credential is a citizen.
</td>
</tr>
<tr>
<td>
<a href="#CertificateOfCitizenship">CertificateOfCitizenship</a>
</td>
<td>
Specifies that the object is a Certificate of Citizenship.
</td>
</tr>
<tr>
<td>
<a href="#CertificateOfCitizenshipCredential">CertificateOfCitizenshipCredential</a>
</td>
<td>
Specifies that the credential is a Certificate of Citizenship credential.
</td>
</tr>
</tbody>
</table>
<h3>Terms</h3>
<p>
This document also specifies the following terms for expressing residency,
employment, and citizenship status:
</p>
<table class="simple">
<thead>
<tr>
<th>Term</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="#additionalName">additionalName</a>
</td>
<td>
An additional name for a Person, can be used for a middle name.
</td>
</tr>
<tr>
<td>
<a href="#addressCountry">addressCountry</a>
</td>
<td>
The country code provided as a two-letter ISO 3166-1 alpha-2 country code.
</td>
</tr>
<tr>
<td>
<a href="#addressLocality">addressLocality</a>
</td>
<td>
The locality of within an `addressRegion`.
</td>
</tr>
<tr>
<td>
<a href="#addressRegion">addressRegion</a>
</td>
<td>
The region within an `addressCountry`.
</td>
</tr>
<tr>
<td>
<a href="#birthCountry">birthCountry</a>
</td>
<td>
The country in which a individual was born.
</td>
</tr>
<tr>
<td>
<a href="#birthDate">birthDate</a>
</td>
<td>
The date on which a individual was born.
</td>
</tr>
<tr>
<td>
<a href="#certificateOfNaturalization">certificateOfNaturalization</a>
</td>
<td>
The `CertificateOfNaturalization` of the Person.
</td>
</tr>
<tr>
<td>
<a href="#certificateOfCitizenship">certificateOfCitizenship</a>
</td>
<td>
The `CertificateOfCitizenship` of the Person.
</td>
</tr>
<tr>
<td>
<a href="#cisRegistrationNumber">cisRegistrationNumber</a>
</td>
<td>
The registration identifier which is used to identify the citizen by
the country's official body for making such a determination.
</td>
</tr>
<tr>
<td>
<a href="#commuterClassification">commuterClassification</a>
</td>
<td>
A code that specifies whether an individual lives in a specific country or
commutes across a border to work.
</td>
</tr>
<tr>
<td>
<a href="#employmentAuthorizationDocument">employmentAuthorizationDocument</a>
</td>
<td>
The EmploymentAuthorizationDocument of the Person.
</td>
</tr>
<tr>
<td>
<a href="#familyName">familyName</a>
</td>
<td>
The name of the family with which the individual identifies.
</td>
</tr>
<tr>
<td>
<a href="#filingLocation">filingLocation</a>
</td>
<td>
The `PostalAddress` where paperwork was filled.
</td>
</tr>
<tr>
<td>
<a href="#formerNationality">formerNationality</a>
</td>
<td>
The Person's country of former nationality presented as a two-letter ISO 3166-1
alpha-2 country code.
</td>
</tr>
<tr>
<td>
<a href="#gender">gender</a>
</td>
<td>
The gender of the individual.
</td>
</tr>
<tr>
<td>
<a href="#givenName">givenName</a>
</td>
<td>
The non-family name with which the individual identifies.
</td>
</tr>
<tr>
<td>
<a href="#height">height</a>
</td>
<td>
The height of the item.
</td>
</tr>
<tr>
<td>
<a href="#image">image</a>
</td>
<td>
A representative image of the individual.
</td>
</tr>
<tr>
<td>
<a href="#insRegistrationNumber">insRegistrationNumber</a>
</td>
<td>
The registration identifier which is used to identify the naturalized person by
the country's official body for making such a determination.
</td>
</tr>
<tr>
<td>
<a href="#lprCategory">lprCategory</a>
</td>
<td>
The category for a legal permanent resident as specified by the country's
official body for making such a determination.
</td>
</tr>
<tr>
<td>
<a href="#lprNumber">lprNumber</a>
</td>
<td>
The identifier which is used to identify the legal permanent resident by the
country's official body for making such a determination.
</td>
</tr>
<tr>
<td>
<a href="#maritalStatus">maritalStatus</a>
</td>
<td>
The current marital relationship status of the Person. Example: married,
single, divorced, widowed, previously married, etc.
</td>
</tr>
<tr>
<td>
<a href="#marriageCertificateNumber">marriageCertificateNumber</a>
</td>
<td>
Certificate of Marriage identification number.
</td>
</tr>
<tr>
<td>
<a href="#marriageLocation">marriageLocation</a>
</td>
<td>
The `PostalAddress` of the previously performed marriage ceremony.
</td>
</tr>
<tr>
<td>
<a href="#naturalizationLocation">naturalizationLocation</a>
</td>
<td>
The `PostalAddress` where naturalization occurred.
</td>
</tr>
<tr>
<td>
<a href="#naturalizedBy">naturalizedBy</a>
</td>
<td>
The entity that performed the naturalization.
</td>
</tr>
<tr>
<td>
<a href="#permanentResidentCard">permanentResidentCard</a>
</td>
<td>
The permanent resident card of the Person.
</td>
</tr>
<tr>
<td>
<a href="#residence">residence</a>
</td>
<td>
The `PostalAddress` in which the `Person` currently resides.
</td>
</tr>
<tr>
<td>
<a href="#residentSince">residentSince</a>
</td>
<td>
The date from which the individual is considered a resident.
</td>
</tr>
<tr>
<td>
<a href="#unitCode">unitCode</a>
</td>
<td>
The unit of measurement given using the UN/CEFACT Common Code (3 characters) or
a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix
followed by a colon. Used with `height`.
</td>
</tr>
<tr>
<td>
<a href="#value">value</a>
</td>
<td>
The value of a `QuantitativeValue`. Used with `height`.
</td>
</tr>
</tbody>
</table>
<section class="normative">
<h3 id="additionalName">additionalName</h3>
<p>
An additional name for a Person, can be used for a middle name.
</p>
<table class="simple">
<tbody>
<tr>
<td>
Term
</td>
<td>
additionalName
</td>
</tr>
<tr>
<td>
URL
</td>
<td>
https://schema.org/additionalName
</td>
</tr>
<tr>
<td>
Expected Value
</td>
<td>
string
</td>
</tr>
</tbody>
</table>
</section>
<section class="normative">
<h3 id="addressCountry">addressCountry</h3>
<p>
The country code provided as a two-letter ISO 3166-1 alpha-2 country code.
</p>
<table class="simple">
<tbody>
<tr>
<td>
Term
</td>
<td>
addressCountry
</td>
</tr>
<tr>
<td>
URL
</td>
<td>
https://schema.org/addressCountry
</td>
</tr>
<tr>
<td>
Expected Value
</td>
<td>
string
</td>
</tr>
</tbody>
</table>
</section>
<section class="normative">
<h3 id="addressLocality">addressLocality</h3>
<p>
The locality of within an `addressRegion`.
</p>
<table class="simple">
<tbody>
<tr>
<td>
Term
</td>
<td>
addressLocality
</td>
</tr>
<tr>
<td>
URL
</td>
<td>
https://schema.org/addressLocality
</td>
</tr>
<tr>
<td>
Expected Value
</td>
<td>
string
</td>
</tr>
</tbody>
</table>
</section>
<section class="normative">
<h3 id="addressRegion">addressRegion</h3>
<p>
The region within an `addressCountry`.
</p>
<table class="simple">
<tbody>
<tr>
<td>
Term
</td>
<td>
addressRegion
</td>
</tr>
<tr>
<td>
URL
</td>
<td>
https://schema.org/addressRegion
</td>
</tr>
<tr>
<td>
Expected Value
</td>
<td>
string
</td>
</tr>
</tbody>
</table>
</section>
<section class="normative">
<h3 id="birthCountry">birthCountry</h3>
<p>
The country in which a individual was born.
</p>
<table class="simple">
<tbody>
<tr>
<td>
Term
</td>
<td>
birthCountry
</td>
</tr>
<tr>
<td>
URL
</td>
<td>
https://schema.org/birthCountry
</td>
</tr>
<tr>
<td>
Expected Value
</td>
<td>
string
</td>
</tr>
</tbody>
</table>
</section>
<section class="normative">
<h3 id="birthDate">birthDate</h3>
<p>
The date on which a individual was born.
</p>
<table class="simple">
<tbody>
<tr>
<td>
Term
</td>
<td>
birthDate
</td>
</tr>
<tr>
<td>
URL
</td>
<td>
https://schema.org/birthDate
</td>
</tr>
<tr>
<td>
Expected Value
</td>
<td>
Datetime
</td>
</tr>
</tbody>
</table>