{
  "$schema": "https://pptx.dev/schema/registry/v1",
  "name": "example-full",
  "version": "1.0.0",
  "homepage": "https://pptx.dev/examples/registries",
  "items": [
    {
      "id": "executive-briefing-layout",
      "kind": "layout",
      "name": "Executive Briefing",
      "description": "A focused briefing slide with a headline, evidence column, and decision panel.",
      "opf": {
        "$schema": "https://pptx.dev/schema/opf/v1",
        "version": "1.0",
        "meta": { "title": "Executive Briefing Example" },
        "design": { "theme": "northstar-boardroom" },
        "slides": [
          {
            "id": "s1",
            "layout": "executive-briefing-layout",
            "elements": [
              { "id": "headline", "type": "text" },
              { "id": "metric-chart", "type": "chart", "chartType": "bar", "data": { "labels": ["Q1", "Q2"], "values": [18, 24] } },
              { "id": "decision", "type": "shape" }
            ]
          }
        ]
      },
      "requires": ["northstar-boardroom"]
    },
    {
      "id": "harbor-contrast",
      "kind": "color-scheme",
      "name": "Harbor Contrast",
      "description": "Deep charcoal backgrounds with teal and amber accents for technical briefings.",
      "opf": {
        "design": {
          "colors": {
            "background": "#111827",
            "foreground": "#f8fafc",
            "primary": "#14b8a6",
            "accent": "#f59e0b"
          }
        }
      }
    },
    {
      "id": "atlas-sans",
      "kind": "font-scheme",
      "name": "Atlas Sans",
      "description": "A compact sans-serif pairing for dense product and board decks.",
      "opf": {
        "design": {
          "fonts": {
            "heading": "Inter",
            "body": "Inter",
            "mono": "Geist Mono"
          }
        }
      }
    },
    {
      "id": "northstar-boardroom",
      "kind": "theme",
      "name": "Northstar Boardroom",
      "description": "A fictional executive theme combining Harbor Contrast colors and Atlas Sans typography.",
      "opf": {
        "design": {
          "theme": "northstar-boardroom",
          "colors": { "scheme": "harbor-contrast" },
          "fonts": { "scheme": "atlas-sans" },
          "layoutPreferences": { "density": "executive-summary" }
        }
      },
      "requires": ["harbor-contrast", "atlas-sans"]
    }
  ]
}
