{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/straylight-results-overall-summary",
  "title": "Overall Stats",
  "description": "Summary statistics over all captures within the subset.",
  "type": "object",
  "properties": {
    "min": {
      "description": "The minimum stray light value for all captures over this subset.",
      "type": "number"
    },
    "min_non_0": {
      "description": "The minimum (of the non-zero values in the original image) stray light value for all captures over this subset.",
      "type": "number"
    },
    "max": {
      "description": "The maximum stray light value for all captures over this subset.",
      "type": "number"
    }
  },
  "required": [
    "min",
    "min_non_0",
    "max"
  ],
  "unevaluatedProperties": false
}