Apache POI · Schema

DocumentRequest

Request to create a Word document

Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen-Source

Properties

Name Type Description
name string Document filename
format string Document format
content string Initial text content
View JSON Schema on GitHub

JSON Schema

apache-poi-document-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-poi/refs/heads/main/json-schema/apache-poi-document-request-schema.json",
  "title": "DocumentRequest",
  "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"
  ]
}