{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/rings-results-fov",
  "title": "Concentric Rings FOV Summary Results: Field of View",
  "description": "The field of views calculated from a concentric rings FOV module analysis.",
  "type": "object",
  "properties": {
    "horizontal_deg": {
      "description": "The horizontal field of view in degrees.",
      "type": "number"
    },
    "vertical_deg": {
      "description": "The vertical field of view in degrees.",
      "type": "number"
    },
    "diagonal_deg": {
      "description": "The diagonal field of view in degrees. This is the average of the positive and negative diagonal FOVs.",
      "type": "number"
    },
    "positive_diagonal_deg": {
      "description": "The positive diagonal field of view in degrees.",
      "type": "number"
    },
    "negative_diagonal_deg": {
      "description": "The negative diagonal field of view in degrees.",
      "type": "number"
    }
  },
  "required": [
    "horizontal_deg",
    "vertical_deg",
    "diagonal_deg",
    "positive_diagonal_deg",
    "negative_diagonal_deg"
  ],
  "unevaluatedProperties": false
}