{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/straylight-settings-other-calc",
  "title": "Stray Light Other Calculation Settings",
  "description": "The user-provided other calculation settings.",
  "type": "object",
  "properties": {
    "percentile_ranks": {
      "description": "The user-provided percentile ranks.",
      "type": "array",
      "items": {
        "type": "number"
      }
    },
    "count_type": {
      "description": "The user-provided method for reporting count-based metrics.",
      "type": "string",
      "enum": [
        "Number of Pixels",
        "Percent of Pixels"
      ]
    },
    "level_count_thresholds": {
      "description": "The user-provided thresholds to count the number of pixels with worse stray light.",
      "type": "array",
      "items": {
        "type": "number"
      }
    }
  },
  "required": [
    "percentile_ranks",
    "count_type",
    "level_count_thresholds"
  ],
  "unevaluatedProperties": false
}