- SourceMeta name
- eventfull
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 2.957 bytes
- Bytes bundled
- 5.580 bytes
- Health
- 15%
- Dependencies
- 2
Dependencies
- At
- /properties/landen/items/$ref
- At
- /properties/sectoren/items/$ref
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
- 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/afbeelding/description
- Name
- simple_properties_identifiers
- Message
- Set `properties` to identifier names that can be easily mapped to programming languages (matching [A-Za-z_][A-Za-z0-9_]*)
- Pointers
- /properties/afbeelding/properties/alt-text
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/afbeelding/properties/alt-text/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/afbeelding/properties/url/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
- 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/landen/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/link/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/sectoren/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/startdatum/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/tekst/description
- Name
- unknown_format_prefix
- Message
- For interoperability purposes, the JSON Schema specification advises against the use of `format` values that are not explicitly defined by the specification
- Pointers
- /properties/tekst/format
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/titel/description
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/rijksdienst-voor-ondernemend-nederland/iio-api-aakgfxenr/eventfull",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A Event.",
"properties": {
"afbeelding": {
"description": "An image associated this item.",
"examples": [
{
"alt-text": "Default image for the event",
"url": "https://ih-static.rvo.nl/sites/default/files/fallback_images/5.svg"
}
],
"properties": {
"alt-text": {
"description": "Alternative text for the image, can be null.",
"examples": [
"A beautiful sunset over the mountains"
],
"type": [
"string",
"null"
]
},
"url": {
"description": "The URL of the image.",
"examples": [
"https://example.com/images/sunset.jpg"
],
"format": "uri",
"type": "string"
}
},
"type": "object"
},
"einddatum": {
"description": "The end date and time of the event in ISO 8601 format.",
"examples": [
"2024-02-10T09:00:06+01:00"
],
"format": "date-time",
"type": "string"
},
"id": {
"description": "A unique identifier in UUID format from a sector, country, content-item etc.",
"format": "uuid",
"type": "string"
},
"landen": {
"description": "A list of countries associated with the event.",
"items": {
"$ref": "./country"
},
"type": "array"
},
"link": {
"description": "A\n * URL to the event's detail page.",
"examples": [
"https://www.rvo.nl/evenementen/duitsland-healthholland-paviljoen-medica-2024"
],
"format": "uri",
"type": [
"string",
"null"
]
},
"sectoren": {
"description": "A list of industry sectors associated with the event.",
"items": {
"$ref": "./sector"
},
"type": "array"
},
"startdatum": {
"description": "The start date and time of the event in ISO 8601 format.",
"examples": [
"2024-02-10T09:00:06+01:00"
],
"format": "date-time",
"type": "string"
},
"tekst": {
"description": "Raw\n * HTML content of the event description. Clients must ensure to properly\n * escape this content when rendering to prevent XSS vulnerabilities.",
"examples": [
"<p>This is an example of HTML content.</p>"
],
"format": "html",
"type": "string"
},
"titel": {
"description": "The title of\n * the event.",
"examples": [
"Germany MEDICA 2024"
],
"type": "string"
}
},
"required": [
"id",
"titel",
"tekst",
"link",
"afbeelding",
"startdatum",
"einddatum",
"sectoren",
"landen"
],
"type": "object",
"x-derived-from": [
"https://internationaal.ondernemen.overheid.nl/api/iio/v1/openapi.yaml#/components/schemas/EventFull"
]
}