Apache POI · Schema

Slide

PowerPoint slide

Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Properties

Name Type Description
index integer Slide index (0-based)
title string Slide title text
shapes array
View JSON Schema on GitHub

JSON Schema

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