{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/common-channel-extractor-index",
  "title": "Channel Extraction Information: Index",
  "description": "The information for selecting an analysis channel from an index.",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the channel.",
      "type": "string"
    },
    "type": {
      "description": "The type of the channel.",
      "type": "string",
      "const": "Index"
    },
    "index": {
      "description": "The one-based index of the analysis channel.",
      "type": "integer"
    }
  },
  "required": [
    "name",
    "type",
    "index"
  ],
  "unevaluatedProperties": false
}