- SourceMeta name
- contentitemfull
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 2.844 bytes
- Bytes bundled
- 6.987 bytes
- Health
- 22%
- Dependencies
- 4
Dependencies
- At
- /properties/_links/$ref
- At
- /properties/landen/items/$ref
- At
- /properties/sectoren/items/$ref
- At
- /properties/self/$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/gepubliceerdOp/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/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/contentitemfull",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A content item.",
"properties": {
"_links": {
"$ref": "../../_shared/links"
},
"afbeelding": {
"description": "An image associated this item.",
"examples": [
{
"alt-text": "Default image for the content-item",
"url": "https://ih-static.rvo.nl/sites/default/files/fallback_images/2.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"
},
"gepubliceerdOp": {
"description": "The published date and time of the content-item in ISO 8601\n * 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 content-item.",
"items": {
"$ref": "./country"
},
"type": "array"
},
"link": {
"description": "A URL to the\n * content-item's detail page.",
"examples": [
"https://example.com/content/123"
],
"format": "uri",
"type": "string"
},
"sectoren": {
"description": "A list of industry sectors associated with the\n * content-item.",
"items": {
"$ref": "./sector"
},
"type": "array"
},
"tekst": {
"description": "Raw\n * HTML content of the content-item description. Clients must ensure to\n * properly escape this content when rendering to prevent XSS\n * vulnerabilities.",
"examples": [
"<p>This is an example of HTML content.</p>"
],
"format": "html",
"type": "string"
},
"titel": {
"description": "The title of the content-item.",
"examples": [
"Doing Business in\n * Germany"
],
"type": "string"
}
},
"required": [
"id",
"titel",
"tekst",
"link",
"afbeelding",
"gepubliceerdOp",
"landen",
"sectoren",
"_links"
],
"type": "object",
"x-derived-from": [
"https://internationaal.ondernemen.overheid.nl/api/iio/v1/openapi.yaml#/components/schemas/ContentItemFull"
]
}