{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/common-channel-extractor-weights",
  "title": "Channel Extraction Information: Weighted Channels",
  "description": "The information for selecting a median analysis channel.",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the channel.",
      "type": "string"
    },
    "type": {
      "description": "The type of the channel.",
      "type": "string",
      "const": "Weighted"
    },
    "weights": {
      "description": "The weights to apply to each channel.",
      "type": "array",
      "items": {
        "type": "number"
      }
    }
  },
  "required": [
    "name",
    "type",
    "weights"
  ],
  "unevaluatedProperties": false
}