{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/dpkg/list.json",
  "title": "dpkg/list",
  "description": "dpkg -l installed package table",
  "x-jsonize": {
    "definition": "dpkg/list",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "desired": {
        "type": "string"
      },
      "status": {
        "type": "string"
      },
      "error": {
        "type": "string"
      },
      "name": {
        "type": "string"
      },
      "version": {
        "type": "string"
      },
      "architecture": {
        "type": "string"
      },
      "description": {
        "type": "string"
      }
    },
    "required": [
      "desired",
      "status",
      "name",
      "version",
      "architecture"
    ]
  }
}
