- SourceMeta name
- geometry
- Base dialect
- https://json-schema.org/draft/2020-12/schema
- SourceMeta dialect
- https://json-schema.org/draft/2020-12/schema
- Bytes
- 902 bytes
- Bytes bundled
- 902 bytes
- Health
- -
- Dependencies
- -
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_examples
- Message
- Set a non-empty examples array at the top level of the schema to illustrate the expected data
- Pointers
- 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/type/enum - /properties/type/type
{
"$id": "https://schemas.don.projects.digilab.network/schemas/api-register/digitaal-stelsel-omgevingswet-dso/ruimtelijke-plannen-api-3zzh61mdr/geometry",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "GeoJSON geometry",
"externalDocs": {
"url": "https://tools.ietf.org/html/rfc7946#section-3.1"
},
"properties": {
"type": {
"description": "The geometry type",
"enum": [
"Point",
"MultiPoint",
"LineString",
"MultiLineString",
"Polygon",
"MultiPolygon",
"Feature",
"FeatureCollection",
"GeometryCollection"
],
"type": "string"
}
},
"required": [
"type"
],
"title": "Geometry",
"type": "object",
"x-derived-from": [
"https://ruimte.omgevingswet.overheid.nl/ruimtelijke-plannen/api/opvragen/v4/openapi.json#/components/schemas/Geometry"
]
}