{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/straylight-settings-video-histogram",
  "title": "Histogram Video Stats",
  "description": "The user-provided settings for saving histograms.",
  "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"
    },
    "y_max_type": {
      "description": "The user-provided method for determining the maximum y value.",
      "type": "string",
      "enum": [
        "Automatic",
        "User-defined"
      ]
    },
    "y_max_value_px": {
      "description": "The user-provided maximum y value.",
      "type": "number"
    }
  },
  "required": [
    "video_types",
    "image_types",
    "y_max_type"
  ],
  "unevaluatedProperties": false
}