Apache POI · JSON Structure

Apache Poi Presentation Request Structure

Request to create a PowerPoint presentation

Type: object Properties: 3 Required: 2
Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

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

Properties

name format slideCount

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-request-structure.json",
  "description": "Request to create a PowerPoint presentation",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Presentation filename"
    },
    "format": {
      "type": "string",
      "enum": [
        "PPT",
        "PPTX"
      ],
      "description": "Presentation format"
    },
    "slideCount": {
      "type": "int32",
      "description": "Initial number of blank slides"
    }
  },
  "required": [
    "name",
    "format"
  ],
  "name": "PresentationRequest"
}