{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://github.com/vitessce/vitessce/#molecules",
  "title": "Vitessce molecule data",
  "type": "object",
  "definitions": {
    "coord": {
      "type": "array",
      "maxItems": 2,
      "minItems": 2,
      "items": { "type": "number" }
    }
  },
  "patternProperties": {
    ".": {
      "type": "array",
      "items": { "$ref": "#/definitions/coord" }
    }
  }
}
