{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://weverlabs.com/schemas/work-order-creation-event.schema.json",
  "title": "Work Order Creation Event",
  "type": "object",
  "required": [
    "event_id",
    "event_type",
    "work_order_id",
    "intake_request_id",
    "requested_tool",
    "created_at"
  ],
  "properties": {
    "event_id": {
      "type": "string"
    },
    "event_type": {
      "type": "string",
      "const": "work_order_created"
    },
    "work_order_id": {
      "type": "string"
    },
    "intake_request_id": {
      "type": "string"
    },
    "requested_tool": {
      "type": "string"
    },
    "runtime_record_id": {
      "type": "string"
    },
    "task_token": {
      "type": "string"
    },
    "queue_state": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "links": {
      "type": "object"
    }
  }
}
