{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/straylight-settings-video-metric-image",
  "title": "Colormapped Metric Image",
  "description": "The user-provided settings for saving colormapped metric images.",
  "type": "object",
  "properties": {
    "video_types": {
      "description": "The user-provided format(s) for saving a video.",
      "type": "array",
      "items": {
        "$ref": "https://www.imatest.com/schema/25-1/common-settings-video-formats-enum"
      }
    },
    "image_types": {
      "description": "The user-provided format(s) for saving each frame of the video.",
      "type": "array",
      "items": {
        "$ref": "https://www.imatest.com/schema/25-1/common-settings-image-frame-formats-enum"
      }
    },
    "frame_rate_fps": {
      "description": "The user-provided frame rate in frames per second.",
      "type": "number"
    },
    "data_transform": {
      "description": "The user-provided data transform.",
      "$ref": "https://www.imatest.com/schema/25-1/stray-light-settings-data-transform-enum",
      "$comment": "This only has an effect if the calculation data transform is linear."
    }
  },
  "required": [
    "video_types",
    "image_types",
    "data_transform"
  ],
  "unevaluatedProperties": false
}