Apple Keynote · JSON Structure

Apple Keynote Export Request Structure

Request body for exporting an Apple Keynote presentation

Type: object Properties: 3 Required: 1
AppleDesigniWorkPresentationsProductivitySlides

ExportRequest is a JSON Structure definition published by Apple Keynote, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

format includeNotes slideRange

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/apple-keynote/refs/heads/main/json-structure/apple-keynote-export-request-structure.json",
  "name": "ExportRequest",
  "description": "Request body for exporting an Apple Keynote presentation",
  "type": "object",
  "properties": {
    "format": {
      "type": "string",
      "enum": [
        "pdf",
        "pptx",
        "key",
        "html",
        "images"
      ],
      "description": "Export format",
      "example": "pdf"
    },
    "includeNotes": {
      "type": "boolean",
      "description": "Whether to include presenter notes",
      "example": true
    },
    "slideRange": {
      "type": "string",
      "description": "Slide range to export (e.g. 1-5,8)",
      "example": "1-24"
    }
  },
  "required": [
    "format"
  ]
}