Apache PDFBox · Schema

SplitRequest

SplitRequest schema from Apache PDFBox

Document ProcessingJavaPDFText ExtractionApacheOpen-Source

Properties

Name Type Description
splitAtPages array Page numbers at which to split
View JSON Schema on GitHub

JSON Schema

apache-pdfbox-split-request-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-split-request-schema.json",
  "title": "SplitRequest",
  "description": "SplitRequest schema from Apache PDFBox",
  "type": "object",
  "properties": {
    "splitAtPages": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "Page numbers at which to split",
      "example": [
        5,
        10
      ]
    }
  }
}