{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://weverlabs.com/schemas/first-pilot-run-execution.schema.json",
  "title": "First Pilot Run Execution",
  "type": "object",
  "required": [
    "schema_version",
    "mode",
    "pilot_intake_request_id"
  ],
  "properties": {
    "schema_version": {
      "const": "first_pilot_run_execution.v1"
    },
    "mode": {
      "enum": [
        "read_execution_queue",
        "execute_bounded_pilot_run",
        "execute_first_pilot",
        "dispatch_for_review"
      ]
    },
    "pilot_intake_request_id": {
      "type": "string"
    },
    "operator_notes": {
      "type": "string"
    }
  },
  "additionalProperties": true
}
