- SourceMeta name
- examenlicentie
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 1.828 bytes
- Bytes bundled
- 1.828 bytes
- Health
- -
- 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
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/begindatum/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/einddatum/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/herkomst/enum - /properties/herkomst/type
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/herkomst/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/licentiecode/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/stadium/enum - /properties/stadium/type
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/stadium/description
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/dienst-uitvoering-onderwijs/rio-lod-api-a2amj_gdg/examenlicentie",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"begindatum": {
"description": "De datum die het begin van de periode aangeeft (inclusief).",
"format": "date",
"type": "string"
},
"einddatum": {
"description": "De datum die het einde van de periode aangeeft (exclusief).",
"format": "date",
"type": "string"
},
"herkomst": {
"description": "Geeft aan wat de bron van de licentie is.",
"enum": [
"BRANCHE",
"NKC_EVC",
"NLQF",
"NVAO",
"OCW",
"SNRO",
"SZW",
"VZP",
"VZP_MTGO"
],
"type": "string"
},
"id": {
"description": "De unieke aanduiding van een licentie.",
"maxLength": 36,
"minLength": 36,
"pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}",
"type": "string"
},
"licentiecode": {
"description": "De unieke aanduiding van een licentie.",
"maxLength": 36,
"minLength": 36,
"pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}",
"type": "string"
},
"stadium": {
"description": "De toestand waarin een licentie zich bevindt.",
"enum": [
"SLAPEND",
"STANDAARD",
"TIJDELIJK"
],
"type": "string"
}
},
"required": [
"begindatum",
"herkomst",
"id",
"licentiecode",
"stadium"
],
"type": "object",
"x-class-extra-annotation": "@Relation(collectionRelation = \"Examenlicenties\")",
"x-derived-from": [
"https://lod.onderwijsregistratie.nl/rio-api/assets/RIO_LOD_API_v2.yml#/components/schemas/Examenlicentie"
]
}