{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/straylight-settings-mask",
  "title": "Mask Settings",
  "description": "The user-provided source masking settings for the test image(s).",
  "type": "object",
  "properties": {
    "type": {
      "description": "The user-provided masking method.",
      "type": "string",
      "enum": [
        "None",
        "Image Processing",
        "Image Processing + Circle"
      ]
    },
    "image_processing": {
      "description": "The user-provided image processing settings.",
      "$ref": "https://www.imatest.com/schema/25-1/straylight-settings-mask-image-processing"
    },
    "radius": {
      "description": "The user-provided radius settings.",
      "$ref": "https://www.imatest.com/schema/25-1/straylight-settings-mask-radius"
    }
  },
  "required": [
    "type"
  ],
  "unevaluatedProperties": false
}