{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/straylight-settings",
  "title": "Stray Light Settings",
  "description": "The user-provided settings for a stray light analysis run.",
  "type": "object",
  "properties": {
    "memory_mode": {
      "description": "The user-provided memory mode for the analysis run.",
      "type": "string",
      "enum": [
        "High Memory",
        "Low Memory"
      ]
    },
    "calculation": {
      "description": "The user-provided calculation settings.",
      "$ref": "https://www.imatest.com/schema/25-1/straylight-settings-calculation"
    },
    "batch_outputs": {
      "description": "The user-provided batch output settings.",
      "$ref": "https://www.imatest.com/schema/25-1/straylight-settings-batch-outputs"
    }
  },
  "required": [
    "memory_mode",
    "calculation",
    "batch_outputs"
  ],
  "unevaluatedProperties": false
}