Apache POI · JSON Structure

Apache Poi Sheet Structure

Excel worksheet

Type: object Properties: 4
Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Sheet is a JSON Structure definition published by Apache POI, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name index rowCount columnCount

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-sheet-structure.json",
  "description": "Excel worksheet",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Sheet name"
    },
    "index": {
      "type": "int32",
      "description": "Sheet index (0-based)"
    },
    "rowCount": {
      "type": "int32",
      "description": "Number of rows with data"
    },
    "columnCount": {
      "type": "int32",
      "description": "Number of columns with data"
    }
  },
  "name": "Sheet"
}