Apache POI · Schema

WorkbookRequest

Request to create an Excel workbook

Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen-Source

Properties

Name Type Description
name string Workbook filename
format string Output format
sheets array Initial sheet names
View JSON Schema on GitHub

JSON Schema

apache-poi-workbook-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-workbook-request-schema.json",
  "title": "WorkbookRequest",
  "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"
  ]
}