{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/common-channel-extractor-luminance-ntsc-rounded",
  "title": "Luminance Channel Extraction Information: NTSC (Rounded)",
  "description": "The information for selecting an NTSC (Rounded) luminance analysis channel. This is ITU-R BT.601-7 rounded to 2 significant digits.",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the channel.",
      "type": "string"
    },
    "type": {
      "description": "The type of the channel.",
      "type": "string",
      "const": "Luminance"
    },
    "luminance_type": {
      "description": "The method/standard for computing a luminance channel.",
      "type": "string",
      "const": "NTSC (Rounded)"
    },
    "rgb_weights": {
      "description": "The weights applied to red, green, and blue channels.",
      "type": "array",
      "const": [
        0.3,
        0.59,
        0.11
      ],
      "items": {
        "type": "number"
      }
    }
  },
  "required": [
    "name",
    "type",
    "luminance_type",
    "rgb_weights"
  ],
  "unevaluatedProperties": false
}