- SourceMeta name
- embedded
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 1.271 bytes
- Bytes bundled
- 1.271 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
- unknown_keywords_prefix
- Message
- Future versions of JSON Schema will refuse to evaluate unknown keywords or custom keywords from optional vocabularies that don't have an x- prefix
- Pointers
- /properties/hoofdstad/nullable
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/hoofdstad/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/hoofdstad/oneOf/0/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/hoofdstad/oneOf/0/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/hoofdstad/oneOf/0/properties/naam/description
- Name
- non_applicable_type_specific_keywords
- Message
- Avoid keywords that don't apply to the type or types that the current subschema expects
- Pointers
- /properties/hoofdstad/oneOf/0/properties/tijdsverschil/format
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/hoofdstad/oneOf/0/properties/tijdsverschil/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/hoofdstad/oneOf/0/properties/tijdsverschil/format
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/rijksdienst-voor-ondernemend-nederland/iio-api-aakgfxenr/embedded",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"hoofdstad": {
"description": "The country capital.",
"nullable": true,
"oneOf": [
{
"description": "A city is a geographic region and can be the capital of a country.",
"properties": {
"id": {
"description": "A unique identifier in UUID format from a sector, country, content-item etc.",
"format": "uuid",
"type": "string"
},
"naam": {
"description": "The name of the city.",
"examples": [
"Amsterdam"
],
"type": "string"
},
"tijdsverschil": {
"description": "The time difference in UTC/GMT of the city compared to the Netherlands.",
"examples": [
2
],
"format": "float",
"type": "number"
}
},
"type": "object"
}
]
}
},
"type": "object",
"x-derived-from": [
"https://internationaal.ondernemen.overheid.nl/api/iio/v1/openapi.yaml"
]
}