- SourceMeta name
- algemenesetactiviteit
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 1.993 bytes
- Bytes bundled
- 1.993 bytes
- Health
- 64%
- 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_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
- /properties/bestuursorgaan/allOf/0/required - /properties/bestuursorgaan/allOf/0/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/bestuursorgaan/allOf/0/properties/bestuurslaag/enum - /properties/bestuursorgaan/allOf/0/properties/bestuurslaag/type
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/urn/description
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/digitaal-stelsel-omgevingswet-dso/samengestelde-rtr-services-dgbh6jmvr/algemenesetactiviteit",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Een Activiteit",
"properties": {
"bestuursorgaan": {
"allOf": [
{
"description": "Organisatie",
"properties": {
"bestuurslaag": {
"description": "Bestuurslaag van een Organisatie",
"enum": [
"rijk",
"provincie",
"waterschap",
"gemeente"
],
"type": "string"
},
"oin": {
"description": "OIN van de organisatie",
"maxLength": 20,
"minLength": 20,
"type": "string"
}
},
"required": [
"oin",
"bestuurslaag"
]
},
{
"properties": {
"organisatieCode": {
"description": "organisatieCode (CBS code, het numerieke deel van de BG code)",
"type": "string"
},
"organisatieType": {
"description": "organisatieType (niet-numerieke deel van de BG code)",
"type": "string"
}
}
}
]
},
"functioneleStructuurRef": {
"description": "De verwijzing naar een regelbeheerobject van de algemene set",
"type": "string"
},
"naam": {
"description": "De omschrijvende naam van de algemene set",
"type": "string"
},
"urn": {
"description": "Urn van de algemene set (In de urn mogen geen spaties voorkomen). Binnen de keten staat urn bekend als de imow-id.",
"type": "string"
}
},
"required": [
"naam",
"functioneleStructuurRef",
"urn",
"bestuursorgaan"
],
"x-derived-from": [
"https://developer.omgevingswet.overheid.nl/publish/pages/165401/toepasbareregels-samengesteldertrservices-v2.json#/components/schemas/AlgemeneSetActiviteit"
]
}