{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://rig.works/schemas/rig.music.midi_output.schema.json",
  "title": "rig.music.midi_output",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "portName": {
      "$ref": "./_defs.schema.json#/$defs/string"
    },
    "portIndex": {
      "$ref": "./_defs.schema.json#/$defs/uint"
    },
    "open": {
      "$ref": "./_defs.schema.json#/$defs/bool"
    }
  },
  "allOf": [
    {
      "anyOf": [
        {
          "required": [
            "portName"
          ]
        },
        {
          "required": [
            "portIndex"
          ]
        }
      ]
    }
  ]
}
