Apple Keynote · JSON Structure

Apple Keynote Presentation Structure

Schema representing the structure of an Apple Keynote presentation, including slides, text elements, images, shapes, transitions, and build animations.

Type: object Properties: 9 Required: 2
AppleDesigniWorkPresentationsProductivitySlides

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

Properties

title description author createdDate modifiedDate theme slideSize slides metadata

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://github.com/api-search/apple-keynote/json-structure/apple-keynote-presentation-structure.json",
  "name": "Apple Keynote Presentation",
  "description": "Schema representing the structure of an Apple Keynote presentation, including slides, text elements, images, shapes, transitions, and build animations.",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "The title of the Keynote presentation."
    },
    "description": {
      "type": "string",
      "description": "A description or subtitle for the presentation."
    },
    "author": {
      "type": "string",
      "description": "The author or creator of the presentation."
    },
    "createdDate": {
      "type": "datetime",
      "description": "The date and time the presentation was created."
    },
    "modifiedDate": {
      "type": "datetime",
      "description": "The date and time the presentation was last modified."
    },
    "theme": {
      "$ref": "#/$defs/Theme",
      "description": "The theme applied to the presentation."
    },
    "slideSize": {
      "$ref": "#/$defs/SlideSize",
      "description": "The dimensions of the presentation slides."
    },
    "slides": {
      "type": "array",
      "description": "The ordered collection of slides in the presentation.",
      "items": {
        "$ref": "#/$defs/Slide"
      }
    },
    "metadata": {
      "$ref": "#/$defs/Metadata",
      "description": "Additional metadata about the presentation."
    }
  },
  "required": [
    "title",
    "slides"
  ]
}