{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/straylight-settings-capture-metadata",
  "title": "Stray Light Capture Metadata",
  "description": "User-provided settings for providing metadata to the analysis.",
  "type": "object",
  "properties": {
    "filename_regular_expression_method": {
      "description": "The user-provided method for extracting metadata from a filename.",
      "type": "string",
      "enum": [
        "None",
        "Regular Expression"
      ]
    },
    "filename_regular_expression": {
      "description": "The user-provided regular expression to apply to a filename and extract metadata.",
      "type": "string"
    },
    "decimal_point": {
      "description": "The user-provided decimal point character.",
      "type": "string"
    }
  },
  "required": [
    "filename_regular_expression_method"
  ],
  "unevaluatedProperties": false
}