DocumentInfo schema from Apache PDFBox
{ "$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" } } }