Properties
| Name | Type | Description |
|---|---|---|
| dateOfBirth | string | The date of birth of the person. The date should be in ISO-8601 format yyyy-mm-dd (e.g. 2000-01-31). |
| idNumber | string | An ID number of the person. |
| nationality | string | The nationality of the person represented by a two-character country code. >The permitted country codes are defined in ISO-3166-1 alpha-2 (e.g. 'NL'). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PersonalData",
"title": "PersonalData",
"properties": {
"dateOfBirth": {
"description": "The date of birth of the person.\nThe date should be in ISO-8601 format yyyy-mm-dd (e.g. 2000-01-31).",
"type": "string"
},
"idNumber": {
"description": "An ID number of the person.",
"type": "string"
},
"nationality": {
"description": "The nationality of the person represented by a two-character country code.\n>The permitted country codes are defined in ISO-3166-1 alpha-2 (e.g. 'NL').",
"maxLength": 2,
"minLength": 2,
"type": "string"
}
},
"type": "object"
}