{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://weverlabs.com/schemas/controlled-pilot-step-event.schema.json",
  "title": "Controlled Pilot Step Event",
  "type": "object",
  "required": [
    "event_id",
    "pilot_id",
    "task_token",
    "step",
    "state",
    "created_at"
  ],
  "properties": {
    "event_id": {
      "type": "string"
    },
    "pilot_id": {
      "type": "string"
    },
    "task_token": {
      "type": "string"
    },
    "step": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "tool": {
      "type": "string"
    },
    "event_payload": {
      "type": "object",
      "additionalProperties": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "additionalProperties": true
}
