{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/common-header",
  "title": "Imatest Header",
  "description": "Common information about an Imatest analysis run.",
  "type": "object",
  "properties": {
    "imatest_version": {
      "description": "The version of Imatest that was used for the analysis.",
      "type": "string"
    },
    "build": {
      "description": "The build of Imatest that was used.",
      "type": "string"
    },
    "run_date_time": {
      "description": "The date and time of the Imatest analysis run.",
      "type": "string"
    },
    "ini_file": {
      "description": "The INI file that was used for the run.",
      "$ref": "https://www.imatest.com/schema/25-1/common-filename-md5"
    },
    "memory": {
      "description": "Information about the memory usage.",
      "$ref": "https://www.imatest.com/schema/25-1/common-memory"
    }
  },
  "required": [
    "imatest_version",
    "build",
    "run_date_time",
    "ini_file",
    "memory"
  ],
  "unevaluatedProperties": false
}