{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "http://schema.mydesignsystem.com/cms/event-list.schema.json",
  "title": "Event List",
  "description": "Event list component for displaying a list of events with filtering options.",
  "type": "object",
  "properties": {
    "filter": {
      "$ref": "http://schema.mydesignsystem.com/event-filter.schema.json"
    },
    "events": {
      "type": "array",
      "items": {
        "$ref": "http://schema.mydesignsystem.com/event-list-teaser.schema.json"
      }
    }
  },
  "additionalProperties": false
}
