{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/common-settings-registration-mark",
  "title": "Registration Mark Detection",
  "description": "The user-provided settings for detecting registration marks.",
  "type": "object",
  "properties": {
    "method": {
      "description": "The user-provided method for detecting registration marks.",
      "type": "string",
      "enum": [
        "Classic Autodetect",
        "ML/CV Autodetect"
      ]
    },
    "confidence_threshold": {
      "description": "The user-provided machine vision confidence threshold.",
      "type": "number"
    },
    "high_noise": {
      "description": "The user-provided option to enable high-noise compensation.",
      "type": "boolean"
    },
    "skip_refinement": {
      "description": "The user-provided option to skip the refinement step.",
      "type": "boolean"
    }
  },
  "required": [
    "method",
    "high_noise",
    "skip_refinement"
  ],
  "unevaluatedProperties": false
}