{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/common-filename-md5",
  "title": "Filename + MD5 Hash",
  "description": "A filename and its MD5 hash.",
  "type": "object",
  "properties": {
    "filename": {
      "description": "The path to a file.",
      "type": "string"
    },
    "md5": {
      "description": "The MD5 hash of the file.",
      "type": "string",
      "$comment": "If the file does not exist, then the reported MD5 hash will be an empty string."
    }
  },
  "required": [
    "filename",
    "md5"
  ],
  "unevaluatedProperties": false
}