Apache PDFBox · Schema

FormField

FormField schema from Apache PDFBox

Document ProcessingJavaPDFText ExtractionApacheOpen-Source

Properties

Name Type Description
name string
type string
value string
required boolean
View JSON Schema on GitHub

JSON Schema

apache-pdfbox-form-field-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-form-field-schema.json",
  "title": "FormField",
  "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
    }
  }
}