-
Notifications
You must be signed in to change notification settings - Fork 0
/
Birth-context.json
53 lines (53 loc) · 1.97 KB
/
Birth-context.json
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
{
"id": "@id",
"schema": "https://schema.org/",
"@version": 1.1,
"@protected": true,
"CitizenshipCredential": {
"@id": "@id",
"@context": {
"id": "@id",
"@version": 1.1,
"@protected": true
}
},
"child": {
"@id": "schema:child",
"@type": "@id",
"@context": {
"id": "@id",
"full_name": "schema:name",
"dob": "schema:birthDate",
"sex": "schema:gender",
"place_of_birth": "schema:birthPlace",
"nationality": "schema:nationality"
}
},
"mother": {
"@id": "schema:mother",
"@context": {
"id": "@id",
"full_name": "schema:name",
"dob": "schema:birthDate",
"nationality": "schema:nationality"
}
},
"father": {
"@id": "schema:father",
"@context": {
"id": "@id",
"full_name": "schema:name",
"dob": "schema:birthDate",
"nationality": "schema:nationality"
}
},
"registration": {
"@id": "schema:registration",
"@context": {
"id": "@id",
"registration_number": "schema:identifier",
"date_of_registration": "schema:startDate",
"date_of_issuance": "schema:startDate"
}
}
}