Apache POI · Schema

Presentation

PowerPoint presentation

Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Properties

Name Type Description
id string Presentation identifier
name string Presentation filename
format string Presentation format
slides array
View JSON Schema on GitHub

JSON Schema

apache-poi-presentation-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-presentation-schema.json",
  "title": "Presentation",
  "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"
      }
    }
  }
}