Apache POI · Schema

Shape

Shape on a PowerPoint slide

Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Properties

Name Type Description
id integer Shape identifier
name string Shape name
type string Shape type (TextBox, Picture, Table, etc.)
text string Text content of the shape
View JSON Schema on GitHub

JSON Schema

apache-poi-shape-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-shape-schema.json",
  "title": "Shape",
  "description": "Shape on a PowerPoint slide",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "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"
    }
  }
}