{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/7z/list-technical.json",
  "title": "7z/list-technical",
  "description": "7z l -slt archive and entry properties",
  "x-jsonize": {
    "definition": "7z/list-technical",
    "version": 1
  },
  "type": "object",
  "properties": {
    "banner": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "copyright": {
          "type": "string"
        },
        "date": {
          "type": "string"
        },
        "environment": {
          "type": "string"
        }
      },
      "required": [
        "version",
        "copyright",
        "date",
        "environment"
      ]
    },
    "scan": {
      "type": "object",
      "properties": {
        "files": {
          "type": "integer"
        },
        "bytes": {
          "type": "integer"
        },
        "size": {
          "type": "string"
        }
      },
      "required": [
        "files",
        "bytes",
        "size"
      ]
    },
    "archive": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        }
      },
      "required": [
        "name"
      ]
    },
    "properties": {
      "type": "object",
      "properties": {
        "Blocks": {
          "type": "integer"
        },
        "Headers Size": {
          "type": "integer"
        },
        "Physical Size": {
          "type": "integer"
        },
        "Solid": {
          "type": "boolean"
        }
      },
      "additionalProperties": {
        "type": "string"
      }
    },
    "entries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Accessed": {
            "type": [
              "string",
              "null"
            ]
          },
          "Block": {
            "type": [
              "integer",
              "null"
            ]
          },
          "CRC": {
            "type": [
              "string",
              "null"
            ]
          },
          "Comment": {
            "type": [
              "string",
              "null"
            ]
          },
          "Created": {
            "type": [
              "string",
              "null"
            ]
          },
          "Encrypted": {
            "type": "boolean"
          },
          "Folder": {
            "type": "boolean"
          },
          "Method": {
            "type": [
              "string",
              "null"
            ]
          },
          "Modified": {
            "type": [
              "string",
              "null"
            ]
          },
          "Packed Size": {
            "type": [
              "integer",
              "null"
            ]
          },
          "Size": {
            "type": [
              "integer",
              "null"
            ]
          }
        },
        "additionalProperties": {
          "type": "string"
        }
      }
    }
  },
  "required": [
    "banner",
    "scan",
    "archive",
    "properties",
    "entries"
  ]
}
