- SourceMeta name
- tilesetitem
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 3.448 bytes
- Bytes bundled
- 14.821 bytes
- Health
- 66%
- Dependencies
- 1
Dependencies
- At
- /properties/links/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
- unnecessary_allof_wrapper
- Message
- Keywords inside `allOf` that do not conflict with the parent schema can be elevated
- Pointers
- /properties/crs/allOf/1/oneOf - /properties/crs/allOf/0/description
- Name
- oneof_to_anyof_disjoint_types
- Message
- A `oneOf` where all branches have disjoint types can be safely converted to `anyOf`
- Pointers
- /properties/crs/allOf/1/oneOf
- Name
- unnecessary_allof_wrapper
- Message
- Keywords inside `allOf` that do not conflict with the parent schema can be elevated
- Pointers
- /properties/crs/allOf/1/oneOf/1/oneOf/1/properties/wkt/allOf/1/type - /properties/crs/allOf/1/oneOf/1/oneOf/1/properties/wkt/allOf/0/description
- Name
- unnecessary_allof_wrapper
- Message
- Keywords inside `allOf` that do not conflict with the parent schema can be elevated
- Pointers
- /properties/dataType/allOf/1/anyOf - /properties/dataType/allOf/0/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/dataType/allOf/1/anyOf/1/enum - /properties/dataType/allOf/1/anyOf/1/type
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/links/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/tileMatrixSetURI/description
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/pdok/brt-achtergrondkaart-iptk0bqnr/tilesetitem",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A minimal tileset element for use within a list of tilesets linking to full description of those tilesets.",
"properties": {
"crs": {
"allOf": [
{
"description": "Coordinate Reference System (CRS)"
},
{
"oneOf": [
{
"description": "Simplification of the object into a url if the other properties are not present",
"type": "string"
},
{
"oneOf": [
{
"properties": {
"uri": {
"description": "Reference to one coordinate reference system (CRS)",
"format": "uri",
"type": "string"
}
},
"required": [
"uri"
]
},
{
"properties": {
"wkt": {
"allOf": [
{
"description": "An object defining the CRS using the JSON encoding for Well-known text representation of coordinate reference systems 2.0"
},
{
"type": "object"
}
]
}
},
"required": [
"wkt"
]
},
{
"properties": {
"referenceSystem": {
"description": "A reference system data structure as defined in the MD_ReferenceSystem of the ISO 19115",
"type": "object"
}
},
"required": [
"referenceSystem"
]
}
],
"type": "object"
}
]
}
]
},
"dataType": {
"allOf": [
{
"description": "Type of data represented in the tileset"
},
{
"anyOf": [
{
"type": "string"
},
{
"enum": [
"map",
"vector",
"coverage"
],
"type": "string"
}
]
}
]
},
"links": {
"description": "Links to related resources. A 'self' link to the tileset as well as a 'http://www.opengis.net/def/rel/ogc/1.0/tiling-scheme' link to a definition of the TileMatrixSet are required.",
"items": {
"$ref": "../_shared/link"
},
"type": "array"
},
"tileMatrixSetURI": {
"description": "Reference to a Tile Matrix Set on an offical source for Tile Matrix Sets such as the OGC NA definition server (http://www.opengis.net/def/tms/). Required if the tile matrix set is registered on an open official source.",
"format": "uri",
"type": "string"
},
"title": {
"description": "A title for this tileset",
"type": "string"
}
},
"required": [
"dataType",
"links",
"crs"
],
"type": "object",
"x-derived-from": [
"https://api.pdok.nl/kadaster/brt-achtergrondkaart/ogc/v1/openapi.json#/components/schemas/tileSet-item",
"https://api.pdok.nl/lv/bag/ogc/v1/openapi.json#/components/schemas/tileSet-item"
]
}