Apple Keynote · JSON Structure

Apple Keynote Theme Structure

An Apple Keynote theme defining the visual style of a presentation

Type: object Properties: 5
AppleDesigniWorkPresentationsProductivitySlides

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

Properties

name identifier category colorScheme fontFamily

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-theme-structure.json",
  "name": "Theme",
  "description": "An Apple Keynote theme defining the visual style of a presentation",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name of the theme",
      "example": "White"
    },
    "identifier": {
      "type": "string",
      "description": "Unique theme identifier",
      "example": "com.apple.themes.white"
    },
    "category": {
      "type": "string",
      "description": "Theme category (Basic, Bold, etc.)",
      "example": "Basic"
    },
    "colorScheme": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Primary colors used in theme"
    },
    "fontFamily": {
      "type": "string",
      "description": "Default font family for the theme",
      "example": "San Francisco"
    }
  }
}