- SourceMeta name
- ideeverkenningmetadata
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 1.339 bytes
- Bytes bundled
- 1.339 bytes
- Health
- 17%
- 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
- 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
- Name
- enum_to_const
- Message
- An `enum` of a single value can be expressed as `const`
- Pointers
- /properties/verzoekType/enum
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/digitaal-stelsel-omgevingswet-dso/verzoeken-indienen-yktc6lgdr/ideeverkenningmetadata",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"examples": [
{
"doelVerzoek": "Indienen",
"projectId": "202",
"projectnaam": "Woongroep",
"verzoekType": "Idee"
}
],
"properties": {
"doelVerzoek": {
"enum": [
"Indienen",
"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"
},
"projectnaam": {
"maxLength": 197,
"minLength": 1,
"type": "string"
},
"verzoekType": {
"enum": [
"Idee"
],
"type": "string"
}
},
"required": [
"verzoekType",
"doelVerzoek"
],
"type": "object",
"x-derived-from": [
"https://developer.omgevingswet.overheid.nl/publish/pages/162228/verzoeken-indienen-v4.json#/components/schemas/IdeeverkenningMetadata"
]
}