- SourceMeta name
- verzoekmetadata
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 1.656 bytes
- Bytes bundled
- 1.656 bytes
- Health
- -
- Dependencies
- -
Health issues
- Name
- top_level_title
- Message
- Set a concise non-empty title at the top level of the schema to explain what the definition is about
- Pointers
- Name
- top_level_description
- Message
- Set a non-empty description at the top level of the schema to explain what the definition is about in detail
- Pointers
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/ambtshalve/description
- Name
- enum_with_type
- Message
- Setting `type` alongside `enum` is considered an anti-pattern, as the enumeration choices already imply their respective types
- Pointers
- /properties/doelVerzoek/enum - /properties/doelVerzoek/type
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/initieelVerzoeknummer/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/projectId/description
- Name
- enum_with_type
- Message
- Setting `type` alongside `enum` is considered an anti-pattern, as the enumeration choices already imply their respective types
- Pointers
- /properties/verzoekType/enum - /properties/verzoekType/type
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/digitaal-stelsel-omgevingswet-dso/verzoeken-indienen-yktc6lgdr/verzoekmetadata",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"examples": [
{
"ambtshalve": false,
"doelVerzoek": "Initieren",
"projectId": "202",
"verzoekType": "Melding"
}
],
"properties": {
"ambtshalve": {
"description": "Geeft aan of het verzoek ambtshalve is ingediend door het Bevoegd Gezag.",
"type": "boolean"
},
"doelVerzoek": {
"enum": [
"Conceptverzoek",
"Initieren",
"Aanvullen"
],
"type": "string"
},
"initieelVerzoeknummer": {
"description": "Het verzoeknummer waarop een 'Aanvulling' plaats vindt.",
"type": "string"
},
"projectId": {
"description": "Geeft een mogelijkheid (voor een Bevoegd Gezag) tot het relateren van verschillende aanvragen onder eenzelfde project id. Indien er een machtiging is, moet dit projectId gelijk zijn aan het projectId van de machtiging.",
"type": "string"
},
"verzoekType": {
"enum": [
"Aanvraag vergunning",
"Melding",
"Informatie",
"Informatie ongewoon voorval",
"Aanvraag maatwerkvoorschrift",
"Melding gelijkwaardige maatregel",
"Aanvraag toestemming gelijkwaardige maatregel"
],
"type": "string"
}
},
"required": [
"verzoekType",
"doelVerzoek",
"ambtshalve"
],
"type": "object",
"x-derived-from": [
"https://developer.omgevingswet.overheid.nl/publish/pages/162228/verzoeken-indienen-v4.json#/components/schemas/VerzoekMetadata"
]
}