Apache POI · JSON Structure

Apache Poi Cell Data Structure

Cell data from an Excel sheet

Type: object Properties: 2
Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

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

Properties

rows range

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-cell-data-structure.json",
  "description": "Cell data from an Excel sheet",
  "type": "object",
  "properties": {
    "rows": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "$ref": "#/components/schemas/Cell"
        }
      }
    },
    "range": {
      "type": "string",
      "description": "Cell range returned"
    }
  },
  "name": "CellData"
}