Apache PDFBox · JSON Structure

Apache Pdfbox Create Document Request Structure

CreateDocumentRequest schema from Apache PDFBox

Type: object Properties: 3
Document ProcessingJavaPDFText ExtractionApacheOpen Source

CreateDocumentRequest is a JSON Structure definition published by Apache PDFBox, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

title author pageSize

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-pdfbox/refs/heads/main/json-structure/apache-pdfbox-create-document-request-structure.json",
  "description": "CreateDocumentRequest schema from Apache PDFBox",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "example": "My Document"
    },
    "author": {
      "type": "string",
      "example": "John Smith"
    },
    "pageSize": {
      "type": "string",
      "example": "A4",
      "enum": [
        "A4",
        "LETTER",
        "LEGAL",
        "A3",
        "A5"
      ]
    }
  },
  "name": "CreateDocumentRequest"
}