- SourceMeta name
- document
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 1.500 bytes
- Bytes bundled
- 1.500 bytes
- Health
- 25%
- 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/id/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/vertrouwelijk/description
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/digitaal-stelsel-omgevingswet-dso/_shared/document",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "De beschrijving van een document (meta data). De bijbehorende inhoud van het document (content) wordt aan het verzoek toegevoegd middels /verzoeken/{verzoekId}/documenten/{documentId} of /ideeverkenningen/{verzoekId}/documenten/{documentId}.",
"examples": [
{
"bestandsnaam": "situatieschets-1.0.pdf",
"id": 2,
"vertrouwelijk": true
}
],
"properties": {
"bestandsnaam": {
"maxLength": 256,
"type": "string"
},
"id": {
"description": "Een willekeurig nummer waarmee een document uniek wordt geidentificeerd binnen de context van het verzoek. Kan bijvoorbeeld een volgnummer zijn.",
"type": "integer"
},
"vertrouwelijk": {
"description": "Geeft aan of de bijlage als vertrouwelijk moet worden behandeld.",
"type": "boolean"
}
},
"required": [
"id",
"bestandsnaam",
"vertrouwelijk"
],
"type": "object",
"x-derived-from": [
"https://developer.omgevingswet.overheid.nl/publish/pages/162228/verzoeken-indienen-v4.json#/components/schemas/Document",
"https://developer.omgevingswet.overheid.nl/publish/pages/162228/verzoeken-indienen-v5.json#/components/schemas/Document",
"https://service.omgevingswet.overheid.nl/publiek/verzoeken/api/indienen/v5/#/components/schemas/Document"
]
}