Apache POI · JSON Structure

Apache Poi Document Structure

Word document

Type: object Properties: 5
Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

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

Properties

id name format paragraphs pageCount

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-poi/refs/heads/main/json-structure/apache-poi-document-structure.json",
  "description": "Word document",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Document identifier"
    },
    "name": {
      "type": "string",
      "description": "Document filename"
    },
    "format": {
      "type": "string",
      "enum": [
        "DOC",
        "DOCX"
      ],
      "description": "Document format"
    },
    "paragraphs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Paragraph"
      }
    },
    "pageCount": {
      "type": "int32",
      "description": "Estimated page count"
    }
  },
  "name": "Document"
}