Apache PDFBox · JSON Structure

Apache Pdfbox Form Field Structure

FormField schema from Apache PDFBox

Type: object Properties: 4
Document ProcessingJavaPDFText ExtractionApacheOpen Source

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

Properties

name type value required

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-form-field-structure.json",
  "description": "FormField schema from Apache PDFBox",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "firstName"
    },
    "type": {
      "type": "string",
      "example": "PDTextField",
      "enum": [
        "PDTextField",
        "PDCheckBox",
        "PDRadioButton",
        "PDComboBox",
        "PDListBox",
        "PDSignatureField"
      ]
    },
    "value": {
      "type": "string",
      "example": "John"
    },
    "required": {
      "type": "boolean",
      "example": false
    }
  },
  "name": "FormField"
}