Apache POI · JSON Structure

Apache Poi Document Request Structure

Request to create a Word document

Type: object Properties: 3 Required: 2
Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

DocumentRequest is a JSON Structure definition published by Apache POI, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name format content

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-request-structure.json",
  "description": "Request to create a Word document",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Document filename"
    },
    "format": {
      "type": "string",
      "enum": [
        "DOC",
        "DOCX"
      ],
      "description": "Document format"
    },
    "content": {
      "type": "string",
      "description": "Initial text content"
    }
  },
  "required": [
    "name",
    "format"
  ],
  "name": "DocumentRequest"
}