{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://mcp.phenomenalabs.com/schemas/exhibition-manifest.v0.json",
  "title": "Phenomena Labs Exhibition Manifest",
  "type": "object",
  "required": [
    "title",
    "theme",
    "durationCode",
    "layout",
    "runtime",
    "playlist"
  ],
  "properties": {
    "schema": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "slug": {
      "type": "string"
    },
    "theme": {
      "type": "string"
    },
    "duration": {
      "type": "string"
    },
    "durationCode": {
      "enum": [
        "1w",
        "1m",
        "1y"
      ]
    },
    "activation": {
      "type": "string"
    },
    "layout": {
      "enum": [
        "terminal",
        "gallery",
        "slideshow",
        "p5"
      ]
    },
    "runtime": {
      "type": "string"
    },
    "createdAt": {
      "type": "string"
    },
    "playlist": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "title",
          "url",
          "frame"
        ],
        "properties": {
          "id": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "projectUrl": {
            "type": "string"
          },
          "hash": {
            "type": "string"
          },
          "kind": {
            "enum": [
              "live-runtime",
              "project-page"
            ]
          },
          "frame": {
            "type": "string"
          }
        }
      }
    }
  }
}
