Apache PDFBox · Schema

DocumentInfo

DocumentInfo schema from Apache PDFBox

Document ProcessingJavaPDFText ExtractionApacheOpen-Source

Properties

Name Type Description
documentId string
title string
pageCount integer
fileSize integer
version string
View JSON Schema on GitHub

JSON Schema

apache-pdfbox-document-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-pdfbox/refs/heads/main/json-schema/apache-pdfbox-document-info-schema.json",
  "title": "DocumentInfo",
  "description": "DocumentInfo schema from Apache PDFBox",
  "type": "object",
  "properties": {
    "documentId": {
      "type": "string",
      "example": "doc-abc123"
    },
    "title": {
      "type": "string",
      "example": "My Document"
    },
    "pageCount": {
      "type": "integer",
      "example": 10
    },
    "fileSize": {
      "type": "integer",
      "example": 204800
    },
    "version": {
      "type": "string",
      "example": "1.4"
    }
  }
}