{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/pdfimages/list.json",
  "title": "pdfimages/list",
  "description": "pdfimages -list, the images of a PDF with their size, color and encoding",
  "x-jsonize": {
    "definition": "pdfimages/list",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "page": {
        "type": "integer"
      },
      "num": {
        "type": "integer"
      },
      "type": {
        "type": "string"
      },
      "width": {
        "type": "integer"
      },
      "height": {
        "type": "integer"
      },
      "color": {
        "type": "string"
      },
      "components": {
        "type": "integer"
      },
      "bpc": {
        "type": "integer"
      },
      "encoding": {
        "type": "string"
      },
      "interpolate": {
        "type": "boolean"
      },
      "object": {
        "type": "integer"
      },
      "generation": {
        "type": "integer"
      },
      "x_ppi": {
        "type": [
          "integer",
          "null"
        ]
      },
      "y_ppi": {
        "type": [
          "integer",
          "null"
        ]
      },
      "size": {
        "type": "string"
      },
      "ratio": {
        "type": [
          "number",
          "null"
        ]
      }
    },
    "required": [
      "page",
      "num",
      "type",
      "width",
      "height",
      "color",
      "components",
      "bpc",
      "encoding",
      "interpolate",
      "object",
      "generation",
      "x_ppi",
      "y_ppi",
      "size",
      "ratio"
    ]
  }
}
