{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/common-results-registration-mark",
  "title": "Registration Mark",
  "description": "Information about a detected registration mark.",
  "type": "object",
  "properties": {
    "regmark_center_px": {
      "description": "The detected center of the registration mark.",
      "type": "array",
      "items": {
        "type": "number"
      }
    },
    "regmark_radius_px": {
      "description": "The detected radius of the registration mark.",
      "type": "number"
    }
  },
  "required": [
    "regmark_center_px",
    "regmark_radius_px"
  ],
  "unevaluatedProperties": false
}