- SourceMeta name
- pointsofcontact
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 1.513 bytes
- Bytes bundled
- 1.513 bytes
- Health
- 15%
- 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
- 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/email/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/faxnummer/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/openingstijden/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/openingstijden/format
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/telefoonnummer/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/twitter/description
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/rijksdienst-voor-ondernemend-nederland/iio-api-aakgfxenr/pointsofcontact",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Points of contact of a country organization.",
"properties": {
"email": {
"description": "The email address of this organization.",
"examples": [
"info@rvo.nl"
],
"type": [
"string",
"null"
]
},
"faxnummer": {
"description": "The fax number of this organization.",
"examples": [
"+31880429527"
],
"type": [
"string",
"null"
]
},
"openingstijden": {
"description": "The opening hours of this organization in HTML format.",
"examples": [
"<p>You can reach us on working days from 8:30 AM to 5:00 PM.</p>"
],
"format": "html",
"type": [
"string",
"null"
]
},
"telefoonnummer": {
"description": "The telephone numbers of this organization.",
"items": {
"description": "A single telephone number",
"examples": [
"+31880424242"
],
"type": "string"
},
"type": "array"
},
"twitter": {
"description": "The twitter link of this organization.",
"examples": [
"https://www.twitter.com/rvo"
],
"format": "uri",
"type": [
"string",
"null"
]
}
},
"type": "object",
"x-derived-from": [
"https://internationaal.ondernemen.overheid.nl/api/iio/v1/openapi.yaml#/components/schemas/PointsOfContact"
]
}