Apache POI · Schema

CellData

Cell data from an Excel sheet

Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Properties

Name Type Description
rows array
range string Cell range returned
View JSON Schema on GitHub

JSON Schema

apache-poi-cell-data-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-cell-data-schema.json",
  "title": "CellData",
  "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"
    }
  }
}