{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "gdd_telemetry_query",
  "type": "object",
  "properties": {
    "input": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "type": { "type": "string" },
        "since": { "type": "string", "format": "date-time" },
        "limit": { "type": "integer", "minimum": 1, "maximum": 10000 }
      }
    },
    "output": {
      "type": "object",
      "required": ["events"],
      "properties": {
        "events": { "type": "array", "items": { "type": "object" } }
      }
    }
  }
}
