- SourceMeta name
- rolaanduiding
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 2.141 bytes
- Bytes bundled
- 2.141 bytes
- Health
- 50%
- 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
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/initiatiefnemer/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/rol/enum - /properties/rol/type
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/rol/description
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/digitaal-stelsel-omgevingswet-dso/_shared/rolaanduiding",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Geeft aan wat de rol is van degene die het verzoek indient.",
"examples": [
{
"initiatiefnemer": {
"dsoId": "8e37be08-bc34-11ea-b3de-0242ac130004",
"vestigingsnummer": "000012345678"
},
"rol": "GEMACHTIGDE",
"vestigingsnummer": "000012345678"
}
],
"properties": {
"initiatiefnemer": {
"description": "De initiatiefnemer namens wie wordt ingediend of leeg voor een papierenmachtiging, indien de rol niet initiatiefnemer is. Indien de rol intiatiefnemer is, wordt dit veld genegeerd.",
"properties": {
"dsoId": {
"description": "DSO id (UUID)",
"examples": [
"ff4cd97f-1d24-4f42-86c4-61a8a1e9f066"
],
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"type": "string"
},
"vestigingsnummer": {
"description": "Het nummer van de vestiging in het geval van een NNP",
"examples": [
"000012345678"
],
"maxLength": 12,
"minLength": 12,
"pattern": "^[0-9]{12}$",
"type": "string"
}
},
"required": [
"dsoId"
]
},
"rol": {
"description": "Rol van de gebruiker.",
"enum": [
"INITIATIEFNEMER",
"GEMACHTIGDE",
"OVERIG"
],
"type": "string"
},
"vestigingsnummer": {
"description": "Het nummer van de vestiging in het geval van een NNP",
"examples": [
"000012345678"
],
"maxLength": 12,
"minLength": 12,
"pattern": "^[0-9]{12}$",
"type": "string"
}
},
"required": [
"rol"
],
"type": "object",
"x-derived-from": [
"https://developer.omgevingswet.overheid.nl/publish/pages/162228/verzoeken-indienen-v5.json#/components/schemas/Rolaanduiding",
"https://service.omgevingswet.overheid.nl/publiek/verzoeken/api/indienen/v5/#/components/schemas/Rolaanduiding"
]
}