Apache POI · JSON Structure

Apache Poi Cell Structure

Individual Excel cell

Type: object Properties: 4
Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Cell 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

address value type formula

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-structure.json",
  "description": "Individual Excel cell",
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "Cell address (e.g. A1)"
    },
    "value": {
      "type": "string",
      "description": "Cell value as string"
    },
    "type": {
      "type": "string",
      "enum": [
        "STRING",
        "NUMERIC",
        "BOOLEAN",
        "FORMULA",
        "BLANK",
        "ERROR"
      ],
      "description": "Cell type"
    },
    "formula": {
      "type": "string",
      "description": "Formula if applicable"
    }
  },
  "name": "Cell"
}