- SourceMeta name
- item5
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 3.428 bytes
- Bytes bundled
- 5.219 bytes
- Health
- 58%
- Dependencies
- 1
Dependencies
- At
- /properties/variableMatrixWidths/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
- enum_with_type
- Message
- Setting `type` alongside `enum` is considered an anti-pattern, as the enumeration choices already imply their respective types
- Pointers
- /properties/cornerOfOrigin/enum - /properties/cornerOfOrigin/type
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/cornerOfOrigin/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/matrixHeight/format
- 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/matrixHeight/format
- 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/matrixWidth/format
- 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/matrixWidth/format
- Name
- unnecessary_allof_wrapper
- Message
- Keywords inside `allOf` that do not conflict with the parent schema can be elevated
- Pointers
- /properties/pointOfOrigin/allOf/1/type - /properties/pointOfOrigin/allOf/1/maxItems - /properties/pointOfOrigin/allOf/1/minItems - /properties/pointOfOrigin/allOf/1/items - /properties/pointOfOrigin/allOf/1/description
- Name
- description_trailing_period
- Message
- Descriptions should not end with a period to give user interfaces flexibility in presenting the text
- Pointers
- /properties/pointOfOrigin/allOf/0/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/tileHeight/format
- 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/tileHeight/format
- 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/tileWidth/format
- 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/tileWidth/format
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/pdok/geometrieen-omgevingswet-api-f1umox3ng/item5",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A tile matrix, usually corresponding to a particular zoom level of a TileMatrixSet.",
"properties": {
"cellSize": {
"description": "Cell size of this tile matrix",
"type": "number"
},
"cornerOfOrigin": {
"default": "topLeft",
"description": "The corner of the tile matrix (_topLeft_ or _bottomLeft_) used as the origin for numbering tile rows and columns. This corner is also a corner of the (0, 0) tile.",
"enum": [
"topLeft",
"bottomLeft"
],
"type": "string"
},
"description": {
"description": "Brief narrative description of this tile matrix set, normally available for display to a human",
"type": "string"
},
"id": {
"description": "Identifier selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile. Implementation of 'identifier'",
"type": "string"
},
"keywords": {
"description": "Unordered list of one or more commonly used or formalized word(s) or phrase(s) used to describe this dataset",
"items": {
"type": "string"
},
"type": "array"
},
"matrixHeight": {
"description": "Width of the matrix (number of tiles in width)",
"format": "integer",
"minimum": 1,
"multipleOf": 1,
"type": "number"
},
"matrixWidth": {
"description": "Height of the matrix (number of tiles in height)",
"format": "integer",
"minimum": 1,
"multipleOf": 1,
"type": "number"
},
"pointOfOrigin": {
"allOf": [
{
"description": "Precise position in CRS coordinates of the corner of origin (e.g. the top-left corner) for this tile matrix. This position is also a corner of the (0, 0) tile. In previous version, this was 'topLeftCorner' and 'cornerOfOrigin' did not exist."
},
{
"description": "A 2D Point in the CRS indicated elsewhere",
"items": {
"type": "number"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
}
]
},
"scaleDenominator": {
"description": "Scale denominator of this tile matrix",
"type": "number"
},
"tileHeight": {
"description": "Height of each tile of this tile matrix in pixels",
"format": "integer",
"minimum": 1,
"multipleOf": 1,
"type": "number"
},
"tileWidth": {
"description": "Width of each tile of this tile matrix in pixels",
"format": "integer",
"minimum": 1,
"multipleOf": 1,
"type": "number"
},
"title": {
"description": "Title of this tile matrix, normally used for display to a human",
"type": "string"
},
"variableMatrixWidths": {
"description": "Describes the rows that has variable matrix width",
"items": {
"$ref": "../_shared/item5"
},
"type": "array"
}
},
"required": [
"id",
"scaleDenominator",
"cellSize",
"pointOfOrigin",
"tileWidth",
"tileHeight",
"matrixWidth",
"matrixHeight"
],
"type": "object",
"x-derived-from": [
"https://api.pdok.nl/omgevingswet/omgevingsdocumenten/ogc/v2/openapi.json"
]
}