{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "fair-events/events-list",
  "version": "0.1.0",
  "title": "Events List",
  "category": "widgets",
  "icon": "calendar-alt",
  "description": "Display a list of events with filtering options.",
  "keywords": [
    "events",
    "calendar",
    "list",
    "schedule"
  ],
  "textdomain": "fair-events",
  "attributes": {
    "timeFilter": {
      "type": "string",
      "enum": [
        "all",
        "upcoming",
        "past",
        "ongoing"
      ],
      "default": "upcoming"
    },
    "categories": {
      "type": "array",
      "default": [],
      "items": {
        "type": "number"
      }
    },
    "displayPattern": {
      "type": "string",
      "default": "fair-events/event-list"
    },
    "eventSources": {
      "type": "array",
      "default": [],
      "items": {
        "type": "string"
      }
    }
  },
  "supports": {
    "html": false,
    "anchor": true,
    "align": true
  },
  "editorScript": "file:./editor.js",
  "editorStyle": "file:./editor.css",
  "style": "file:./style-editor.css",
  "render": "file:./render.php"
}