Apache POI · Schema

PresentationRequest

Request to create a PowerPoint presentation

Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Properties

Name Type Description
name string Presentation filename
format string Presentation format
slideCount integer Initial number of blank slides
View JSON Schema on GitHub

JSON Schema

apache-poi-presentation-request-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-request-schema.json",
  "title": "PresentationRequest",
  "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": "integer",
      "description": "Initial number of blank slides"
    }
  },
  "required": [
    "name",
    "format"
  ]
}