{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/digitaal-stelsel-omgevingswet-dso/_shared/adres",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"letter": {
"pattern": "^[A-Za-z]{1}$",
"type": "string"
},
"nummer": {
"pattern": "^[0-9]{1,5}$",
"type": "string"
},
"nummeraanduidingId": {
"pattern": "^[0-9]{16}$",
"type": "string"
},
"postcode": {
"pattern": "^[1-9][0-9]{3}\\s?[A-Za-z]{2}$",
"type": "string"
},
"straat": {
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"toevoeging": {
"pattern": "^.{1,4}$",
"type": "string"
},
"woonplaats": {
"maxLength": 80,
"minLength": 1,
"type": "string"
}
},
"required": [
"nummeraanduidingId",
"straat",
"nummer",
"woonplaats"
],
"type": "object",
"x-derived-from": [
"https://developer.omgevingswet.overheid.nl/publish/pages/162228/verzoeken-indienen-v5.json#/components/schemas/Adres",
"https://service.omgevingswet.overheid.nl/publiek/verzoeken/api/indienen/v5/#/components/schemas/Adres"
]
}