{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://rig.works/schemas/rig.led.uv_map.schema.json",
  "title": "rig.led.uv_map",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "width": {
      "$ref": "./_defs.schema.json#/$defs/int"
    },
    "height": {
      "$ref": "./_defs.schema.json#/$defs/int"
    },
    "pixels": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "required": [
          "index",
          "u",
          "v"
        ],
        "properties": {
          "index": {
            "$ref": "./_defs.schema.json#/$defs/int"
          },
          "u": {
            "$ref": "./_defs.schema.json#/$defs/float"
          },
          "v": {
            "$ref": "./_defs.schema.json#/$defs/float"
          }
        }
      }
    }
  },
  "required": [
    "pixels"
  ]
}
