- SourceMeta name
- werkzaamheidcreaterequest
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 1.344 bytes
- Bytes bundled
- 1.344 bytes
- Health
- 43%
- 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
- top_level_examples
- Message
- Set a non-empty examples array at the top level of the schema to illustrate the expected data
- Pointers
- Name
- unnecessary_allof_wrapper
- Message
- Keywords inside `allOf` that do not conflict with the parent schema can be elevated
- Pointers
- /allOf/1/type
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /allOf/0/properties/omschrijving/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /allOf/0/properties/trefwoorden/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /allOf/0/properties/trefwoorden/items/description
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/digitaal-stelsel-omgevingswet-dso/crud-rtr-gegevens-g85pejgdr/werkzaamheidcreaterequest",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"omschrijving": {
"description": "Omschrijving van de werkzaamheid.",
"maxLength": 250,
"minLength": 1,
"type": "string"
},
"trefwoorden": {
"description": "Trefwoorden van de werkzaamheid.",
"items": {
"description": "Trefwoord van de werkzaamheid.",
"maxLength": 250,
"minLength": 1,
"type": "string"
},
"maxItems": 1500,
"minItems": 0,
"type": "array"
}
},
"required": [
"omschrijving",
"trefwoorden"
]
},
{
"properties": {
"urn": {
"description": "Urn van de werkzaamheid",
"examples": [
"BoomKappen"
],
"pattern": "^\\w{1,100}$",
"type": "string"
}
},
"required": [
"urn"
],
"type": "object"
}
],
"x-derived-from": [
"https://developer.omgevingswet.overheid.nl/publish/pages/167490/toepasbareregels-crud-rtr-gegevens-v2.json#/components/schemas/WerkzaamheidCreateRequest"
]
}