{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "http://schema.mydesignsystem.com/event-header.schema.json",
  "title": "Event Header",
  "description": "Event header component for displaying event title, categories, and introductory text.",
  "type": "object",
  "properties": {
    "title": {
      "title": "Title",
      "description": "Title of the event",
      "type": "string"
    },
    "categories": {
      "title": "Categories",
      "description": "Categories associated with the event",
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "label": {
            "title": "Label",
            "description": "Label of the category",
            "type": "string"
          }
        },
        "additionalProperties": false
      }
    },
    "intro": {
      "title": "Intro",
      "description": "Introductory text for the event",
      "type": "string"
    }
  },
  "additionalProperties": false
}