{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://rig.works/schemas/rig.pixel.palette.schema.json",
  "title": "rig.pixel.palette",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "colors": {
      "type": "array",
      "items": {
        "$ref": "./_defs.schema.json#/$defs/rgba"
      },
      "minItems": 1
    }
  },
  "required": [
    "colors"
  ]
}
