{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/straylight-results-mask",
  "title": "Stray Light Mask Results",
  "description": "Information about the mask of the light source.",
  "type": "object",
  "properties": {
    "type": {
      "description": "The type of mask result.",
      "type": "string",
      "enum": [
        "Error",
        "None",
        "Image Processing",
        "Image Processing + Circle"
      ]
    },
    "mask_file": {
      "description": "The mask file(s) generated during the analysis.",
      "$ref": "https://www.imatest.com/schema/25-1/common-filename-md5-array"
    },
    "channel": {
      "description": "The channel used to produce the mask.",
      "type": "string"
    }
  },
  "required": [
    "type",
    "mask_file",
    "channel"
  ],
  "anyOf": [
    {
      "$ref": "https://www.imatest.com/schema/25-1/straylight-results-mask-image-processing"
    },
    {
      "$ref": "https://www.imatest.com/schema/25-1/straylight-results-mask-none"
    },
    {
      "$ref": "https://www.imatest.com/schema/25-1/straylight-results-mask-circle"
    },
    {
      "$ref": "https://www.imatest.com/schema/25-1/straylight-results-mask-error"
    }
  ]
}