Skip to content

Commit

Permalink
Improved the vc schema of the identity
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzoronzani committed Apr 2, 2024
1 parent 0517d1d commit f6e88ce
Show file tree
Hide file tree
Showing 3 changed files with 210 additions and 8 deletions.
208 changes: 205 additions & 3 deletions identity/jsonschema.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,216 @@
"type": "string"
},
"gender": {
"type": "string"
"type": "string",
"enum": [
"Male",
"Female",
"Other"
]
},
"birthDate": {
"type": "string",
"format": "date-time"
"format": "date"
},
"nationality": {
"type": "string"
"type": "string",
"enum": [
"Afghanistan",
"Albania",
"Algeria",
"Andorra",
"Angola",
"Antigua and Barbuda",
"Argentina",
"Armenia",
"Australia",
"Austria",
"Azerbaijan",
"Bahamas",
"Bahrain",
"Bangladesh",
"Barbados",
"Belarus",
"Belgium",
"Belize",
"Benin",
"Bhutan",
"Bolivia",
"Bosnia and Herzegovina",
"Botswana",
"Brazil",
"Brunei",
"Bulgaria",
"Burkina Faso",
"Burundi",
"Côte d'Ivoire",
"Cabo Verde",
"Cambodia",
"Cameroon",
"Canada",
"Central African Republic",
"Chad",
"Chile",
"China",
"Colombia",
"Comoros",
"Congo (Congo-Brazzaville)",
"Costa Rica",
"Croatia",
"Cuba",
"Cyprus",
"Czechia (Czech Republic)",
"Democratic Republic of the Congo",
"Denmark",
"Djibouti",
"Dominica",
"Dominican Republic",
"Ecuador",
"Egypt",
"El Salvador",
"Equatorial Guinea",
"Eritrea",
"Estonia",
"\"Eswatini (fmr. \"\"Swaziland\"\")\"",
"Ethiopia",
"Fiji",
"Finland",
"France",
"Gabon",
"Gambia",
"Georgia",
"Germany",
"Ghana",
"Greece",
"Grenada",
"Guatemala",
"Guinea",
"Guinea-Bissau",
"Guyana",
"Haiti",
"Holy See",
"Honduras",
"Hungary",
"Iceland",
"India",
"Indonesia",
"Iran",
"Iraq",
"Ireland",
"Israel",
"Italy",
"Jamaica",
"Japan",
"Jordan",
"Kazakhstan",
"Kenya",
"Kiribati",
"Kuwait",
"Kyrgyzstan",
"Laos",
"Latvia",
"Lebanon",
"Lesotho",
"Liberia",
"Libya",
"Liechtenstein",
"Lithuania",
"Luxembourg",
"Madagascar",
"Malawi",
"Malaysia",
"Maldives",
"Mali",
"Malta",
"Marshall Islands",
"Mauritania",
"Mauritius",
"Mexico",
"Micronesia",
"Moldova",
"Monaco",
"Mongolia",
"Montenegro",
"Morocco",
"Mozambique",
"Myanmar (formerly Burma)",
"Namibia",
"Nauru",
"Nepal",
"Netherlands",
"New Zealand",
"Nicaragua",
"Niger",
"Nigeria",
"North Korea",
"North Macedonia",
"Norway",
"Oman",
"Pakistan",
"Palau",
"Palestine State",
"Panama",
"Papua New Guinea",
"Paraguay",
"Peru",
"Philippines",
"Poland",
"Portugal",
"Qatar",
"Romania",
"Russia",
"Rwanda",
"Saint Kitts and Nevis",
"Saint Lucia",
"Saint Vincent and the Grenadines",
"Samoa",
"San Marino",
"Sao Tome and Principe",
"Saudi Arabia",
"Senegal",
"Serbia",
"Seychelles",
"Sierra Leone",
"Singapore",
"Slovakia",
"Slovenia",
"Solomon Islands",
"Somalia",
"South Africa",
"South Korea",
"South Sudan",
"Spain",
"Sri Lanka",
"Sudan",
"Suriname",
"Sweden",
"Switzerland",
"Syria",
"Tajikistan",
"Tanzania",
"Thailand",
"Timor-Leste",
"Togo",
"Tonga",
"Trinidad and Tobago",
"Tunisia",
"Turkey",
"Turkmenistan",
"Tuvalu",
"Uganda",
"Ukraine",
"United Arab Emirates",
"United Kingdom",
"United States of America",
"Uruguay",
"Uzbekistan",
"Vanuatu",
"Venezuela",
"Vietnam",
"Yemen",
"Zambia",
"Zimbabwe"
]
},
"image": {
"type": "string"
Expand Down
4 changes: 2 additions & 2 deletions identity/vc-example.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"identityNumber": "ab123cd456",
"name": "Mario",
"surname": "Tanuki",
"gender": "Fluid",
"gender": "Male",
"birthDate": "02/04/2024",
"nationality": "Swiss",
"nationality": "Switzerland",
"image": "base64 image encoded"
}
6 changes: 3 additions & 3 deletions identity/vocab.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ surname of the person as string
```

# gender
gender of the person as string
gender of the person as string from an Enum (Male, Female, Other)
```
"gender": "Fluid"
"gender": "Male"
```

# birthDate
Expand All @@ -31,7 +31,7 @@ date of birth of the person as string utc date (like issuanceDate default parame
# nationality
nationatility of the person as string
```
"nationality": "Swiss"
"nationality": "Switzerland"
```

# image
Expand Down

0 comments on commit f6e88ce

Please sign in to comment.