{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/vng/_shared/fout",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"code": {
"description": "Systeemcode die het type fout aangeeft",
"minLength": 1,
"title": "Code",
"type": "string"
},
"detail": {
"description": "Extra informatie bij de fout, indien beschikbaar",
"minLength": 1,
"title": "Detail",
"type": "string"
},
"instance": {
"description": "URI met referentie naar dit specifiek voorkomen van de fout. Deze kan gebruikt worden in combinatie met server logs, bijvoorbeeld.",
"minLength": 1,
"title": "Instance",
"type": "string"
},
"status": {
"description": "De HTTP status code",
"title": "Status",
"type": "integer"
},
"title": {
"description": "Generieke titel voor het type fout",
"minLength": 1,
"title": "Title",
"type": "string"
},
"type": {
"description": "URI referentie naar het type fout, bedoeld voor developers",
"title": "Type",
"type": "string"
}
},
"required": [
"code",
"title",
"status",
"detail",
"instance"
],
"type": "object",
"x-derived-from": [
"https://autorisaties-api.vng.cloud/api/v1/schema/openapi.json#/components/schemas/Fout",
"https://besluiten-api.vng.cloud/api/v1/schema/openapi.json#/components/schemas/Fout",
"https://notificaties-api.vng.cloud/api/v1/schema/openapi.json#/components/schemas/Fout"
]
}