Apache POI · JSON Structure

Apache Poi Presentation Structure

PowerPoint presentation

Type: object Properties: 4
Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Presentation 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 format slides

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-presentation-structure.json",
  "description": "PowerPoint presentation",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Presentation identifier"
    },
    "name": {
      "type": "string",
      "description": "Presentation filename"
    },
    "format": {
      "type": "string",
      "enum": [
        "PPT",
        "PPTX"
      ],
      "description": "Presentation format"
    },
    "slides": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Slide"
      }
    }
  },
  "name": "Presentation"
}