UNPKG

s2-tilejson

Version:

Backwards compatible JSON format for describing s2 map tilesets.

37 lines (36 loc) 1.18 kB
{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "PrimitiveShapes": { "enum": ["string", "f32", "f64", "u64", "i64", "bool", "null"] }, "ShapePrimitive": { "type": "object", "additionalProperties": { "$ref": "#/definitions/PrimitiveShapes" } }, "ShapePrimitiveType": { "anyOf": [ { "$ref": "#/definitions/PrimitiveShapes" }, { "$ref": "#/definitions/ShapePrimitive" } ] }, "ShapeType": { "anyOf": [ { "$ref": "#/definitions/PrimitiveShapes" }, { "type": "array", "minItems": 1, "maxItems": 1, "items": { "$ref": "#/definitions/ShapePrimitiveType" } }, { "$ref": "#/definitions/Shape" } ] }, "Shape": { "type": "object", "additionalProperties": { "$ref": "#/definitions/ShapeType" } } }, "type": "object", "additionalProperties": { "$ref": "#/definitions/ShapeType" } }