FormFields 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-form-fields-schema.json", "title": "FormFields", "description": "FormFields schema from Apache PDFBox", "type": "object", "properties": { "documentId": { "type": "string", "example": "doc-abc123" }, "fields": { "type": "array", "items": { "$ref": "#/components/schemas/FormField" } } } }