Apache POI · JSON Structure

Apache Poi Shape Structure

Shape on a PowerPoint slide

Type: object Properties: 4
Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Shape 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

id name type text

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-shape-structure.json",
  "description": "Shape on a PowerPoint slide",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "Shape identifier"
    },
    "name": {
      "type": "string",
      "description": "Shape name"
    },
    "type": {
      "type": "string",
      "description": "Shape type (TextBox, Picture, Table, etc.)"
    },
    "text": {
      "type": "string",
      "description": "Text content of the shape"
    }
  },
  "name": "Shape"
}