{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://rig.works/schemas/rig.music.step.schema.json",
  "title": "rig.music.step",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "active": {
      "$ref": "./_defs.schema.json#/$defs/bool"
    },
    "pitch": {
      "type": "integer",
      "minimum": 0,
      "maximum": 127
    },
    "velocity": {
      "type": "integer",
      "minimum": 0,
      "maximum": 127
    },
    "gate": {
      "type": "number",
      "minimum": 0,
      "maximum": 1
    },
    "waveform": {
      "type": "integer",
      "minimum": 0,
      "maximum": 255
    },
    "effect": {
      "type": "integer",
      "minimum": 0,
      "maximum": 7
    }
  },
  "required": [
    "active"
  ]
}
