Apache POI · Schema

Workbook

Excel workbook metadata

Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Properties

Name Type Description
id string Workbook identifier
name string Workbook filename
format string Office format (legacy XLS or modern XLSX)
sheetCount integer Number of sheets in the workbook
createdAt string Creation timestamp
View JSON Schema on GitHub

JSON Schema

apache-poi-workbook-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-schema.json",
  "title": "Workbook",
  "description": "Excel workbook metadata",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Workbook identifier"
    },
    "name": {
      "type": "string",
      "description": "Workbook filename"
    },
    "format": {
      "type": "string",
      "enum": [
        "XLS",
        "XLSX"
      ],
      "description": "Office format (legacy XLS or modern XLSX)"
    },
    "sheetCount": {
      "type": "integer",
      "description": "Number of sheets in the workbook"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Creation timestamp"
    }
  }
}