UNPKG

vitessce

Version:

Vitessce app and React component library

29 lines (28 loc) 630 B
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/vitessce/vitessce/#neighborhoods", "title": "Vitessce neighborhood data", "type": "object", "definitions": { "coord": { "type": "array", "maxItems": 2, "minItems": 2, "items": { "type": "number" } } }, "patternProperties": { ".": { "additionalProperties": false, "required": ["poly"], "properties": { "poly": { "type": "array", "maxItems": 3, "minItems": 3, "items": { "$ref": "#/definitions/coord" } } } } } }