Apple Keynote · JSON Structure

Apple Keynote Slide Structure

A single slide within an Apple Keynote presentation

Type: object Properties: 6
AppleDesigniWorkPresentationsProductivitySlides

Slide is a JSON Structure definition published by Apple Keynote, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

slideNumber title layout skipped notes backgroundColor

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-slide-structure.json",
  "name": "Slide",
  "description": "A single slide within an Apple Keynote presentation",
  "type": "object",
  "properties": {
    "slideNumber": {
      "type": "int32",
      "description": "The 1-based position of the slide",
      "example": 1
    },
    "title": {
      "type": "string",
      "description": "The title displayed on the slide",
      "example": "Q4 Business Review"
    },
    "layout": {
      "type": "string",
      "description": "The slide layout name",
      "example": "Title - Center"
    },
    "skipped": {
      "type": "boolean",
      "description": "Whether this slide is skipped during playback",
      "example": false
    },
    "notes": {
      "type": "string",
      "description": "Presenter notes for the slide",
      "example": "Welcome to the review."
    },
    "backgroundColor": {
      "type": "string",
      "description": "Slide background color in hex",
      "example": "#FFFFFF"
    }
  }
}