{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://zeons.org/Forge/SDK/153/153.1/schemas/route-event.schema.json",
  "title": "ZEON Route Event",
  "type": "object",
  "required": [
    "event",
    "timestamp",
    "route_id",
    "trace_id"
  ],
  "properties": {
    "event": {
      "type": "string"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    },
    "route_id": {
      "type": "string"
    },
    "trace_id": {
      "type": "string"
    },
    "data": {
      "type": "object"
    }
  }
}