{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/apt-cache/show.json",
  "title": "apt-cache/show",
  "description": "apt-cache show, the package records APT has for a name",
  "x-jsonize": {
    "definition": "apt-cache/show",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "package": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          }
        },
        "required": [
          "name"
        ]
      },
      "fields": {
        "type": "object",
        "properties": {
          "Breaks": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "Conflicts": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "Depends": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "Enhances": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "Installed-Size": {
            "type": "integer"
          },
          "Pre-Depends": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "Provides": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "Recommends": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "Replaces": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "Size": {
            "type": "integer"
          },
          "Suggests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "Task": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "additionalProperties": {
          "type": "string"
        }
      }
    },
    "required": [
      "package",
      "fields"
    ]
  }
}
