Apache POI · JSON Structure

Apache Poi Workbook Request Structure

Request to create an Excel workbook

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

WorkbookRequest 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 sheets

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-workbook-request-structure.json",
  "description": "Request to create an Excel workbook",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Workbook filename"
    },
    "format": {
      "type": "string",
      "enum": [
        "XLS",
        "XLSX"
      ],
      "description": "Output format"
    },
    "sheets": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Initial sheet names"
    }
  },
  "required": [
    "name",
    "format"
  ],
  "name": "WorkbookRequest"
}