{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://rig.works/schemas/rig.dmx.fixture.schema.json",
  "title": "rig.dmx.fixture",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "startChannel": {
      "type": "integer",
      "minimum": 1,
      "maximum": 512
    },
    "channelCount": {
      "type": "integer",
      "minimum": 1
    },
    "port": {
      "$ref": "./_defs.schema.json#/$defs/entity"
    }
  },
  "required": [
    "startChannel",
    "channelCount"
  ]
}
