{ "$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" ] }