{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/md5sum/check.json",
  "title": "md5sum/check",
  "description": "md5sum -c and the other checksum tools' verification verdicts",
  "x-jsonize": {
    "definition": "md5sum/check",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "escaped": {
        "type": "boolean"
      },
      "file": {
        "type": "string"
      },
      "status": {
        "type": "string",
        "enum": [
          "FAILED",
          "FAILED open or read",
          "OK"
        ]
      }
    },
    "required": [
      "file",
      "status"
    ]
  }
}
