{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/unzip/info-zip.json",
  "title": "unzip/info-zip",
  "description": "Info-ZIP unzip -l archive listing",
  "x-jsonize": {
    "definition": "unzip/info-zip",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "length": {
        "type": "integer"
      },
      "date": {
        "type": "string"
      },
      "time": {
        "type": "string"
      },
      "name": {
        "type": "string"
      }
    },
    "required": [
      "length",
      "date",
      "time",
      "name"
    ]
  }
}
