{}OPF

Examples

Use real .opf.json files as fixtures for validators, renderers, agents, and conversion tests.

Technical examples

Feature-focused fixtures that each exercise one part of the format — charts, tables, regions, metadata forms. Use them to test a renderer or validator against a single behavior.

Minimal OPF Deck

The smallest useful deck shows the core contract: document metadata plus a slides array.

examples/technical/minimal.opf.json
{
  "name": "Minimal OPF Deck",
  "slides": [
    {
      "title": "Minimal OPF Deck"
    },
    {
      "title": "What This Shows",
      "items": [
        "A title slide",
        "A simple list slide",
        "A closing slide"
      ]
    },
    {
      "title": "Next Steps",
      "text": "Use this as a small valid OPF starting point."
    }
  ]
}