{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://github.com/vitessce/vitessce/#cell-sets-tabular",
    "title": "Vitessce cell sets data, tabular format",
    "definitions": {
        "colorArray": {
            "type": "array",
            "items": { "type": "integer", "minimum": 0, "maximum": 255 },
            "minItems": 3,
            "maxItems": 3
        }
    },
    "type": "array",
    "items": {
        "type": "object",
        "additionalProperties": false,
        "required": ["groupName", "setName", "obsId"],
        "properties": {
            "groupName": { "type": "string" },
            "setName": { "type": "string" },
            "setColor": { "$ref": "#/definitions/colorArray" },
            "obsId": { "type": "string" },
            "predictionScore": {
                "oneOf": [
                    {
                        "type": "number",
                        "minimum": 0.0,
                        "maximum": 1.0
                    },
                    {
                        "type": "null"
                    }
                ]
            }
        }
    }
}
    
  