Apache POI · JSON Structure

Apache Poi Slide Structure

PowerPoint slide

Type: object Properties: 3
Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

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

Properties

index title shapes

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-slide-structure.json",
  "description": "PowerPoint slide",
  "type": "object",
  "properties": {
    "index": {
      "type": "int32",
      "description": "Slide index (0-based)"
    },
    "title": {
      "type": "string",
      "description": "Slide title text"
    },
    "shapes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Shape"
      }
    }
  },
  "name": "Slide"
}