- SourceMeta name
- polygon
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 1.167 bytes
- Bytes bundled
- 2.358 bytes
- Health
- 86%
- Dependencies
- 1
Dependencies
- At
- /allOf/0/$ref
Health issues
- 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
- /externalDocs
- 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
- unnecessary_allof_ref_wrapper_modern
- Message
- Wrapping `$ref` in `allOf` was only necessary in JSON Schema Draft 7 and older
- Pointers
- /allOf/0/$ref
- Name
- unnecessary_allof_wrapper
- Message
- Keywords inside `allOf` that do not conflict with the parent schema can be elevated
- Pointers
- /allOf/1/type - /allOf/1/required - /allOf/1/properties
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/digitaal-stelsel-omgevingswet-dso/ruimtelijke-plannen-api-3zzh61mdr/polygon",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "./geometry"
},
{
"properties": {
"coordinates": {
"items": {
"items": {
"description": "A 2D point",
"examples": [
[
5.960233,
52.179515
]
],
"items": {
"type": "number"
},
"maxItems": 2,
"minItems": 2,
"title": "Point2D",
"type": "array"
},
"type": "array"
},
"type": "array"
}
},
"required": [
"coordinates"
],
"type": "object"
}
],
"description": "GeoJSON polygon geometry",
"externalDocs": {
"url": "https://tools.ietf.org/html/rfc7946#section-3.1.6"
},
"type": "object",
"x-derived-from": [
"https://ruimte.omgevingswet.overheid.nl/ruimtelijke-plannen/api/opvragen/v4/openapi.json#/components/schemas/Polygon"
]
}