@the-open-engine/zeroshot 6.45.0 → 6.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,951 @@
1
1
  // Generated from protocol/openengine-cluster/v1/schema.json. Do not edit.
2
- export const CLUSTER_PROTOCOL_SCHEMA = { "$defs": { "ActiveExecution": { "additionalProperties": false, "description": "One currently active graph-leaf execution.\n\n`execution` is the stable selector used by logs and attach. `node` is the graph-visible\nidentity that makes multiple simultaneous verifier executions obvious to a client.", "properties": { "execution": { "maxLength": 128, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "node": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" } }, "required": ["execution", "node"], "type": "object" }, "AdmissionTransition": { "additionalProperties": false, "properties": { "runId": { "type": "string" }, "seedInput": true, "spec": { "$ref": "#/$defs/GraphSpec" } }, "required": ["runId", "spec", "seedInput"], "type": "object" }, "AgentAttachClosedNotification": { "additionalProperties": false, "description": "Wire body of the terminal `subscription/closed` server notification for an `agent/attach`\nsubscription. Deliberately carries no cursor field -- `agent/attach` gives a type-level\n\"cursorless\" guarantee, unlike [`crate::SubscriptionClosedNotification`].", "properties": { "reason": { "$ref": "#/$defs/SubscriptionCloseReason" }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId", "reason"], "type": "object" }, "AgentAttachEvent": { "description": "The closed public agent-attach progress algebra. This is the only representable shape:\nreasoning, tools, provider frames, usage, and session identifiers have no variant. `Working`\nand `Settled` are empty struct variants rather than bare units: serde's internally tagged enum\ndeserialization silently ignores unknown fields on a unit variant regardless of\n`deny_unknown_fields`, which would otherwise let an unrepresentable field ride along\nundetected on either of these two variants.", "oneOf": [{ "additionalProperties": false, "properties": { "type": { "const": "working", "type": "string" } }, "required": ["type"], "type": "object" }, { "additionalProperties": false, "properties": { "text": { "maxLength": 16384, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]*$", "type": "string" }, "type": { "const": "output", "type": "string" } }, "required": ["type", "text"], "type": "object" }, { "additionalProperties": false, "properties": { "type": { "const": "settled", "type": "string" } }, "required": ["type"], "type": "object" }] }, "AgentAttachEventNotification": { "$ref": "#/$defs/AgentAttachEventNotificationWire" }, "AgentAttachEventNotificationWire": { "additionalProperties": false, "properties": { "event": { "$ref": "#/$defs/AgentAttachEvent" }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId", "event"], "type": "object" }, "AgentAttachParams": { "additionalProperties": false, "description": "`agent/attach` establishment parameters: the named `{execution}` request. Deliberately closed,\nrejecting any unknown field.", "properties": { "execution": { "maxLength": 128, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" } }, "required": ["execution"], "type": "object" }, "AgentAttachResult": { "additionalProperties": false, "description": "The `agent/attach` establishment result: only a `subscriptionId`. Deliberately carries no\n`runId` or `atCursor` -- `agent/attach` is not run-scoped and has no cursor.", "properties": { "subscriptionId": { "type": "string" } }, "required": ["subscriptionId"], "type": "object" }, "ApplyParams": { "additionalProperties": false, "properties": { "dryRun": { "default": false, "type": "boolean" }, "graph": { "$ref": "#/$defs/GraphSpec" }, "idempotencyKey": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "ifGeneration": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "input": true }, "required": ["graph"], "type": "object" }, "ApplyResult": { "additionalProperties": false, "properties": { "deduped": { "type": "boolean" }, "diff": { "anyOf": [{ "$ref": "#/$defs/GraphDiff" }, { "type": "null" }] }, "generation": { "maximum": 9007199254740991, "minimum": 0, "type": ["integer", "null"] }, "phase": { "$ref": "#/$defs/Phase" }, "runId": { "type": ["string", "null"] } }, "required": ["phase", "deduped"], "type": "object" }, "ArtifactLineage": { "additionalProperties": false, "properties": { "attempt": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "generation": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "runId": { "type": "string" } }, "required": ["generation", "runId", "attempt"], "type": "object" }, "ArtifactProducer": { "additionalProperties": false, "properties": { "node": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "worker": { "maxLength": 256, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*@[1-9][0-9]*$", "type": "string" } }, "required": ["node", "worker"], "type": "object" }, "ArtifactRef": { "additionalProperties": false, "properties": { "artifactId": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "byteLength": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "lineage": { "$ref": "#/$defs/ArtifactLineage" }, "mediaType": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "producer": { "$ref": "#/$defs/ArtifactProducer" }, "redaction": { "$ref": "#/$defs/RedactionClass" }, "sha256": { "pattern": "^[0-9a-f]{64}$", "type": "string" }, "typeId": { "maxLength": 256, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*@[1-9][0-9]*$", "type": "string" } }, "required": ["artifactId", "sha256", "byteLength", "mediaType", "typeId", "producer", "lineage", "redaction"], "type": "object" }, "BackendFault": { "$ref": "#/$defs/BackendFaultWire" }, "BackendFaultWire": { "additionalProperties": false, "properties": { "action": { "$ref": "#/$defs/FaultAction" }, "code": { "$ref": "#/$defs/FaultCode" }, "consequence": { "$ref": "#/$defs/FaultConsequence" }, "eventId": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "executionRef": { "default": null, "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": ["string", "null"] }, "retry": { "$ref": "#/$defs/FaultRetryDisposition" }, "severity": { "$ref": "#/$defs/FaultSeverity" }, "source": { "items": { "$ref": "#/$defs/FaultSourceFrame" }, "maxItems": 8, "type": "array" }, "summary": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" } }, "required": ["eventId", "code", "consequence", "retry", "action", "severity", "summary", "source"], "type": "object" }, "CancelRequestParams": { "additionalProperties": false, "description": "Wire body of the `$/cancelRequest` client notification: best-effort cancellation of an\nin-flight unary request by its `RequestId`. Unknown or already-completed ids are a silent\nno-op; cancelling after the backend has committed leaves that committed state unchanged and\nemits no response or compensation.", "properties": { "id": { "$ref": "#/$defs/RequestId" } }, "required": ["id"], "type": "object" }, "ChoiceBranch": { "additionalProperties": false, "properties": { "node": { "$ref": "#/$defs/GraphNode" }, "when": { "$ref": "#/$defs/Guard" } }, "required": ["when", "node"], "type": "object" }, "ClaudeProvider": { "enum": ["anthropic", "openrouter"], "type": "string" }, "ClusterStatus": { "properties": { "atCursor": { "type": ["string", "null"] }, "currentRunId": { "type": ["string", "null"] }, "observedGeneration": { "maximum": 9007199254740991, "minimum": 0, "type": ["integer", "null"] }, "operational": { "anyOf": [{ "$ref": "#/$defs/OperationalStatus" }, { "type": "null" }] }, "phase": { "$ref": "#/$defs/Phase" } }, "required": ["phase"], "type": "object" }, "CodexProvider": { "enum": ["openai", "openrouter"], "type": "string" }, "ControlSelector": { "additionalProperties": false, "properties": { "field": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": ["string", "null"] }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "source": { "$ref": "#/$defs/ControlSource" } }, "required": ["name", "source"], "type": "object" }, "ControlSource": { "enum": ["signal", "error", "group"], "type": "string" }, "DataSelector": { "oneOf": [{ "additionalProperties": false, "properties": { "path": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 64, "minItems": 1, "type": "array" }, "source": { "const": "state", "type": "string" } }, "required": ["source", "path"], "type": "object" }, { "additionalProperties": false, "properties": { "path": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 64, "minItems": 1, "type": "array" }, "source": { "const": "item", "type": "string" } }, "required": ["source", "path"], "type": "object" }] }, "DeclaredEnvironment": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_]*$", "type": "string" }, "maxItems": 64, "type": "array", "uniqueItems": true }, "DeleteParams": { "additionalProperties": false, "properties": { "idempotencyKey": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "ifGeneration": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "ifRunId": { "type": ["string", "null"] } }, "required": ["ifGeneration", "idempotencyKey"], "type": "object" }, "DeleteResult": { "additionalProperties": false, "properties": { "atCursor": { "type": ["string", "null"] }, "deduped": { "type": "boolean" }, "deleted": { "type": "boolean" }, "generation": { "maximum": 9007199254740991, "minimum": 0, "type": ["integer", "null"] }, "phase": { "$ref": "#/$defs/Phase" }, "runId": { "type": ["string", "null"] } }, "required": ["deleted", "phase", "deduped"], "type": "object" }, "DiagnosticPathSegment": { "oneOf": [{ "additionalProperties": false, "properties": { "kind": { "const": "field", "type": "string" }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" } }, "required": ["kind", "name"], "type": "object" }, { "additionalProperties": false, "properties": { "index": { "format": "uint32", "maximum": 4294967295, "minimum": 0, "type": "integer" }, "kind": { "const": "index", "type": "string" } }, "required": ["kind", "index"], "type": "object" }, { "additionalProperties": false, "properties": { "kind": { "const": "node", "type": "string" }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" } }, "required": ["kind", "name"], "type": "object" }] }, "DiagnosticSeverity": { "enum": ["error", "warning", "info"], "type": "string" }, "DispatchState": { "enum": ["active", "suspended", "draining", "force_stopping", "stopped"], "type": "string" }, "DomainErrorData": { "properties": { "code": { "type": "string" }, "details": true }, "required": ["code"], "type": "object" }, "EventNotification": { "additionalProperties": false, "description": "Wire body of the generic `event` server notification.", "properties": { "cursor": { "type": "string" }, "event": { "$ref": "#/$defs/WatchEvent" }, "runId": { "type": "string" }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId", "runId", "cursor", "event"], "type": "object" }, "FaultAction": { "description": "Descriptive only, like [`FaultRetryDisposition`]: naming `Retry` never itself retries or\nauthorizes a retry.", "enum": ["none", "retry", "wait", "escalate", "abort"], "type": "string" }, "FaultCode": { "enum": ["unavailable", "resource_exhausted", "deadline_exceeded", "permission_denied", "failed_precondition", "not_found", "aborted", "internal", "unknown"], "type": "string" }, "FaultConsequence": { "enum": ["turn_failed", "run_failed", "run_degraded", "no_observable_effect"], "type": "string" }, "FaultRetryDisposition": { "description": "Descriptive only: no `BackendFault` and no `fault` event ever performs or authorizes a retry.\nEvent ordering and emission never themselves change terminal semantics.", "enum": ["retryable", "retryable_after_backoff", "not_retryable", "indeterminate"], "type": "string" }, "FaultSeverity": { "enum": ["info", "warning", "error", "critical"], "type": "string" }, "FaultSourceFrame": { "additionalProperties": false, "properties": { "component": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" } }, "required": ["component"], "type": "object" }, "GetParams": { "additionalProperties": false, "properties": { "atCursor": { "default": null, "type": ["string", "null"] } }, "type": "object" }, "GetResult": { "properties": { "atCursor": { "type": ["string", "null"] }, "spec": { "anyOf": [{ "$ref": "#/$defs/GraphSpec" }, { "type": "null" }] }, "status": { "$ref": "#/$defs/ClusterStatus" }, "terminalResult": { "anyOf": [{ "$ref": "#/$defs/TerminalResult" }, { "type": "null" }] } }, "required": ["status"], "type": "object" }, "GraphDiagnostic": { "additionalProperties": false, "properties": { "code": { "$ref": "#/$defs/GraphDiagnosticCode" }, "message": { "type": "string" }, "path": { "items": { "$ref": "#/$defs/DiagnosticPathSegment" }, "type": "array" }, "relatedNodes": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "type": "array" }, "severity": { "$ref": "#/$defs/DiagnosticSeverity" } }, "required": ["severity", "code", "message", "path", "relatedNodes"], "type": "object" }, "GraphDiagnosticCode": { "enum": ["schema_safety", "reachability", "choice_exhaustiveness", "loop_exit_satisfiability", "missing_bound", "write_conflict", "ceiling_exceeded", "cyclic_reference", "undefined_read", "invalid_graph_shape"], "type": "string" }, "GraphDiff": { "additionalProperties": false, "properties": { "added": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "type": "array" }, "changed": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "type": "array" }, "removed": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "type": "array" } }, "required": ["added", "removed", "changed"], "type": "object" }, "GraphNode": { "oneOf": [{ "additionalProperties": false, "properties": { "attempts": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "input": { "$ref": "#/$defs/PayloadType" }, "inputBindings": { "items": { "$ref": "#/$defs/InputBinding" }, "type": "array" }, "instructions": { "anyOf": [{ "$ref": "#/$defs/NodeInstructions" }, { "type": "null" }] }, "kind": { "const": "step", "type": "string" }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "output": { "$ref": "#/$defs/PayloadType" }, "timeoutMs": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "worker": { "maxLength": 256, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*@[1-9][0-9]*$", "type": "string" }, "writeBindings": { "items": { "$ref": "#/$defs/WriteBinding" }, "type": "array" } }, "required": ["kind", "name", "worker", "input", "output", "inputBindings", "writeBindings", "timeoutMs", "attempts"], "type": "object" }, { "additionalProperties": false, "properties": { "attempts": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "diagnostic": { "$ref": "#/$defs/PayloadType" }, "input": { "$ref": "#/$defs/PayloadType" }, "inputBindings": { "items": { "$ref": "#/$defs/InputBinding" }, "type": "array" }, "instructions": { "anyOf": [{ "$ref": "#/$defs/NodeInstructions" }, { "type": "null" }] }, "kind": { "const": "verifier", "type": "string" }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "output": { "$ref": "#/$defs/PayloadType" }, "signals": { "additionalProperties": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 4096, "minItems": 1, "type": "array", "uniqueItems": true }, "propertyNames": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "type": "object" }, "timeoutMs": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "worker": { "maxLength": 256, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*@[1-9][0-9]*$", "type": "string" }, "writeBindings": { "items": { "$ref": "#/$defs/WriteBinding" }, "type": "array" } }, "required": ["kind", "name", "worker", "input", "output", "inputBindings", "writeBindings", "timeoutMs", "attempts", "signals", "diagnostic"], "type": "object" }, { "additionalProperties": false, "properties": { "children": { "$ref": "#/$defs/NonEmptyVec_of_GraphNode" }, "kind": { "const": "seq", "type": "string" }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "promotedStatePaths": { "items": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 64, "minItems": 1, "type": "array" }, "type": "array" }, "state": { "$ref": "#/$defs/PayloadType" } }, "required": ["kind", "name", "state", "children", "promotedStatePaths"], "type": "object" }, { "additionalProperties": false, "properties": { "branches": { "$ref": "#/$defs/NonEmptyVec_of_ChoiceBranch" }, "kind": { "const": "choice", "type": "string" }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "otherwise": { "anyOf": [{ "$ref": "#/$defs/GraphNode" }, { "type": "null" }] }, "promotedStatePaths": { "items": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 64, "minItems": 1, "type": "array" }, "type": "array" }, "state": { "$ref": "#/$defs/PayloadType" } }, "required": ["kind", "name", "state", "branches", "promotedStatePaths"], "type": "object" }, { "additionalProperties": false, "properties": { "branches": { "$ref": "#/$defs/NonEmptyVec_of_GraphNode" }, "join": { "$ref": "#/$defs/Join" }, "kind": { "const": "par", "type": "string" }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "promotedStatePaths": { "items": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 64, "minItems": 1, "type": "array" }, "type": "array" }, "state": { "$ref": "#/$defs/PayloadType" } }, "required": ["kind", "name", "state", "branches", "promotedStatePaths", "join"], "type": "object" }, { "additionalProperties": false, "properties": { "body": { "$ref": "#/$defs/GraphNode" }, "kind": { "const": "loop", "type": "string" }, "maxIterations": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "promotedStatePaths": { "items": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 64, "minItems": 1, "type": "array" }, "type": "array" }, "state": { "$ref": "#/$defs/PayloadType" }, "until": { "anyOf": [{ "$ref": "#/$defs/Guard" }, { "type": "null" }] } }, "required": ["kind", "name", "state", "body", "maxIterations", "promotedStatePaths"], "type": "object" }, { "additionalProperties": false, "properties": { "body": { "$ref": "#/$defs/GraphNode" }, "kind": { "const": "map", "type": "string" }, "maxItems": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "over": { "$ref": "#/$defs/DataSelector" }, "promotedStatePaths": { "items": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 64, "minItems": 1, "type": "array" }, "type": "array" }, "state": { "$ref": "#/$defs/PayloadType" } }, "required": ["kind", "name", "state", "body", "over", "maxItems", "promotedStatePaths"], "type": "object" }, { "additionalProperties": false, "properties": { "bindings": { "items": { "$ref": "#/$defs/InputBinding" }, "type": "array" }, "kind": { "const": "succeed", "type": "string" }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "output": { "$ref": "#/$defs/PayloadType" } }, "required": ["kind", "name", "output", "bindings"], "type": "object" }, { "additionalProperties": false, "properties": { "kind": { "const": "fail", "type": "string" }, "name": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "reason": { "maxLength": 128, "minLength": 1, "pattern": "^(?!unhandled$)[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" } }, "required": ["kind", "name", "reason"], "type": "object" }] }, "GraphProfile": { "enum": ["openengine.graph.full/v1", "openengine.graph.single-worker/v1"], "type": "string" }, "GraphSpec": { "additionalProperties": false, "properties": { "initialInput": { "$ref": "#/$defs/PayloadType" }, "policy": { "$ref": "#/$defs/PolicyBinding" }, "profile": { "$ref": "#/$defs/GraphProfile" }, "root": { "$ref": "#/$defs/GraphNode" } }, "required": ["profile", "initialInput", "policy", "root"], "type": "object" }, "Guard": { "oneOf": [{ "additionalProperties": false, "properties": { "kind": { "const": "in", "type": "string" }, "labels": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 4096, "minItems": 1, "type": "array", "uniqueItems": true }, "value": { "$ref": "#/$defs/ControlSelector" } }, "required": ["kind", "value", "labels"], "type": "object" }, { "additionalProperties": false, "properties": { "guards": { "$ref": "#/$defs/NonEmptyVec_of_Guard" }, "kind": { "const": "all", "type": "string" } }, "required": ["kind", "guards"], "type": "object" }, { "additionalProperties": false, "properties": { "guards": { "$ref": "#/$defs/NonEmptyVec_of_Guard" }, "kind": { "const": "any", "type": "string" } }, "required": ["kind", "guards"], "type": "object" }, { "additionalProperties": false, "properties": { "guard": { "$ref": "#/$defs/Guard" }, "kind": { "const": "not", "type": "string" } }, "required": ["kind", "guard"], "type": "object" }, { "additionalProperties": false, "properties": { "count": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "kind": { "const": "k_of_n", "type": "string" }, "labels": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 4096, "minItems": 1, "type": "array", "uniqueItems": true }, "values": { "$ref": "#/$defs/NonEmptyVec_of_ControlSelector" } }, "required": ["kind", "count", "values", "labels"], "type": "object" }, { "additionalProperties": false, "properties": { "count": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "kind": { "const": "k_of_map", "type": "string" }, "labels": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 4096, "minItems": 1, "type": "array", "uniqueItems": true }, "value": { "$ref": "#/$defs/ControlSelector" } }, "required": ["kind", "count", "value", "labels"], "type": "object" }] }, "InitializeParams": { "additionalProperties": false, "properties": { "protocolVersion": { "const": "openengine.cluster/v1", "type": "string" } }, "required": ["protocolVersion"], "type": "object" }, "InitializeResult": { "properties": { "capabilities": { "$ref": "#/$defs/ServerCapabilities" }, "protocolVersion": { "const": "openengine.cluster/v1", "type": "string" }, "status": { "$ref": "#/$defs/ClusterStatus" } }, "required": ["protocolVersion", "capabilities", "status"], "type": "object" }, "InputBinding": { "additionalProperties": false, "properties": { "target": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 64, "minItems": 1, "type": "array" }, "value": { "$ref": "#/$defs/DataSelector" } }, "required": ["target", "value"], "type": "object" }, "Join": { "oneOf": [{ "additionalProperties": false, "properties": { "kind": { "const": "all", "type": "string" } }, "required": ["kind"], "type": "object" }, { "additionalProperties": false, "properties": { "kind": { "const": "any", "type": "string" } }, "required": ["kind"], "type": "object" }, { "additionalProperties": false, "properties": { "count": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "kind": { "const": "quorum", "type": "string" } }, "required": ["kind", "count"], "type": "object" }, { "additionalProperties": false, "properties": { "kind": { "const": "first", "type": "string" }, "when": { "$ref": "#/$defs/Guard" } }, "required": ["kind", "when"], "type": "object" }] }, "JsonRpcError": { "properties": { "code": { "format": "int64", "type": "integer" }, "data": { "anyOf": [{ "$ref": "#/$defs/DomainErrorData" }, { "type": "null" }] }, "message": { "type": "string" } }, "required": ["code", "message"], "type": "object" }, "JsonRpcErrorResponse": { "properties": { "error": { "$ref": "#/$defs/JsonRpcError" }, "id": { "anyOf": [{ "$ref": "#/$defs/RequestId" }, { "type": "null" }] }, "jsonrpc": { "type": "string" } }, "required": ["jsonrpc", "error"], "type": "object" }, "JsonRpcNotification": { "properties": { "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/EventNotification" } }, "required": ["jsonrpc", "method", "params"], "type": "object" }, "JsonRpcNotification10": { "properties": { "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/RunLogEventNotification" } }, "required": ["jsonrpc", "method", "params"], "type": "object" }, "JsonRpcNotification11": { "properties": { "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/RunAttachEventNotification" } }, "required": ["jsonrpc", "method", "params"], "type": "object" }, "JsonRpcNotification2": { "properties": { "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/SubscriptionCancelParams" } }, "required": ["jsonrpc", "method", "params"], "type": "object" }, "JsonRpcNotification3": { "properties": { "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/SubscriptionClosedNotification" } }, "required": ["jsonrpc", "method", "params"], "type": "object" }, "JsonRpcNotification4": { "properties": { "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/CancelRequestParams" } }, "required": ["jsonrpc", "method", "params"], "type": "object" }, "JsonRpcNotification5": { "properties": { "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/LogEventNotification" } }, "required": ["jsonrpc", "method", "params"], "type": "object" }, "JsonRpcNotification6": { "properties": { "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/LogsClosedNotification" } }, "required": ["jsonrpc", "method", "params"], "type": "object" }, "JsonRpcNotification7": { "properties": { "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/AgentAttachEventNotification" } }, "required": ["jsonrpc", "method", "params"], "type": "object" }, "JsonRpcNotification8": { "properties": { "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/AgentAttachClosedNotification" } }, "required": ["jsonrpc", "method", "params"], "type": "object" }, "JsonRpcNotification9": { "properties": { "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/RunWatchEventNotification" } }, "required": ["jsonrpc", "method", "params"], "type": "object" }, "JsonRpcRequest": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/InitializeParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest10": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/WatchParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest11": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/LogsParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest12": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/AgentAttachParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest13": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/RunSubmitParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest14": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/RunListParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest15": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/RunStatusParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest16": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/RunWatchParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest17": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/RunLogsParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest18": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/RunAttachParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest19": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/RunForceParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest2": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/PlanParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest3": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/ApplyParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest4": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/GetParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest5": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/UpdateParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest6": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/StopParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest7": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/RetryParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest8": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/ResubmitParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcRequest9": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "method": { "type": "string" }, "params": { "$ref": "#/$defs/DeleteParams" } }, "required": ["jsonrpc", "id", "method", "params"], "type": "object" }, "JsonRpcResponse": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse10": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess10" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse11": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess11" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse12": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess12" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse13": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess13" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse14": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess14" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse15": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess15" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse16": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess16" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse17": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess17" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse18": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess18" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse19": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess19" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse2": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess2" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse3": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess3" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse4": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess4" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse5": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess5" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse6": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess6" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse7": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess7" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse8": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess8" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcResponse9": { "anyOf": [{ "$ref": "#/$defs/JsonRpcSuccess9" }, { "$ref": "#/$defs/JsonRpcErrorResponse" }] }, "JsonRpcSuccess": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/InitializeResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess10": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/WatchResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess11": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/LogsResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess12": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/AgentAttachResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess13": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/RunSubmitResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess14": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/RunListResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess15": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/RunStatusResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess16": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/RunWatchResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess17": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/RunLogsResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess18": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/RunAttachResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess19": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/RunForceResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess2": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/PlanResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess3": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/ApplyResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess4": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/GetResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess5": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/UpdateResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess6": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/StopResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess7": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/RetryResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess8": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/ResubmitResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "JsonRpcSuccess9": { "properties": { "id": { "$ref": "#/$defs/RequestId" }, "jsonrpc": { "type": "string" }, "result": { "$ref": "#/$defs/DeleteResult" } }, "required": ["jsonrpc", "id", "result"], "type": "object" }, "Labels": { "additionalProperties": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "maxProperties": 64, "propertyNames": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "type": "object" }, "LogEventNotification": { "$ref": "#/$defs/LogEventNotificationWire" }, "LogEventNotificationWire": { "additionalProperties": false, "properties": { "record": { "$ref": "#/$defs/LogRecord" }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId", "record"], "type": "object" }, "LogLevel": { "enum": ["trace", "debug", "info", "warn", "error"], "type": "string" }, "LogRecord": { "additionalProperties": false, "description": "The closed public log record shape: a level, a bounded target, and a bounded (possibly\nredacted) message. No raw bytes, reasoning, tools, credentials, env, or provider/session IDs\nare representable.", "properties": { "level": { "$ref": "#/$defs/LogLevel" }, "message": { "maxLength": 16384, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]*$", "type": "string" }, "target": { "maxLength": 128, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" } }, "required": ["level", "target", "message"], "type": "object" }, "LogsClosedNotification": { "additionalProperties": false, "description": "Wire body of the terminal `subscription/closed` server notification for a `logs` subscription.\nDeliberately carries no cursor field -- `logs` gives a type-level \"cursorless\" guarantee, unlike\n[`crate::SubscriptionClosedNotification`].", "properties": { "reason": { "$ref": "#/$defs/SubscriptionCloseReason" }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId", "reason"], "type": "object" }, "LogsParams": { "additionalProperties": false, "description": "`logs` establishment parameters. v1 has zero caller filters: this is deliberately empty and\nclosed, rejecting any unknown field.", "type": "object" }, "LogsResult": { "additionalProperties": false, "description": "The `logs` establishment result: only a `subscriptionId`. Deliberately carries no `runId` or\n`atCursor` -- `logs` is not run-scoped and has no cursor.", "properties": { "subscriptionId": { "type": "string" } }, "required": ["subscriptionId"], "type": "object" }, "NodeAddress": { "additionalProperties": false, "properties": { "attempt": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "node": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" } }, "required": ["node", "attempt"], "type": "object" }, "NodeInstructions": { "maxLength": 16384, "minLength": 1, "pattern": "^[^\\u0000]*[^\\s\\u0000][^\\u0000]*$", "type": "string" }, "NodeOutputChannel": { "enum": ["out", "signal", "diagnostic"], "type": "string" }, "NodeOutputSelector": { "additionalProperties": false, "properties": { "channel": { "$ref": "#/$defs/NodeOutputChannel" }, "node": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "path": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 64, "minItems": 1, "type": "array" } }, "required": ["node", "channel", "path"], "type": "object" }, "NodeRuntimeBinding": { "oneOf": [{ "additionalProperties": false, "properties": { "effort": { "anyOf": [{ "$ref": "#/$defs/ReasoningEffort" }, { "type": "null" }] }, "env": { "$ref": "#/$defs/DeclaredEnvironment" }, "kind": { "const": "agent", "type": "string" }, "model": { "maxLength": 128, "minLength": 1, "type": "string" }, "sessionScope": { "$ref": "#/$defs/SessionScope" } }, "required": ["kind", "model"], "type": "object" }, { "additionalProperties": false, "properties": { "env": { "$ref": "#/$defs/DeclaredEnvironment" }, "kind": { "const": "git_delivery", "type": "string" } }, "required": ["kind"], "type": "object" }] }, "NonEmptyVec_of_ChoiceBranch": { "items": { "$ref": "#/$defs/ChoiceBranch" }, "maxItems": 4096, "minItems": 1, "type": "array" }, "NonEmptyVec_of_ControlSelector": { "items": { "$ref": "#/$defs/ControlSelector" }, "maxItems": 4096, "minItems": 1, "type": "array" }, "NonEmptyVec_of_FieldPath": { "items": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 64, "minItems": 1, "type": "array" }, "maxItems": 4096, "minItems": 1, "type": "array" }, "NonEmptyVec_of_GraphNode": { "items": { "$ref": "#/$defs/GraphNode" }, "maxItems": 4096, "minItems": 1, "type": "array" }, "NonEmptyVec_of_Guard": { "items": { "$ref": "#/$defs/Guard" }, "maxItems": 4096, "minItems": 1, "type": "array" }, "NonEmptyVec_of_NodeName": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 4096, "minItems": 1, "type": "array" }, "OperationalStatus": { "additionalProperties": false, "properties": { "dispatchState": { "$ref": "#/$defs/DispatchState" }, "inFlight": { "format": "uint32", "minimum": 0, "type": "integer" }, "labels": { "$ref": "#/$defs/Labels" }, "logLevel": { "$ref": "#/$defs/LogLevel" }, "stopMode": { "anyOf": [{ "$ref": "#/$defs/StopMode" }, { "type": "null" }] } }, "required": ["labels", "logLevel", "dispatchState", "inFlight"], "type": "object" }, "PayloadType": { "oneOf": [{ "additionalProperties": false, "properties": { "kind": { "const": "null", "type": "string" } }, "required": ["kind"], "type": "object" }, { "additionalProperties": false, "properties": { "kind": { "const": "boolean", "type": "string" } }, "required": ["kind"], "type": "object" }, { "additionalProperties": false, "properties": { "kind": { "const": "integer", "type": "string" } }, "required": ["kind"], "type": "object" }, { "additionalProperties": false, "properties": { "kind": { "const": "number", "type": "string" } }, "required": ["kind"], "type": "object" }, { "additionalProperties": false, "properties": { "kind": { "const": "string", "type": "string" } }, "required": ["kind"], "type": "object" }, { "additionalProperties": false, "properties": { "fields": { "additionalProperties": { "$ref": "#/$defs/RecordField" }, "propertyNames": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "type": "object" }, "kind": { "const": "record", "type": "string" } }, "required": ["kind", "fields"], "type": "object" }, { "additionalProperties": false, "properties": { "items": { "$ref": "#/$defs/PayloadType" }, "kind": { "const": "array", "type": "string" } }, "required": ["kind", "items"], "type": "object" }, { "additionalProperties": false, "properties": { "kind": { "const": "enum", "type": "string" }, "values": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 4096, "minItems": 1, "type": "array", "uniqueItems": true } }, "required": ["kind", "values"], "type": "object" }] }, "Phase": { "enum": ["empty", "admitting", "running", "finished", "deleting"], "type": "string" }, "PlanParams": { "additionalProperties": false, "properties": { "graph": { "$ref": "#/$defs/GraphSpec" } }, "required": ["graph"], "type": "object" }, "PlanResult": { "additionalProperties": false, "properties": { "bounds": { "anyOf": [{ "$ref": "#/$defs/StructuralBounds" }, { "type": "null" }] }, "diagnostics": { "items": { "$ref": "#/$defs/GraphDiagnostic" }, "type": "array" }, "ok": { "type": "boolean" } }, "required": ["ok", "diagnostics"], "type": "object" }, "PolicyBinding": { "additionalProperties": false, "properties": { "default": { "$ref": "#/$defs/PolicyDefault" }, "policy": { "maxLength": 256, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*@[1-9][0-9]*$", "type": "string" } }, "required": ["policy", "default"], "type": "object" }, "PolicyDefault": { "enum": ["deny"], "type": "string" }, "ReasoningEffort": { "enum": ["low", "medium", "high", "xhigh", "max"], "type": "string" }, "RecordField": { "additionalProperties": false, "properties": { "required": { "type": "boolean" }, "type": { "$ref": "#/$defs/PayloadType" } }, "required": ["type", "required"], "type": "object" }, "RedactionClass": { "enum": ["public", "internal", "confidential", "restricted"], "type": "string" }, "RequestId": { "anyOf": [{ "type": "string" }, { "format": "int64", "type": "integer" }] }, "ResolvedSource": { "additionalProperties": false, "properties": { "branch": { "maxLength": 255, "minLength": 1, "type": "string" }, "repository": { "maxLength": 255, "minLength": 3, "pattern": "^[A-Za-z0-9._-]+/[A-Za-z0-9._-]+$", "type": "string" }, "revision": { "pattern": "^[0-9a-f]{40}$", "type": "string" } }, "required": ["repository", "branch", "revision"], "type": "object" }, "ResubmitParams": { "additionalProperties": false, "properties": { "idempotencyKey": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "ifGeneration": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "ifRunId": { "type": "string" }, "replacementInput": true }, "required": ["ifGeneration", "ifRunId", "idempotencyKey"], "type": "object" }, "ResubmitResult": { "additionalProperties": false, "properties": { "atCursor": { "type": "string" }, "deduped": { "type": "boolean" }, "generation": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "operational": { "$ref": "#/$defs/OperationalStatus" }, "phase": { "$ref": "#/$defs/Phase" }, "priorRunId": { "type": "string" }, "runId": { "type": "string" } }, "required": ["generation", "priorRunId", "runId", "phase", "operational", "atCursor", "deduped"], "type": "object" }, "RetryParams": { "additionalProperties": false, "properties": { "idempotencyKey": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "ifGeneration": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" } }, "required": ["ifGeneration", "idempotencyKey"], "type": "object" }, "RetryResult": { "additionalProperties": false, "properties": { "atCursor": { "type": "string" }, "deduped": { "type": "boolean" }, "generation": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "operational": { "$ref": "#/$defs/OperationalStatus" }, "phase": { "$ref": "#/$defs/Phase" }, "retriedTurnId": { "type": "string" }, "retryTurnId": { "type": "string" }, "runId": { "type": "string" } }, "required": ["generation", "runId", "phase", "retriedTurnId", "retryTurnId", "operational", "atCursor", "deduped"], "type": "object" }, "RunAttachEventNotification": { "additionalProperties": false, "description": "One live read-only attach event. Carrying both identities prevents events from simultaneous\nverifier attachments being confused on a multiplexed transport.", "properties": { "event": { "$ref": "#/$defs/AgentAttachEvent" }, "execution": { "maxLength": 128, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "runId": { "type": "string" }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId", "runId", "execution", "event"], "type": "object" }, "RunAttachParams": { "additionalProperties": false, "description": "Establishes a live, read-only view of exactly one execution.\n\nAttach has no cursor and no replay. Historical output is available through [`RunLogsParams`].\nNo client-to-execution input message exists in this contract.", "properties": { "execution": { "maxLength": 128, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "runId": { "type": "string" } }, "required": ["runId", "execution"], "type": "object" }, "RunAttachResult": { "additionalProperties": false, "properties": { "execution": { "maxLength": 128, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "runId": { "type": "string" }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId", "runId", "execution"], "type": "object" }, "RunForceParams": { "additionalProperties": false, "description": "Requests the MVP's only stop mode: force. Repeated requests are idempotent at the run ledger.", "properties": { "runId": { "type": "string" } }, "required": ["runId"], "type": "object" }, "RunForceResult": { "additionalProperties": false, "description": "The durable run status after recording the force request.", "properties": { "atCursor": { "description": "Durable cursor after the force request was recorded.", "type": "string" }, "runId": { "description": "Public identity of the run whose force request was recorded.", "type": "string" }, "size": { "$ref": "#/$defs/RunSize", "description": "Immutable execution size selected for the run." }, "source": { "$ref": "#/$defs/ResolvedSource", "description": "Immutable repository snapshot captured when the run was admitted." }, "status": { "$ref": "#/$defs/RunStatus", "description": "Public phase projected after the force request was recorded." }, "title": { "description": "Immutable title captured when the run was admitted.", "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" } }, "required": ["runId", "title", "source", "size", "atCursor", "status"], "type": "object" }, "RunListParams": { "additionalProperties": false, "description": "The MVP inventory has no filters or pagination controls.", "type": "object" }, "RunListResult": { "additionalProperties": false, "description": "Current durable projections for every retained run.", "properties": { "runs": { "items": { "$ref": "#/$defs/RunStatusResult" }, "type": "array" } }, "required": ["runs"], "type": "object" }, "RunLogEventNotification": { "additionalProperties": false, "description": "One durable, reconnectable safe log record. Run-wide system records have no execution;\nexecution output carries the stable opaque selector used by status and attach.", "properties": { "cursor": { "type": "string" }, "execution": { "maxLength": 128, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": ["string", "null"] }, "record": { "$ref": "#/$defs/LogRecord" }, "runId": { "type": "string" }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId", "runId", "cursor", "record"], "type": "object" }, "RunLogsParams": { "additionalProperties": false, "description": "Establishes durable run log replay followed by live delivery.\n\nAn optional execution filter selects one active or settled execution using the exact opaque\nreference advertised by status. `fromCursor` is exclusive, with the same reconnect semantics\nas [`RunWatchParams`]. Omitting both fields after `runId` replays the run's complete retained\nsafe log history.", "properties": { "execution": { "maxLength": 128, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": ["string", "null"] }, "fromCursor": { "type": ["string", "null"] }, "runId": { "type": "string" } }, "required": ["runId"], "type": "object" }, "RunLogsResult": { "additionalProperties": false, "properties": { "atCursor": { "type": "string" }, "runId": { "type": "string" }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId", "runId", "atCursor"], "type": "object" }, "RunMetadata": { "additionalProperties": false, "description": "Additive metadata emitted only with a terminal run projection.", "properties": { "tokenUsage": { "anyOf": [{ "$ref": "#/$defs/TokenUsage" }, { "type": "null" }] } }, "type": "object" }, "RunSize": { "enum": ["tiny", "small", "standard", "large"], "type": "string" }, "RunStatus": { "description": "Public run state. The closed phase variants make impossible combinations unrepresentable:\nadmitted runs have no execution, stopping means force was requested, and finished runs have\nexactly one terminal result and no active execution. Running/stopping report every active\nexecution rather than a single \"current worker\" slot.", "oneOf": [{ "additionalProperties": false, "properties": { "phase": { "const": "admitted", "type": "string" } }, "required": ["phase"], "type": "object" }, { "additionalProperties": false, "properties": { "activeExecutions": { "items": { "$ref": "#/$defs/ActiveExecution" }, "type": "array" }, "phase": { "const": "running", "type": "string" } }, "required": ["phase", "activeExecutions"], "type": "object" }, { "additionalProperties": false, "properties": { "activeExecutions": { "items": { "$ref": "#/$defs/ActiveExecution" }, "type": "array" }, "phase": { "const": "stopping", "type": "string" } }, "required": ["phase", "activeExecutions"], "type": "object" }, { "additionalProperties": false, "properties": { "metadata": { "$ref": "#/$defs/RunMetadata", "default": {} }, "phase": { "const": "finished", "type": "string" }, "terminalResult": { "$ref": "#/$defs/TerminalResult" } }, "required": ["phase", "terminalResult"], "type": "object" }] }, "RunStatusParams": { "additionalProperties": false, "properties": { "runId": { "type": "string" } }, "required": ["runId"], "type": "object" }, "RunStatusResult": { "additionalProperties": false, "properties": { "atCursor": { "type": "string" }, "runId": { "type": "string" }, "size": { "$ref": "#/$defs/RunSize" }, "source": { "$ref": "#/$defs/ResolvedSource" }, "status": { "$ref": "#/$defs/RunStatus" }, "title": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" } }, "required": ["runId", "title", "source", "size", "atCursor", "status"], "type": "object" }, "RunSubmission": { "additionalProperties": false, "description": "Immutable, secret-free native-v2 submission admitted by the selected target.", "properties": { "graph": { "$ref": "#/$defs/GraphSpec" }, "initialInput": true, "runtime": { "$ref": "#/$defs/RuntimePlan" }, "source": { "$ref": "#/$defs/ResolvedSource" }, "submissionKey": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "title": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" } }, "required": ["title", "graph", "initialInput", "runtime", "source", "submissionKey"], "type": "object" }, "RunSubmitParams": { "additionalProperties": false, "description": "Trusted controller bootstrap admission. The host assigns the only public run identity before\ncontroller start; the immutable submission remains identity-neutral.", "properties": { "runId": { "type": "string" }, "submission": { "$ref": "#/$defs/RunSubmission" } }, "required": ["runId", "submission"], "type": "object" }, "RunSubmitResult": { "additionalProperties": false, "description": "A successful submission returns the one public identity used by every later run method.", "properties": { "runId": { "type": "string" } }, "required": ["runId"], "type": "object" }, "RunWatchEventNotification": { "additionalProperties": false, "description": "One durable public status projection. `cursor` is stable run history, not a connection-local\nsequence; clients resume strictly after it.", "properties": { "cursor": { "type": "string" }, "runId": { "type": "string" }, "size": { "$ref": "#/$defs/RunSize" }, "source": { "$ref": "#/$defs/ResolvedSource" }, "status": { "$ref": "#/$defs/RunStatus" }, "subscriptionId": { "type": "string" }, "title": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" } }, "required": ["subscriptionId", "runId", "title", "source", "size", "cursor", "status"], "type": "object" }, "RunWatchParams": { "additionalProperties": false, "description": "Establishes a durable run watch.\n\n`fromCursor` is exclusive. Reconnecting with the last delivered cursor therefore returns each\nlater watch record once, with no replayed boundary record and no skipped later record.", "properties": { "fromCursor": { "type": ["string", "null"] }, "runId": { "type": "string" } }, "required": ["runId"], "type": "object" }, "RunWatchResult": { "additionalProperties": false, "properties": { "atCursor": { "type": "string" }, "runId": { "type": "string" }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId", "runId", "atCursor"], "type": "object" }, "RuntimePlan": { "oneOf": [{ "additionalProperties": false, "properties": { "harness": { "const": "codex", "type": "string" }, "nodes": { "additionalProperties": false, "patternProperties": { "^[A-Za-z_][A-Za-z0-9_.-]*$": { "$ref": "#/$defs/NodeRuntimeBinding" } }, "type": "object" }, "provider": { "$ref": "#/$defs/CodexProvider" }, "size": { "$ref": "#/$defs/RunSize" } }, "required": ["harness", "provider", "size", "nodes"], "type": "object" }, { "additionalProperties": false, "properties": { "harness": { "const": "claude", "type": "string" }, "nodes": { "additionalProperties": false, "patternProperties": { "^[A-Za-z_][A-Za-z0-9_.-]*$": { "$ref": "#/$defs/NodeRuntimeBinding" } }, "type": "object" }, "provider": { "$ref": "#/$defs/ClaudeProvider" }, "size": { "$ref": "#/$defs/RunSize" } }, "required": ["harness", "provider", "size", "nodes"], "type": "object" }] }, "ServerCapabilities": { "additionalProperties": false, "properties": { "agentAttach": { "default": false, "type": "boolean" }, "graphProfiles": { "default": [], "items": { "$ref": "#/$defs/GraphProfile" }, "maxItems": 2, "not": { "minItems": 2, "prefixItems": [{ "const": "openengine.graph.single-worker/v1" }, { "const": "openengine.graph.full/v1" }] }, "type": "array", "uniqueItems": true }, "logs": { "default": false, "type": "boolean" } }, "type": "object" }, "SessionScope": { "enum": ["execution", "node_instance"], "type": "string" }, "StopMode": { "enum": ["drain", "force"], "type": "string" }, "StopParams": { "additionalProperties": false, "properties": { "idempotencyKey": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "ifGeneration": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "mode": { "$ref": "#/$defs/StopMode" } }, "required": ["mode", "ifGeneration", "idempotencyKey"], "type": "object" }, "StopResult": { "additionalProperties": false, "properties": { "acceptedMode": { "$ref": "#/$defs/StopMode" }, "atCursor": { "type": "string" }, "deduped": { "type": "boolean" }, "effectiveMode": { "$ref": "#/$defs/StopMode" }, "generation": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "operational": { "$ref": "#/$defs/OperationalStatus" }, "phase": { "$ref": "#/$defs/Phase" }, "runId": { "type": "string" } }, "required": ["generation", "runId", "phase", "acceptedMode", "effectiveMode", "operational", "atCursor", "deduped"], "type": "object" }, "StructuralBounds": { "additionalProperties": false, "properties": { "attemptsPerNode": { "additionalProperties": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "propertyNames": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "type": "object" }, "maxNodeExecutions": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "peakConcurrency": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "termination": { "$ref": "#/$defs/TerminationWitness" } }, "required": ["termination", "maxNodeExecutions", "peakConcurrency", "attemptsPerNode"], "type": "object" }, "SubscriptionCancelParams": { "additionalProperties": false, "description": "Wire body of the generic `subscription/cancel` client notification.", "properties": { "subscriptionId": { "type": "string" } }, "required": ["subscriptionId"], "type": "object" }, "SubscriptionCloseReason": { "enum": ["done", "SLOW_CONSUMER"], "type": "string" }, "SubscriptionClosedNotification": { "additionalProperties": false, "description": "Wire body of the terminal `subscription/closed` server notification.", "properties": { "lastDeliveredCursor": { "type": ["string", "null"] }, "reason": { "$ref": "#/$defs/SubscriptionCloseReason" }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId", "reason"], "type": "object" }, "TerminalResult": { "description": "Authoritative terminal value for backends that can durably reconstruct a completed graph.\n\nThis is additive to [`GetResult`]: backends that do not yet expose terminal values leave the\noptional field absent, including when their status is already `finished`.", "oneOf": [{ "additionalProperties": false, "properties": { "output": true, "status": { "const": "succeeded", "type": "string" } }, "required": ["status", "output"], "type": "object" }, { "additionalProperties": false, "properties": { "reason": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "status": { "const": "failed", "type": "string" } }, "required": ["status", "reason"], "type": "object" }] }, "TerminationWitness": { "oneOf": [{ "additionalProperties": false, "properties": { "kind": { "const": "acyclic", "type": "string" }, "order": { "$ref": "#/$defs/NonEmptyVec_of_NodeName" } }, "required": ["kind", "order"], "type": "object" }, { "additionalProperties": false, "properties": { "kind": { "const": "bounded", "type": "string" }, "maxIterations": { "maximum": 9007199254740991, "minimum": 1, "type": "integer" }, "ranking": { "$ref": "#/$defs/NonEmptyVec_of_FieldPath" } }, "required": ["kind", "ranking", "maxIterations"], "type": "object" }] }, "TokenUsage": { "additionalProperties": false, "description": "Run-wide sum of provider-reported usage for every launched agent invocation.\n\n`complete` is false when at least one invocation did not report usable counters. Cache\ncounters are omitted when the provider does not expose them consistently.", "properties": { "cacheCreationInputTokens": { "maximum": 9007199254740991, "minimum": 0, "type": ["integer", "null"] }, "cacheReadInputTokens": { "maximum": 9007199254740991, "minimum": 0, "type": ["integer", "null"] }, "complete": { "type": "boolean" }, "inputTokens": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "outputTokens": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" } }, "required": ["inputTokens", "outputTokens", "complete"], "type": "object" }, "UpdateParams": { "additionalProperties": false, "anyOf": [{ "required": ["labels"] }, { "required": ["logLevel"] }, { "required": ["suspended"] }], "properties": { "idempotencyKey": { "maxLength": 256, "minLength": 1, "pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]+$", "type": "string" }, "ifGeneration": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "labels": { "$ref": "#/$defs/Labels" }, "logLevel": { "$ref": "#/$defs/LogLevel" }, "suspended": { "type": "boolean" } }, "required": ["ifGeneration", "idempotencyKey"], "type": "object" }, "UpdateResult": { "additionalProperties": false, "properties": { "atCursor": { "type": "string" }, "deduped": { "type": "boolean" }, "generation": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "operational": { "$ref": "#/$defs/OperationalStatus" }, "phase": { "$ref": "#/$defs/Phase" }, "runId": { "type": "string" } }, "required": ["generation", "runId", "phase", "operational", "atCursor", "deduped"], "type": "object" }, "WatchEvent": { "description": "The closed public event algebra. `Phase` folds the observable cluster status (admission\ncommit, update, suspend/resume, stop-request); `NodeBegin`/`NodeEnd` are a testkit-only\nsynthetic hook decoupled from the real dispatch/lease turn mechanism, since no native graph\nexecutor exists yet; `Bookmark` advances the cursor without changing folded public state;\n`Fault` carries a durable, backend-neutral projected `BackendFault`: it correlates to the\nenclosing `EventNotification.run_id` plus its own optional opaque `executionRef`, and its\nordering/emission never itself authorizes a retry or changes terminal semantics -- it folds to\nno public status change, exactly like `Bookmark`; `Finished` is always the last event for a\nrun.", "oneOf": [{ "additionalProperties": false, "properties": { "admission": { "anyOf": [{ "$ref": "#/$defs/AdmissionTransition" }, { "type": "null" }] }, "status": { "$ref": "#/$defs/ClusterStatus" }, "type": { "const": "phase", "type": "string" } }, "required": ["type", "status"], "type": "object" }, { "additionalProperties": false, "properties": { "input": true, "node": { "$ref": "#/$defs/NodeAddress" }, "type": { "const": "node_begin", "type": "string" } }, "required": ["type", "node", "input"], "type": "object" }, { "additionalProperties": false, "properties": { "node": { "$ref": "#/$defs/NodeAddress" }, "outcome": { "$ref": "#/$defs/WorkerOutcome" }, "type": { "const": "node_end", "type": "string" } }, "required": ["type", "node", "outcome"], "type": "object" }, { "additionalProperties": false, "properties": { "type": { "const": "bookmark", "type": "string" } }, "required": ["type"], "type": "object" }, { "additionalProperties": false, "properties": { "fault": { "$ref": "#/$defs/BackendFault" }, "type": { "const": "fault", "type": "string" } }, "required": ["type", "fault"], "type": "object" }, { "additionalProperties": false, "properties": { "final_status": { "$ref": "#/$defs/ClusterStatus" }, "stop_mode": { "anyOf": [{ "$ref": "#/$defs/StopMode" }, { "type": "null" }] }, "type": { "const": "finished", "type": "string" } }, "required": ["type", "final_status"], "type": "object" }] }, "WatchParams": { "additionalProperties": false, "properties": { "fromCursor": { "default": null, "type": ["string", "null"] }, "runId": { "default": null, "type": ["string", "null"] } }, "type": "object" }, "WatchResult": { "properties": { "atCursor": { "type": ["string", "null"] }, "runId": { "type": ["string", "null"] }, "subscriptionId": { "type": "string" } }, "required": ["subscriptionId"], "type": "object" }, "WorkerErrorCode": { "enum": ["timeout", "crash", "malformed", "refusal"], "type": "string" }, "WorkerFailureReason": { "enum": ["declared_failure", "policy_denied", "interactive_input_required", "authentication_required", "malformed_result"], "type": "string" }, "WorkerOutcome": { "allOf": [{ "$ref": "#/$defs/WorkerOutcomeWire" }, { "if": { "properties": { "status": { "const": "error" } }, "required": ["status"] }, "then": { "oneOf": [{ "properties": { "reason": { "const": "declared_failure" } }, "required": ["reason"] }, { "properties": { "code": { "const": "refusal" }, "reason": { "enum": ["policy_denied", "interactive_input_required", "authentication_required"] } }, "required": ["code", "reason"] }, { "properties": { "code": { "const": "malformed" }, "reason": { "const": "malformed_result" } }, "required": ["code", "reason"] }] } }] }, "WorkerOutcomeWire": { "oneOf": [{ "additionalProperties": false, "properties": { "artifacts": { "items": { "$ref": "#/$defs/ArtifactRef" }, "type": "array" }, "output": true, "status": { "const": "verified", "type": "string" } }, "required": ["status", "output", "artifacts"], "type": "object" }, { "additionalProperties": false, "properties": { "artifacts": { "items": { "$ref": "#/$defs/ArtifactRef" }, "type": "array" }, "diagnostic": true, "output": true, "signals": { "additionalProperties": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "propertyNames": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "type": "object" }, "status": { "const": "verifier", "type": "string" } }, "required": ["status", "output", "signals", "diagnostic", "artifacts"], "type": "object" }, { "additionalProperties": false, "properties": { "code": { "$ref": "#/$defs/WorkerErrorCode" }, "reason": { "$ref": "#/$defs/WorkerFailureReason" }, "status": { "const": "error", "type": "string" } }, "required": ["status", "code", "reason"], "type": "object" }] }, "WriteBinding": { "additionalProperties": false, "properties": { "target": { "items": { "maxLength": 128, "minLength": 1, "pattern": "^[A-Za-z_][A-Za-z0-9_.-]*$", "type": "string" }, "maxItems": 64, "minItems": 1, "type": "array" }, "value": { "$ref": "#/$defs/NodeOutputSelector" } }, "required": ["value", "target"], "type": "object" } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "agent_attach_closed_notification": { "$ref": "#/$defs/JsonRpcNotification8" }, "agent_attach_event_notification": { "$ref": "#/$defs/JsonRpcNotification7" }, "agent_attach_request": { "$ref": "#/$defs/JsonRpcRequest12" }, "agent_attach_response": { "$ref": "#/$defs/JsonRpcResponse12" }, "apply_request": { "$ref": "#/$defs/JsonRpcRequest3" }, "apply_response": { "$ref": "#/$defs/JsonRpcResponse3" }, "cancel_request_notification": { "$ref": "#/$defs/JsonRpcNotification4" }, "delete_request": { "$ref": "#/$defs/JsonRpcRequest9" }, "delete_response": { "$ref": "#/$defs/JsonRpcResponse9" }, "event_notification": { "$ref": "#/$defs/JsonRpcNotification" }, "get_request": { "$ref": "#/$defs/JsonRpcRequest4" }, "get_response": { "$ref": "#/$defs/JsonRpcResponse4" }, "initialize_request": { "$ref": "#/$defs/JsonRpcRequest" }, "initialize_response": { "$ref": "#/$defs/JsonRpcResponse" }, "log_event_notification": { "$ref": "#/$defs/JsonRpcNotification5" }, "logs_closed_notification": { "$ref": "#/$defs/JsonRpcNotification6" }, "logs_request": { "$ref": "#/$defs/JsonRpcRequest11" }, "logs_response": { "$ref": "#/$defs/JsonRpcResponse11" }, "plan_request": { "$ref": "#/$defs/JsonRpcRequest2" }, "plan_response": { "$ref": "#/$defs/JsonRpcResponse2" }, "resubmit_request": { "$ref": "#/$defs/JsonRpcRequest8" }, "resubmit_response": { "$ref": "#/$defs/JsonRpcResponse8" }, "retry_request": { "$ref": "#/$defs/JsonRpcRequest7" }, "retry_response": { "$ref": "#/$defs/JsonRpcResponse7" }, "run_attach_event_notification": { "$ref": "#/$defs/JsonRpcNotification11" }, "run_attach_request": { "$ref": "#/$defs/JsonRpcRequest18" }, "run_attach_response": { "$ref": "#/$defs/JsonRpcResponse18" }, "run_force_request": { "$ref": "#/$defs/JsonRpcRequest19" }, "run_force_response": { "$ref": "#/$defs/JsonRpcResponse19" }, "run_list_request": { "$ref": "#/$defs/JsonRpcRequest14" }, "run_list_response": { "$ref": "#/$defs/JsonRpcResponse14" }, "run_log_event_notification": { "$ref": "#/$defs/JsonRpcNotification10" }, "run_logs_request": { "$ref": "#/$defs/JsonRpcRequest17" }, "run_logs_response": { "$ref": "#/$defs/JsonRpcResponse17" }, "run_status_request": { "$ref": "#/$defs/JsonRpcRequest15" }, "run_status_response": { "$ref": "#/$defs/JsonRpcResponse15" }, "run_submit_request": { "$ref": "#/$defs/JsonRpcRequest13" }, "run_submit_response": { "$ref": "#/$defs/JsonRpcResponse13" }, "run_watch_event_notification": { "$ref": "#/$defs/JsonRpcNotification9" }, "run_watch_request": { "$ref": "#/$defs/JsonRpcRequest16" }, "run_watch_response": { "$ref": "#/$defs/JsonRpcResponse16" }, "stop_request": { "$ref": "#/$defs/JsonRpcRequest6" }, "stop_response": { "$ref": "#/$defs/JsonRpcResponse6" }, "subscription_cancel_notification": { "$ref": "#/$defs/JsonRpcNotification2" }, "subscription_closed_notification": { "$ref": "#/$defs/JsonRpcNotification3" }, "update_request": { "$ref": "#/$defs/JsonRpcRequest5" }, "update_response": { "$ref": "#/$defs/JsonRpcResponse5" }, "watch_request": { "$ref": "#/$defs/JsonRpcRequest10" }, "watch_response": { "$ref": "#/$defs/JsonRpcResponse10" } }, "required": ["initialize_request", "initialize_response", "plan_request", "plan_response", "apply_request", "apply_response", "get_request", "get_response", "update_request", "update_response", "stop_request", "stop_response", "retry_request", "retry_response", "resubmit_request", "resubmit_response", "delete_request", "delete_response", "watch_request", "watch_response", "event_notification", "subscription_cancel_notification", "subscription_closed_notification", "cancel_request_notification", "logs_request", "logs_response", "log_event_notification", "logs_closed_notification", "agent_attach_request", "agent_attach_response", "agent_attach_event_notification", "agent_attach_closed_notification", "run_submit_request", "run_submit_response", "run_list_request", "run_list_response", "run_status_request", "run_status_response", "run_watch_request", "run_watch_response", "run_watch_event_notification", "run_logs_request", "run_logs_response", "run_log_event_notification", "run_attach_request", "run_attach_response", "run_attach_event_notification", "run_force_request", "run_force_response"], "title": "ImplementedProtocolSchema", "type": "object" };
2
+ export const CLUSTER_PROTOCOL_SCHEMA = JSON.parse("{\"$defs\":{\"ActiveExecution\":{\"additionalProperties\":false,\"description\":" +
3
+ "\"One currently active graph-leaf execution.\\n\\n`execution` is the stable" +
4
+ " selector used by logs and attach. `node` is the graph-visible\\nidentity" +
5
+ " that makes multiple simultaneous verifier executions obvious to a clien" +
6
+ "t.\",\"properties\":{\"execution\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"" +
7
+ "^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"},\"node\":{\"maxLengt" +
8
+ "h\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"stri" +
9
+ "ng\"}},\"required\":[\"execution\",\"node\"],\"type\":\"object\"},\"AdmissionTransit" +
10
+ "ion\":{\"additionalProperties\":false,\"properties\":{\"runId\":{\"type\":\"string" +
11
+ "\"},\"seedInput\":true,\"spec\":{\"$ref\":\"#/$defs/GraphSpec\"}},\"required\":[\"ru" +
12
+ "nId\",\"spec\",\"seedInput\"],\"type\":\"object\"},\"AgentAttachClosedNotification" +
13
+ "\":{\"additionalProperties\":false,\"description\":\"Wire body of the terminal" +
14
+ " `subscription/closed` server notification for an `agent/attach`\\nsubscr" +
15
+ "iption. Deliberately carries no cursor field -- `agent/attach` gives a t" +
16
+ "ype-level\\n\\\"cursorless\\\" guarantee, unlike [`crate::SubscriptionClosedN" +
17
+ "otification`].\",\"properties\":{\"reason\":{\"$ref\":\"#/$defs/SubscriptionClos" +
18
+ "eReason\"},\"subscriptionId\":{\"type\":\"string\"}},\"required\":[\"subscriptionI" +
19
+ "d\",\"reason\"],\"type\":\"object\"},\"AgentAttachEvent\":{\"description\":\"The clo" +
20
+ "sed public agent-attach progress algebra. This is the only representable" +
21
+ " shape:\\nreasoning, tools, provider frames, usage, and session identifie" +
22
+ "rs have no variant. `Working`\\nand `Settled` are empty struct variants r" +
23
+ "ather than bare units: serde's internally tagged enum\\ndeserialization s" +
24
+ "ilently ignores unknown fields on a unit variant regardless of\\n`deny_un" +
25
+ "known_fields`, which would otherwise let an unrepresentable field ride a" +
26
+ "long\\nundetected on either of these two variants.\",\"oneOf\":[{\"additional" +
27
+ "Properties\":false,\"properties\":{\"type\":{\"const\":\"working\",\"type\":\"string" +
28
+ "\"}},\"required\":[\"type\"],\"type\":\"object\"},{\"additionalProperties\":false,\"" +
29
+ "properties\":{\"text\":{\"maxLength\":16384,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u0" +
30
+ "07f-\\\\u009f]*$\",\"type\":\"string\"},\"type\":{\"const\":\"output\",\"type\":\"string" +
31
+ "\"}},\"required\":[\"type\",\"text\"],\"type\":\"object\"},{\"additionalProperties\":" +
32
+ "false,\"properties\":{\"type\":{\"const\":\"settled\",\"type\":\"string\"}},\"require" +
33
+ "d\":[\"type\"],\"type\":\"object\"}]},\"AgentAttachEventNotification\":{\"$ref\":\"#" +
34
+ "/$defs/AgentAttachEventNotificationWire\"},\"AgentAttachEventNotificationW" +
35
+ "ire\":{\"additionalProperties\":false,\"properties\":{\"event\":{\"$ref\":\"#/$def" +
36
+ "s/AgentAttachEvent\"},\"subscriptionId\":{\"type\":\"string\"}},\"required\":[\"su" +
37
+ "bscriptionId\",\"event\"],\"type\":\"object\"},\"AgentAttachParams\":{\"additional" +
38
+ "Properties\":false,\"description\":\"`agent/attach` establishment parameters" +
39
+ ": the named `{execution}` request. Deliberately closed,\\nrejecting any u" +
40
+ "nknown field.\",\"properties\":{\"execution\":{\"maxLength\":128,\"minLength\":1," +
41
+ "\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"}},\"requ" +
42
+ "ired\":[\"execution\"],\"type\":\"object\"},\"AgentAttachResult\":{\"additionalPro" +
43
+ "perties\":false,\"description\":\"The `agent/attach` establishment result: o" +
44
+ "nly a `subscriptionId`. Deliberately carries no\\n`runId` or `atCursor` -" +
45
+ "- `agent/attach` is not run-scoped and has no cursor.\",\"properties\":{\"su" +
46
+ "bscriptionId\":{\"type\":\"string\"}},\"required\":[\"subscriptionId\"],\"type\":\"o" +
47
+ "bject\"},\"ApplyParams\":{\"additionalProperties\":false,\"properties\":{\"dryRu" +
48
+ "n\":{\"default\":false,\"type\":\"boolean\"},\"graph\":{\"$ref\":\"#/$defs/GraphSpec" +
49
+ "\"},\"idempotencyKey\":{\"maxLength\":256,\"minLength\":1,\"pattern\":\"^[^\\\\u0000" +
50
+ "-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"},\"ifGeneration\":{\"maximum\":9" +
51
+ "007199254740991,\"minimum\":0,\"type\":\"integer\"},\"input\":true},\"required\":[" +
52
+ "\"graph\"],\"type\":\"object\"},\"ApplyResult\":{\"additionalProperties\":false,\"p" +
53
+ "roperties\":{\"deduped\":{\"type\":\"boolean\"},\"diff\":{\"anyOf\":[{\"$ref\":\"#/$de" +
54
+ "fs/GraphDiff\"},{\"type\":\"null\"}]},\"generation\":{\"maximum\":900719925474099" +
55
+ "1,\"minimum\":0,\"type\":[\"integer\",\"null\"]},\"phase\":{\"$ref\":\"#/$defs/Phase\"" +
56
+ "},\"runId\":{\"type\":[\"string\",\"null\"]}},\"required\":[\"phase\",\"deduped\"],\"ty" +
57
+ "pe\":\"object\"},\"ArtifactLineage\":{\"additionalProperties\":false,\"propertie" +
58
+ "s\":{\"attempt\":{\"maximum\":9007199254740991,\"minimum\":1,\"type\":\"integer\"}," +
59
+ "\"generation\":{\"maximum\":9007199254740991,\"minimum\":0,\"type\":\"integer\"},\"" +
60
+ "runId\":{\"type\":\"string\"}},\"required\":[\"generation\",\"runId\",\"attempt\"],\"t" +
61
+ "ype\":\"object\"},\"ArtifactProducer\":{\"additionalProperties\":false,\"propert" +
62
+ "ies\":{\"node\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z" +
63
+ "0-9_.-]*$\",\"type\":\"string\"},\"worker\":{\"maxLength\":256,\"pattern\":\"^[A-Za-" +
64
+ "z_][A-Za-z0-9_.-]*@[1-9][0-9]*$\",\"type\":\"string\"}},\"required\":[\"node\",\"w" +
65
+ "orker\"],\"type\":\"object\"},\"ArtifactRef\":{\"additionalProperties\":false,\"pr" +
66
+ "operties\":{\"artifactId\":{\"maxLength\":256,\"minLength\":1,\"pattern\":\"^[^\\\\u" +
67
+ "0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"},\"byteLength\":{\"maximum\"" +
68
+ ":9007199254740991,\"minimum\":0,\"type\":\"integer\"},\"lineage\":{\"$ref\":\"#/$de" +
69
+ "fs/ArtifactLineage\"},\"mediaType\":{\"maxLength\":256,\"minLength\":1,\"pattern" +
70
+ "\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"},\"producer\":{\"$" +
71
+ "ref\":\"#/$defs/ArtifactProducer\"},\"redaction\":{\"$ref\":\"#/$defs/RedactionC" +
72
+ "lass\"},\"sha256\":{\"pattern\":\"^[0-9a-f]{64}$\",\"type\":\"string\"},\"typeId\":{\"" +
73
+ "maxLength\":256,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*@[1-9][0-9]*$\",\"type\"" +
74
+ ":\"string\"}},\"required\":[\"artifactId\",\"sha256\",\"byteLength\",\"mediaType\",\"" +
75
+ "typeId\",\"producer\",\"lineage\",\"redaction\"],\"type\":\"object\"},\"BackendFault" +
76
+ "\":{\"$ref\":\"#/$defs/BackendFaultWire\"},\"BackendFaultWire\":{\"additionalPro" +
77
+ "perties\":false,\"properties\":{\"action\":{\"$ref\":\"#/$defs/FaultAction\"},\"co" +
78
+ "de\":{\"$ref\":\"#/$defs/FaultCode\"},\"consequence\":{\"$ref\":\"#/$defs/FaultCon" +
79
+ "sequence\"},\"eventId\":{\"maxLength\":256,\"minLength\":1,\"pattern\":\"^[^\\\\u000" +
80
+ "0-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"},\"executionRef\":{\"default\":" +
81
+ "null,\"maxLength\":256,\"minLength\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-" +
82
+ "\\\\u009f]+$\",\"type\":[\"string\",\"null\"]},\"retry\":{\"$ref\":\"#/$defs/FaultRetr" +
83
+ "yDisposition\"},\"severity\":{\"$ref\":\"#/$defs/FaultSeverity\"},\"source\":{\"it" +
84
+ "ems\":{\"$ref\":\"#/$defs/FaultSourceFrame\"},\"maxItems\":8,\"type\":\"array\"},\"s" +
85
+ "ummary\":{\"maxLength\":256,\"minLength\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u0" +
86
+ "07f-\\\\u009f]+$\",\"type\":\"string\"}},\"required\":[\"eventId\",\"code\",\"conseque" +
87
+ "nce\",\"retry\",\"action\",\"severity\",\"summary\",\"source\"],\"type\":\"object\"},\"C" +
88
+ "ancelRequestParams\":{\"additionalProperties\":false,\"description\":\"Wire bo" +
89
+ "dy of the `$/cancelRequest` client notification: best-effort cancellatio" +
90
+ "n of an\\nin-flight unary request by its `RequestId`. Unknown or already-" +
91
+ "completed ids are a silent\\nno-op; cancelling after the backend has comm" +
92
+ "itted leaves that committed state unchanged and\\nemits no response or co" +
93
+ "mpensation.\",\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"}},\"required\"" +
94
+ ":[\"id\"],\"type\":\"object\"},\"ChoiceBranch\":{\"additionalProperties\":false,\"p" +
95
+ "roperties\":{\"node\":{\"$ref\":\"#/$defs/GraphNode\"},\"when\":{\"$ref\":\"#/$defs/" +
96
+ "Guard\"}},\"required\":[\"when\",\"node\"],\"type\":\"object\"},\"ClaudeProvider\":{\"" +
97
+ "enum\":[\"anthropic\",\"openrouter\"],\"type\":\"string\"},\"ClusterStatus\":{\"prop" +
98
+ "erties\":{\"atCursor\":{\"type\":[\"string\",\"null\"]},\"currentRunId\":{\"type\":[\"" +
99
+ "string\",\"null\"]},\"observedGeneration\":{\"maximum\":9007199254740991,\"minim" +
100
+ "um\":0,\"type\":[\"integer\",\"null\"]},\"operational\":{\"anyOf\":[{\"$ref\":\"#/$def" +
101
+ "s/OperationalStatus\"},{\"type\":\"null\"}]},\"phase\":{\"$ref\":\"#/$defs/Phase\"}" +
102
+ "},\"required\":[\"phase\"],\"type\":\"object\"},\"CodexProvider\":{\"enum\":[\"openai" +
103
+ "\",\"openrouter\"],\"type\":\"string\"},\"ControlSelector\":{\"additionalPropertie" +
104
+ "s\":false,\"properties\":{\"field\":{\"maxLength\":128,\"minLength\":1,\"pattern\":" +
105
+ "\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":[\"string\",\"null\"]},\"name\":{\"maxLengt" +
106
+ "h\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"stri" +
107
+ "ng\"},\"source\":{\"$ref\":\"#/$defs/ControlSource\"}},\"required\":[\"name\",\"sour" +
108
+ "ce\"],\"type\":\"object\"},\"ControlSource\":{\"enum\":[\"signal\",\"error\",\"group\"]" +
109
+ ",\"type\":\"string\"},\"DataSelector\":{\"oneOf\":[{\"additionalProperties\":false" +
110
+ ",\"properties\":{\"path\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pattern\":" +
111
+ "\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"maxItems\":64,\"minItems\":1" +
112
+ ",\"type\":\"array\"},\"source\":{\"const\":\"state\",\"type\":\"string\"}},\"required\":" +
113
+ "[\"source\",\"path\"],\"type\":\"object\"},{\"additionalProperties\":false,\"proper" +
114
+ "ties\":{\"path\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-" +
115
+ "z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"maxItems\":64,\"minItems\":1,\"type\":" +
116
+ "\"array\"},\"source\":{\"const\":\"item\",\"type\":\"string\"}},\"required\":[\"source\"" +
117
+ ",\"path\"],\"type\":\"object\"}]},\"DeclaredConnections\":{\"additionalProperties" +
118
+ "\":{\"$ref\":\"#/$defs/DeclaredEnvironment\"},\"maxProperties\":64,\"type\":\"obje" +
119
+ "ct\"},\"DeclaredEnvironment\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"patt" +
120
+ "ern\":\"^[A-Za-z_][A-Za-z0-9_]*$\",\"type\":\"string\"},\"maxItems\":64,\"type\":\"a" +
121
+ "rray\",\"uniqueItems\":true},\"DeleteParams\":{\"additionalProperties\":false,\"" +
122
+ "properties\":{\"idempotencyKey\":{\"maxLength\":256,\"minLength\":1,\"pattern\":\"" +
123
+ "^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"},\"ifGeneration\":{\"" +
124
+ "maximum\":9007199254740991,\"minimum\":0,\"type\":\"integer\"},\"ifRunId\":{\"type" +
125
+ "\":[\"string\",\"null\"]}},\"required\":[\"ifGeneration\",\"idempotencyKey\"],\"type" +
126
+ "\":\"object\"},\"DeleteResult\":{\"additionalProperties\":false,\"properties\":{\"" +
127
+ "atCursor\":{\"type\":[\"string\",\"null\"]},\"deduped\":{\"type\":\"boolean\"},\"delet" +
128
+ "ed\":{\"type\":\"boolean\"},\"generation\":{\"maximum\":9007199254740991,\"minimum" +
129
+ "\":0,\"type\":[\"integer\",\"null\"]},\"phase\":{\"$ref\":\"#/$defs/Phase\"},\"runId\":" +
130
+ "{\"type\":[\"string\",\"null\"]}},\"required\":[\"deleted\",\"phase\",\"deduped\"],\"ty" +
131
+ "pe\":\"object\"},\"DiagnosticPathSegment\":{\"oneOf\":[{\"additionalProperties\":" +
132
+ "false,\"properties\":{\"kind\":{\"const\":\"field\",\"type\":\"string\"},\"name\":{\"ma" +
133
+ "xLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\"" +
134
+ ":\"string\"}},\"required\":[\"kind\",\"name\"],\"type\":\"object\"},{\"additionalProp" +
135
+ "erties\":false,\"properties\":{\"index\":{\"format\":\"uint32\",\"maximum\":4294967" +
136
+ "295,\"minimum\":0,\"type\":\"integer\"},\"kind\":{\"const\":\"index\",\"type\":\"string" +
137
+ "\"}},\"required\":[\"kind\",\"index\"],\"type\":\"object\"},{\"additionalProperties\"" +
138
+ ":false,\"properties\":{\"kind\":{\"const\":\"node\",\"type\":\"string\"},\"name\":{\"ma" +
139
+ "xLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\"" +
140
+ ":\"string\"}},\"required\":[\"kind\",\"name\"],\"type\":\"object\"}]},\"DiagnosticSev" +
141
+ "erity\":{\"enum\":[\"error\",\"warning\",\"info\"],\"type\":\"string\"},\"DispatchStat" +
142
+ "e\":{\"enum\":[\"active\",\"suspended\",\"draining\",\"force_stopping\",\"stopped\"]," +
143
+ "\"type\":\"string\"},\"DomainErrorData\":{\"properties\":{\"code\":{\"type\":\"string" +
144
+ "\"},\"details\":true},\"required\":[\"code\"],\"type\":\"object\"},\"EventNotificati" +
145
+ "on\":{\"additionalProperties\":false,\"description\":\"Wire body of the generi" +
146
+ "c `event` server notification.\",\"properties\":{\"cursor\":{\"type\":\"string\"}" +
147
+ ",\"event\":{\"$ref\":\"#/$defs/WatchEvent\"},\"runId\":{\"type\":\"string\"},\"subscr" +
148
+ "iptionId\":{\"type\":\"string\"}},\"required\":[\"subscriptionId\",\"runId\",\"curso" +
149
+ "r\",\"event\"],\"type\":\"object\"},\"FaultAction\":{\"description\":\"Descriptive o" +
150
+ "nly, like [`FaultRetryDisposition`]: naming `Retry` never itself retries" +
151
+ " or\\nauthorizes a retry.\",\"enum\":[\"none\",\"retry\",\"wait\",\"escalate\",\"abor" +
152
+ "t\"],\"type\":\"string\"},\"FaultCode\":{\"enum\":[\"unavailable\",\"resource_exhaus" +
153
+ "ted\",\"deadline_exceeded\",\"permission_denied\",\"failed_precondition\",\"not_" +
154
+ "found\",\"aborted\",\"internal\",\"unknown\"],\"type\":\"string\"},\"FaultConsequenc" +
155
+ "e\":{\"enum\":[\"turn_failed\",\"run_failed\",\"run_degraded\",\"no_observable_eff" +
156
+ "ect\"],\"type\":\"string\"},\"FaultRetryDisposition\":{\"description\":\"Descripti" +
157
+ "ve only: no `BackendFault` and no `fault` event ever performs or authori" +
158
+ "zes a retry.\\nEvent ordering and emission never themselves change termin" +
159
+ "al semantics.\",\"enum\":[\"retryable\",\"retryable_after_backoff\",\"not_retrya" +
160
+ "ble\",\"indeterminate\"],\"type\":\"string\"},\"FaultSeverity\":{\"enum\":[\"info\",\"" +
161
+ "warning\",\"error\",\"critical\"],\"type\":\"string\"},\"FaultSourceFrame\":{\"addit" +
162
+ "ionalProperties\":false,\"properties\":{\"component\":{\"maxLength\":256,\"minLe" +
163
+ "ngth\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"" +
164
+ "}},\"required\":[\"component\"],\"type\":\"object\"},\"GetParams\":{\"additionalPro" +
165
+ "perties\":false,\"properties\":{\"atCursor\":{\"default\":null,\"type\":[\"string\"" +
166
+ ",\"null\"]}},\"type\":\"object\"},\"GetResult\":{\"properties\":{\"atCursor\":{\"type" +
167
+ "\":[\"string\",\"null\"]},\"spec\":{\"anyOf\":[{\"$ref\":\"#/$defs/GraphSpec\"},{\"typ" +
168
+ "e\":\"null\"}]},\"status\":{\"$ref\":\"#/$defs/ClusterStatus\"},\"terminalResult\":" +
169
+ "{\"anyOf\":[{\"$ref\":\"#/$defs/TerminalResult\"},{\"type\":\"null\"}]}},\"required" +
170
+ "\":[\"status\"],\"type\":\"object\"},\"GraphDiagnostic\":{\"additionalProperties\":" +
171
+ "false,\"properties\":{\"code\":{\"$ref\":\"#/$defs/GraphDiagnosticCode\"},\"messa" +
172
+ "ge\":{\"type\":\"string\"},\"path\":{\"items\":{\"$ref\":\"#/$defs/DiagnosticPathSeg" +
173
+ "ment\"},\"type\":\"array\"},\"relatedNodes\":{\"items\":{\"maxLength\":128,\"minLeng" +
174
+ "th\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"type\":\"ar" +
175
+ "ray\"},\"severity\":{\"$ref\":\"#/$defs/DiagnosticSeverity\"}},\"required\":[\"sev" +
176
+ "erity\",\"code\",\"message\",\"path\",\"relatedNodes\"],\"type\":\"object\"},\"GraphDi" +
177
+ "agnosticCode\":{\"enum\":[\"schema_safety\",\"reachability\",\"choice_exhaustive" +
178
+ "ness\",\"loop_exit_satisfiability\",\"missing_bound\",\"write_conflict\",\"ceili" +
179
+ "ng_exceeded\",\"cyclic_reference\",\"undefined_read\",\"invalid_graph_shape\"]," +
180
+ "\"type\":\"string\"},\"GraphDiff\":{\"additionalProperties\":false,\"properties\":" +
181
+ "{\"added\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A" +
182
+ "-Za-z0-9_.-]*$\",\"type\":\"string\"},\"type\":\"array\"},\"changed\":{\"items\":{\"ma" +
183
+ "xLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\"" +
184
+ ":\"string\"},\"type\":\"array\"},\"removed\":{\"items\":{\"maxLength\":128,\"minLengt" +
185
+ "h\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"type\":\"arr" +
186
+ "ay\"}},\"required\":[\"added\",\"removed\",\"changed\"],\"type\":\"object\"},\"GraphNo" +
187
+ "de\":{\"oneOf\":[{\"additionalProperties\":false,\"properties\":{\"attempts\":{\"m" +
188
+ "aximum\":9007199254740991,\"minimum\":1,\"type\":\"integer\"},\"input\":{\"$ref\":\"" +
189
+ "#/$defs/PayloadType\"},\"inputBindings\":{\"items\":{\"$ref\":\"#/$defs/InputBin" +
190
+ "ding\"},\"type\":\"array\"},\"instructions\":{\"anyOf\":[{\"$ref\":\"#/$defs/NodeIns" +
191
+ "tructions\"},{\"type\":\"null\"}]},\"kind\":{\"const\":\"step\",\"type\":\"string\"},\"n" +
192
+ "ame\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*" +
193
+ "$\",\"type\":\"string\"},\"output\":{\"$ref\":\"#/$defs/PayloadType\"},\"timeoutMs\":" +
194
+ "{\"maximum\":9007199254740991,\"minimum\":1,\"type\":\"integer\"},\"worker\":{\"max" +
195
+ "Length\":256,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*@[1-9][0-9]*$\",\"type\":\"s" +
196
+ "tring\"},\"writeBindings\":{\"items\":{\"$ref\":\"#/$defs/WriteBinding\"},\"type\":" +
197
+ "\"array\"}},\"required\":[\"kind\",\"name\",\"worker\",\"input\",\"output\",\"inputBind" +
198
+ "ings\",\"writeBindings\",\"timeoutMs\",\"attempts\"],\"type\":\"object\"},{\"additio" +
199
+ "nalProperties\":false,\"properties\":{\"attempts\":{\"maximum\":900719925474099" +
200
+ "1,\"minimum\":1,\"type\":\"integer\"},\"diagnostic\":{\"$ref\":\"#/$defs/PayloadTyp" +
201
+ "e\"},\"input\":{\"$ref\":\"#/$defs/PayloadType\"},\"inputBindings\":{\"items\":{\"$r" +
202
+ "ef\":\"#/$defs/InputBinding\"},\"type\":\"array\"},\"instructions\":{\"anyOf\":[{\"$" +
203
+ "ref\":\"#/$defs/NodeInstructions\"},{\"type\":\"null\"}]},\"kind\":{\"const\":\"veri" +
204
+ "fier\",\"type\":\"string\"},\"name\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"" +
205
+ "^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"output\":{\"$ref\":\"#/$defs/P" +
206
+ "ayloadType\"},\"signals\":{\"additionalProperties\":{\"items\":{\"maxLength\":128" +
207
+ ",\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"" +
208
+ "maxItems\":4096,\"minItems\":1,\"type\":\"array\",\"uniqueItems\":true},\"property" +
209
+ "Names\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-" +
210
+ "]*$\",\"type\":\"string\"},\"type\":\"object\"},\"timeoutMs\":{\"maximum\":9007199254" +
211
+ "740991,\"minimum\":1,\"type\":\"integer\"},\"worker\":{\"maxLength\":256,\"pattern\"" +
212
+ ":\"^[A-Za-z_][A-Za-z0-9_.-]*@[1-9][0-9]*$\",\"type\":\"string\"},\"writeBinding" +
213
+ "s\":{\"items\":{\"$ref\":\"#/$defs/WriteBinding\"},\"type\":\"array\"}},\"required\":" +
214
+ "[\"kind\",\"name\",\"worker\",\"input\",\"output\",\"inputBindings\",\"writeBindings\"" +
215
+ ",\"timeoutMs\",\"attempts\",\"signals\",\"diagnostic\"],\"type\":\"object\"},{\"addit" +
216
+ "ionalProperties\":false,\"properties\":{\"children\":{\"$ref\":\"#/$defs/NonEmpt" +
217
+ "yVec_of_GraphNode\"},\"kind\":{\"const\":\"seq\",\"type\":\"string\"},\"name\":{\"maxL" +
218
+ "ength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"" +
219
+ "string\"},\"promotedStatePaths\":{\"items\":{\"items\":{\"maxLength\":128,\"minLen" +
220
+ "gth\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"maxItems" +
221
+ "\":64,\"minItems\":1,\"type\":\"array\"},\"type\":\"array\"},\"state\":{\"$ref\":\"#/$de" +
222
+ "fs/PayloadType\"}},\"required\":[\"kind\",\"name\",\"state\",\"children\",\"promoted" +
223
+ "StatePaths\"],\"type\":\"object\"},{\"additionalProperties\":false,\"properties\"" +
224
+ ":{\"branches\":{\"$ref\":\"#/$defs/NonEmptyVec_of_ChoiceBranch\"},\"kind\":{\"con" +
225
+ "st\":\"choice\",\"type\":\"string\"},\"name\":{\"maxLength\":128,\"minLength\":1,\"pat" +
226
+ "tern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"otherwise\":{\"anyOf\"" +
227
+ ":[{\"$ref\":\"#/$defs/GraphNode\"},{\"type\":\"null\"}]},\"promotedStatePaths\":{\"" +
228
+ "items\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Z" +
229
+ "a-z0-9_.-]*$\",\"type\":\"string\"},\"maxItems\":64,\"minItems\":1,\"type\":\"array\"" +
230
+ "},\"type\":\"array\"},\"state\":{\"$ref\":\"#/$defs/PayloadType\"}},\"required\":[\"k" +
231
+ "ind\",\"name\",\"state\",\"branches\",\"promotedStatePaths\"],\"type\":\"object\"},{\"" +
232
+ "additionalProperties\":false,\"properties\":{\"branches\":{\"$ref\":\"#/$defs/No" +
233
+ "nEmptyVec_of_GraphNode\"},\"join\":{\"$ref\":\"#/$defs/Join\"},\"kind\":{\"const\":" +
234
+ "\"par\",\"type\":\"string\"},\"name\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"" +
235
+ "^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"promotedStatePaths\":{\"item" +
236
+ "s\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0" +
237
+ "-9_.-]*$\",\"type\":\"string\"},\"maxItems\":64,\"minItems\":1,\"type\":\"array\"},\"t" +
238
+ "ype\":\"array\"},\"state\":{\"$ref\":\"#/$defs/PayloadType\"}},\"required\":[\"kind\"" +
239
+ ",\"name\",\"state\",\"branches\",\"promotedStatePaths\",\"join\"],\"type\":\"object\"}" +
240
+ ",{\"additionalProperties\":false,\"properties\":{\"body\":{\"$ref\":\"#/$defs/Gra" +
241
+ "phNode\"},\"kind\":{\"const\":\"loop\",\"type\":\"string\"},\"maxIterations\":{\"maxim" +
242
+ "um\":9007199254740991,\"minimum\":1,\"type\":\"integer\"},\"name\":{\"maxLength\":1" +
243
+ "28,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"}" +
244
+ ",\"promotedStatePaths\":{\"items\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"" +
245
+ "pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"maxItems\":64,\"mi" +
246
+ "nItems\":1,\"type\":\"array\"},\"type\":\"array\"},\"state\":{\"$ref\":\"#/$defs/Paylo" +
247
+ "adType\"},\"until\":{\"anyOf\":[{\"$ref\":\"#/$defs/Guard\"},{\"type\":\"null\"}]}},\"" +
248
+ "required\":[\"kind\",\"name\",\"state\",\"body\",\"maxIterations\",\"promotedStatePa" +
249
+ "ths\"],\"type\":\"object\"},{\"additionalProperties\":false,\"properties\":{\"body" +
250
+ "\":{\"$ref\":\"#/$defs/GraphNode\"},\"kind\":{\"const\":\"map\",\"type\":\"string\"},\"m" +
251
+ "axItems\":{\"maximum\":9007199254740991,\"minimum\":1,\"type\":\"integer\"},\"name" +
252
+ "\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\"," +
253
+ "\"type\":\"string\"},\"over\":{\"$ref\":\"#/$defs/DataSelector\"},\"promotedStatePa" +
254
+ "ths\":{\"items\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-" +
255
+ "z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"maxItems\":64,\"minItems\":1,\"type\":" +
256
+ "\"array\"},\"type\":\"array\"},\"state\":{\"$ref\":\"#/$defs/PayloadType\"}},\"requir" +
257
+ "ed\":[\"kind\",\"name\",\"state\",\"body\",\"over\",\"maxItems\",\"promotedStatePaths\"" +
258
+ "],\"type\":\"object\"},{\"additionalProperties\":false,\"properties\":{\"bindings" +
259
+ "\":{\"items\":{\"$ref\":\"#/$defs/InputBinding\"},\"type\":\"array\"},\"kind\":{\"cons" +
260
+ "t\":\"succeed\",\"type\":\"string\"},\"name\":{\"maxLength\":128,\"minLength\":1,\"pat" +
261
+ "tern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"output\":{\"$ref\":\"#/" +
262
+ "$defs/PayloadType\"}},\"required\":[\"kind\",\"name\",\"output\",\"bindings\"],\"typ" +
263
+ "e\":\"object\"},{\"additionalProperties\":false,\"properties\":{\"kind\":{\"const\"" +
264
+ ":\"fail\",\"type\":\"string\"},\"name\":{\"maxLength\":128,\"minLength\":1,\"pattern\"" +
265
+ ":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"reason\":{\"maxLength\":128" +
266
+ ",\"minLength\":1,\"pattern\":\"^(?!unhandled$)[A-Za-z_][A-Za-z0-9_.-]*$\",\"typ" +
267
+ "e\":\"string\"}},\"required\":[\"kind\",\"name\",\"reason\"],\"type\":\"object\"}]},\"Gr" +
268
+ "aphProfile\":{\"enum\":[\"openengine.graph.full/v1\",\"openengine.graph.single" +
269
+ "-worker/v1\"],\"type\":\"string\"},\"GraphSpec\":{\"additionalProperties\":false," +
270
+ "\"properties\":{\"initialInput\":{\"$ref\":\"#/$defs/PayloadType\"},\"policy\":{\"$" +
271
+ "ref\":\"#/$defs/PolicyBinding\"},\"profile\":{\"$ref\":\"#/$defs/GraphProfile\"}," +
272
+ "\"root\":{\"$ref\":\"#/$defs/GraphNode\"}},\"required\":[\"profile\",\"initialInput" +
273
+ "\",\"policy\",\"root\"],\"type\":\"object\"},\"Guard\":{\"oneOf\":[{\"additionalProper" +
274
+ "ties\":false,\"properties\":{\"kind\":{\"const\":\"in\",\"type\":\"string\"},\"labels\"" +
275
+ ":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9" +
276
+ "_.-]*$\",\"type\":\"string\"},\"maxItems\":4096,\"minItems\":1,\"type\":\"array\",\"un" +
277
+ "iqueItems\":true},\"value\":{\"$ref\":\"#/$defs/ControlSelector\"}},\"required\":" +
278
+ "[\"kind\",\"value\",\"labels\"],\"type\":\"object\"},{\"additionalProperties\":false" +
279
+ ",\"properties\":{\"guards\":{\"$ref\":\"#/$defs/NonEmptyVec_of_Guard\"},\"kind\":{" +
280
+ "\"const\":\"all\",\"type\":\"string\"}},\"required\":[\"kind\",\"guards\"],\"type\":\"obj" +
281
+ "ect\"},{\"additionalProperties\":false,\"properties\":{\"guards\":{\"$ref\":\"#/$d" +
282
+ "efs/NonEmptyVec_of_Guard\"},\"kind\":{\"const\":\"any\",\"type\":\"string\"}},\"requ" +
283
+ "ired\":[\"kind\",\"guards\"],\"type\":\"object\"},{\"additionalProperties\":false,\"" +
284
+ "properties\":{\"guard\":{\"$ref\":\"#/$defs/Guard\"},\"kind\":{\"const\":\"not\",\"typ" +
285
+ "e\":\"string\"}},\"required\":[\"kind\",\"guard\"],\"type\":\"object\"},{\"additionalP" +
286
+ "roperties\":false,\"properties\":{\"count\":{\"maximum\":9007199254740991,\"mini" +
287
+ "mum\":1,\"type\":\"integer\"},\"kind\":{\"const\":\"k_of_n\",\"type\":\"string\"},\"labe" +
288
+ "ls\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z" +
289
+ "0-9_.-]*$\",\"type\":\"string\"},\"maxItems\":4096,\"minItems\":1,\"type\":\"array\"," +
290
+ "\"uniqueItems\":true},\"values\":{\"$ref\":\"#/$defs/NonEmptyVec_of_ControlSele" +
291
+ "ctor\"}},\"required\":[\"kind\",\"count\",\"values\",\"labels\"],\"type\":\"object\"},{" +
292
+ "\"additionalProperties\":false,\"properties\":{\"count\":{\"maximum\":9007199254" +
293
+ "740991,\"minimum\":1,\"type\":\"integer\"},\"kind\":{\"const\":\"k_of_map\",\"type\":\"" +
294
+ "string\"},\"labels\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A" +
295
+ "-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"maxItems\":4096,\"minItems\":1,\"" +
296
+ "type\":\"array\",\"uniqueItems\":true},\"value\":{\"$ref\":\"#/$defs/ControlSelect" +
297
+ "or\"}},\"required\":[\"kind\",\"count\",\"value\",\"labels\"],\"type\":\"object\"}]},\"I" +
298
+ "nitializeParams\":{\"additionalProperties\":false,\"properties\":{\"protocolVe" +
299
+ "rsion\":{\"const\":\"openengine.cluster/v1\",\"type\":\"string\"}},\"required\":[\"p" +
300
+ "rotocolVersion\"],\"type\":\"object\"},\"InitializeResult\":{\"properties\":{\"cap" +
301
+ "abilities\":{\"$ref\":\"#/$defs/ServerCapabilities\"},\"protocolVersion\":{\"con" +
302
+ "st\":\"openengine.cluster/v1\",\"type\":\"string\"},\"status\":{\"$ref\":\"#/$defs/C" +
303
+ "lusterStatus\"}},\"required\":[\"protocolVersion\",\"capabilities\",\"status\"],\"" +
304
+ "type\":\"object\"},\"InputBinding\":{\"additionalProperties\":false,\"properties" +
305
+ "\":{\"target\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_" +
306
+ "][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"maxItems\":64,\"minItems\":1,\"type\":\"a" +
307
+ "rray\"},\"value\":{\"$ref\":\"#/$defs/DataSelector\"}},\"required\":[\"target\",\"va" +
308
+ "lue\"],\"type\":\"object\"},\"Join\":{\"oneOf\":[{\"additionalProperties\":false,\"p" +
309
+ "roperties\":{\"kind\":{\"const\":\"all\",\"type\":\"string\"}},\"required\":[\"kind\"]," +
310
+ "\"type\":\"object\"},{\"additionalProperties\":false,\"properties\":{\"kind\":{\"co" +
311
+ "nst\":\"any\",\"type\":\"string\"}},\"required\":[\"kind\"],\"type\":\"object\"},{\"addi" +
312
+ "tionalProperties\":false,\"properties\":{\"count\":{\"maximum\":900719925474099" +
313
+ "1,\"minimum\":1,\"type\":\"integer\"},\"kind\":{\"const\":\"quorum\",\"type\":\"string\"" +
314
+ "}},\"required\":[\"kind\",\"count\"],\"type\":\"object\"},{\"additionalProperties\":" +
315
+ "false,\"properties\":{\"kind\":{\"const\":\"first\",\"type\":\"string\"},\"when\":{\"$r" +
316
+ "ef\":\"#/$defs/Guard\"}},\"required\":[\"kind\",\"when\"],\"type\":\"object\"}]},\"Jso" +
317
+ "nRpcError\":{\"properties\":{\"code\":{\"format\":\"int64\",\"type\":\"integer\"},\"da" +
318
+ "ta\":{\"anyOf\":[{\"$ref\":\"#/$defs/DomainErrorData\"},{\"type\":\"null\"}]},\"mess" +
319
+ "age\":{\"type\":\"string\"}},\"required\":[\"code\",\"message\"],\"type\":\"object\"},\"" +
320
+ "JsonRpcErrorResponse\":{\"properties\":{\"error\":{\"$ref\":\"#/$defs/JsonRpcErr" +
321
+ "or\"},\"id\":{\"anyOf\":[{\"$ref\":\"#/$defs/RequestId\"},{\"type\":\"null\"}]},\"json" +
322
+ "rpc\":{\"type\":\"string\"}},\"required\":[\"jsonrpc\",\"error\"],\"type\":\"object\"}," +
323
+ "\"JsonRpcNotification\":{\"properties\":{\"jsonrpc\":{\"type\":\"string\"},\"method" +
324
+ "\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/EventNotification\"}},\"requ" +
325
+ "ired\":[\"jsonrpc\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcNotificatio" +
326
+ "n10\":{\"properties\":{\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string" +
327
+ "\"},\"params\":{\"$ref\":\"#/$defs/RunLogEventNotification\"}},\"required\":[\"jso" +
328
+ "nrpc\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcNotification11\":{\"prop" +
329
+ "erties\":{\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"params\"" +
330
+ ":{\"$ref\":\"#/$defs/RunAttachEventNotification\"}},\"required\":[\"jsonrpc\",\"m" +
331
+ "ethod\",\"params\"],\"type\":\"object\"},\"JsonRpcNotification2\":{\"properties\":{" +
332
+ "\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":" +
333
+ "\"#/$defs/SubscriptionCancelParams\"}},\"required\":[\"jsonrpc\",\"method\",\"par" +
334
+ "ams\"],\"type\":\"object\"},\"JsonRpcNotification3\":{\"properties\":{\"jsonrpc\":{" +
335
+ "\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/Su" +
336
+ "bscriptionClosedNotification\"}},\"required\":[\"jsonrpc\",\"method\",\"params\"]" +
337
+ ",\"type\":\"object\"},\"JsonRpcNotification4\":{\"properties\":{\"jsonrpc\":{\"type" +
338
+ "\":\"string\"},\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/CancelR" +
339
+ "equestParams\"}},\"required\":[\"jsonrpc\",\"method\",\"params\"],\"type\":\"object\"" +
340
+ "},\"JsonRpcNotification5\":{\"properties\":{\"jsonrpc\":{\"type\":\"string\"},\"met" +
341
+ "hod\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/LogEventNotification\"}}" +
342
+ ",\"required\":[\"jsonrpc\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcNotif" +
343
+ "ication6\":{\"properties\":{\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"s" +
344
+ "tring\"},\"params\":{\"$ref\":\"#/$defs/LogsClosedNotification\"}},\"required\":[" +
345
+ "\"jsonrpc\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcNotification7\":{\"p" +
346
+ "roperties\":{\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"para" +
347
+ "ms\":{\"$ref\":\"#/$defs/AgentAttachEventNotification\"}},\"required\":[\"jsonrp" +
348
+ "c\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcNotification8\":{\"properti" +
349
+ "es\":{\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"params\":{\"$" +
350
+ "ref\":\"#/$defs/AgentAttachClosedNotification\"}},\"required\":[\"jsonrpc\",\"me" +
351
+ "thod\",\"params\"],\"type\":\"object\"},\"JsonRpcNotification9\":{\"properties\":{\"" +
352
+ "jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":\"" +
353
+ "#/$defs/RunWatchEventNotification\"}},\"required\":[\"jsonrpc\",\"method\",\"par" +
354
+ "ams\"],\"type\":\"object\"},\"JsonRpcRequest\":{\"properties\":{\"id\":{\"$ref\":\"#/$" +
355
+ "defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"}," +
356
+ "\"params\":{\"$ref\":\"#/$defs/InitializeParams\"}},\"required\":[\"jsonrpc\",\"id\"" +
357
+ ",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcRequest10\":{\"properties\":{\"" +
358
+ "id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"" +
359
+ "type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/WatchParams\"}},\"required\":[\"js" +
360
+ "onrpc\",\"id\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcRequest11\":{\"pro" +
361
+ "perties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"}," +
362
+ "\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/LogsParams\"}},\"requ" +
363
+ "ired\":[\"jsonrpc\",\"id\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcReques" +
364
+ "t12\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":" +
365
+ "\"string\"},\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/AgentAtta" +
366
+ "chParams\"}},\"required\":[\"jsonrpc\",\"id\",\"method\",\"params\"],\"type\":\"object" +
367
+ "\"},\"JsonRpcRequest13\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"" +
368
+ "jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":\"" +
369
+ "#/$defs/RunSubmitParams\"}},\"required\":[\"jsonrpc\",\"id\",\"method\",\"params\"]" +
370
+ ",\"type\":\"object\"},\"JsonRpcRequest14\":{\"properties\":{\"id\":{\"$ref\":\"#/$def" +
371
+ "s/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"pa" +
372
+ "rams\":{\"$ref\":\"#/$defs/RunListParams\"}},\"required\":[\"jsonrpc\",\"id\",\"meth" +
373
+ "od\",\"params\"],\"type\":\"object\"},\"JsonRpcRequest15\":{\"properties\":{\"id\":{\"" +
374
+ "$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":" +
375
+ "\"string\"},\"params\":{\"$ref\":\"#/$defs/RunStatusParams\"}},\"required\":[\"json" +
376
+ "rpc\",\"id\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcRequest16\":{\"prope" +
377
+ "rties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"m" +
378
+ "ethod\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/RunWatchParams\"}},\"re" +
379
+ "quired\":[\"jsonrpc\",\"id\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcRequ" +
380
+ "est17\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type" +
381
+ "\":\"string\"},\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/RunLogs" +
382
+ "Params\"}},\"required\":[\"jsonrpc\",\"id\",\"method\",\"params\"],\"type\":\"object\"}" +
383
+ ",\"JsonRpcRequest18\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"js" +
384
+ "onrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/" +
385
+ "$defs/RunAttachParams\"}},\"required\":[\"jsonrpc\",\"id\",\"method\",\"params\"],\"" +
386
+ "type\":\"object\"},\"JsonRpcRequest19\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/" +
387
+ "RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"para" +
388
+ "ms\":{\"$ref\":\"#/$defs/RunForceParams\"}},\"required\":[\"jsonrpc\",\"id\",\"metho" +
389
+ "d\",\"params\"],\"type\":\"object\"},\"JsonRpcRequest2\":{\"properties\":{\"id\":{\"$r" +
390
+ "ef\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"s" +
391
+ "tring\"},\"params\":{\"$ref\":\"#/$defs/PlanParams\"}},\"required\":[\"jsonrpc\",\"i" +
392
+ "d\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcRequest3\":{\"properties\":{" +
393
+ "\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"method\":{" +
394
+ "\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/ApplyParams\"}},\"required\":[\"j" +
395
+ "sonrpc\",\"id\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcRequest4\":{\"pro" +
396
+ "perties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"}," +
397
+ "\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/GetParams\"}},\"requi" +
398
+ "red\":[\"jsonrpc\",\"id\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcRequest" +
399
+ "5\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"s" +
400
+ "tring\"},\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/UpdateParam" +
401
+ "s\"}},\"required\":[\"jsonrpc\",\"id\",\"method\",\"params\"],\"type\":\"object\"},\"Jso" +
402
+ "nRpcRequest6\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\"" +
403
+ ":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":\"#/$defs/" +
404
+ "StopParams\"}},\"required\":[\"jsonrpc\",\"id\",\"method\",\"params\"],\"type\":\"obje" +
405
+ "ct\"},\"JsonRpcRequest7\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"}," +
406
+ "\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"params\":{\"$ref\":" +
407
+ "\"#/$defs/RetryParams\"}},\"required\":[\"jsonrpc\",\"id\",\"method\",\"params\"],\"t" +
408
+ "ype\":\"object\"},\"JsonRpcRequest8\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/Re" +
409
+ "questId\"},\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"string\"},\"params" +
410
+ "\":{\"$ref\":\"#/$defs/ResubmitParams\"}},\"required\":[\"jsonrpc\",\"id\",\"method\"" +
411
+ ",\"params\"],\"type\":\"object\"},\"JsonRpcRequest9\":{\"properties\":{\"id\":{\"$ref" +
412
+ "\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"method\":{\"type\":\"str" +
413
+ "ing\"},\"params\":{\"$ref\":\"#/$defs/DeleteParams\"}},\"required\":[\"jsonrpc\",\"i" +
414
+ "d\",\"method\",\"params\"],\"type\":\"object\"},\"JsonRpcResponse\":{\"anyOf\":[{\"$re" +
415
+ "f\":\"#/$defs/JsonRpcSuccess\"},{\"$ref\":\"#/$defs/JsonRpcErrorResponse\"}]},\"" +
416
+ "JsonRpcResponse10\":{\"anyOf\":[{\"$ref\":\"#/$defs/JsonRpcSuccess10\"},{\"$ref\"" +
417
+ ":\"#/$defs/JsonRpcErrorResponse\"}]},\"JsonRpcResponse11\":{\"anyOf\":[{\"$ref\"" +
418
+ ":\"#/$defs/JsonRpcSuccess11\"},{\"$ref\":\"#/$defs/JsonRpcErrorResponse\"}]},\"" +
419
+ "JsonRpcResponse12\":{\"anyOf\":[{\"$ref\":\"#/$defs/JsonRpcSuccess12\"},{\"$ref\"" +
420
+ ":\"#/$defs/JsonRpcErrorResponse\"}]},\"JsonRpcResponse13\":{\"anyOf\":[{\"$ref\"" +
421
+ ":\"#/$defs/JsonRpcSuccess13\"},{\"$ref\":\"#/$defs/JsonRpcErrorResponse\"}]},\"" +
422
+ "JsonRpcResponse14\":{\"anyOf\":[{\"$ref\":\"#/$defs/JsonRpcSuccess14\"},{\"$ref\"" +
423
+ ":\"#/$defs/JsonRpcErrorResponse\"}]},\"JsonRpcResponse15\":{\"anyOf\":[{\"$ref\"" +
424
+ ":\"#/$defs/JsonRpcSuccess15\"},{\"$ref\":\"#/$defs/JsonRpcErrorResponse\"}]},\"" +
425
+ "JsonRpcResponse16\":{\"anyOf\":[{\"$ref\":\"#/$defs/JsonRpcSuccess16\"},{\"$ref\"" +
426
+ ":\"#/$defs/JsonRpcErrorResponse\"}]},\"JsonRpcResponse17\":{\"anyOf\":[{\"$ref\"" +
427
+ ":\"#/$defs/JsonRpcSuccess17\"},{\"$ref\":\"#/$defs/JsonRpcErrorResponse\"}]},\"" +
428
+ "JsonRpcResponse18\":{\"anyOf\":[{\"$ref\":\"#/$defs/JsonRpcSuccess18\"},{\"$ref\"" +
429
+ ":\"#/$defs/JsonRpcErrorResponse\"}]},\"JsonRpcResponse19\":{\"anyOf\":[{\"$ref\"" +
430
+ ":\"#/$defs/JsonRpcSuccess19\"},{\"$ref\":\"#/$defs/JsonRpcErrorResponse\"}]},\"" +
431
+ "JsonRpcResponse2\":{\"anyOf\":[{\"$ref\":\"#/$defs/JsonRpcSuccess2\"},{\"$ref\":\"" +
432
+ "#/$defs/JsonRpcErrorResponse\"}]},\"JsonRpcResponse3\":{\"anyOf\":[{\"$ref\":\"#" +
433
+ "/$defs/JsonRpcSuccess3\"},{\"$ref\":\"#/$defs/JsonRpcErrorResponse\"}]},\"Json" +
434
+ "RpcResponse4\":{\"anyOf\":[{\"$ref\":\"#/$defs/JsonRpcSuccess4\"},{\"$ref\":\"#/$d" +
435
+ "efs/JsonRpcErrorResponse\"}]},\"JsonRpcResponse5\":{\"anyOf\":[{\"$ref\":\"#/$de" +
436
+ "fs/JsonRpcSuccess5\"},{\"$ref\":\"#/$defs/JsonRpcErrorResponse\"}]},\"JsonRpcR" +
437
+ "esponse6\":{\"anyOf\":[{\"$ref\":\"#/$defs/JsonRpcSuccess6\"},{\"$ref\":\"#/$defs/" +
438
+ "JsonRpcErrorResponse\"}]},\"JsonRpcResponse7\":{\"anyOf\":[{\"$ref\":\"#/$defs/J" +
439
+ "sonRpcSuccess7\"},{\"$ref\":\"#/$defs/JsonRpcErrorResponse\"}]},\"JsonRpcRespo" +
440
+ "nse8\":{\"anyOf\":[{\"$ref\":\"#/$defs/JsonRpcSuccess8\"},{\"$ref\":\"#/$defs/Json" +
441
+ "RpcErrorResponse\"}]},\"JsonRpcResponse9\":{\"anyOf\":[{\"$ref\":\"#/$defs/JsonR" +
442
+ "pcSuccess9\"},{\"$ref\":\"#/$defs/JsonRpcErrorResponse\"}]},\"JsonRpcSuccess\":" +
443
+ "{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"stri" +
444
+ "ng\"},\"result\":{\"$ref\":\"#/$defs/InitializeResult\"}},\"required\":[\"jsonrpc\"" +
445
+ ",\"id\",\"result\"],\"type\":\"object\"},\"JsonRpcSuccess10\":{\"properties\":{\"id\":" +
446
+ "{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"result\":{\"$ref" +
447
+ "\":\"#/$defs/WatchResult\"}},\"required\":[\"jsonrpc\",\"id\",\"result\"],\"type\":\"o" +
448
+ "bject\"},\"JsonRpcSuccess11\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestI" +
449
+ "d\"},\"jsonrpc\":{\"type\":\"string\"},\"result\":{\"$ref\":\"#/$defs/LogsResult\"}}," +
450
+ "\"required\":[\"jsonrpc\",\"id\",\"result\"],\"type\":\"object\"},\"JsonRpcSuccess12\"" +
451
+ ":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"str" +
452
+ "ing\"},\"result\":{\"$ref\":\"#/$defs/AgentAttachResult\"}},\"required\":[\"jsonrp" +
453
+ "c\",\"id\",\"result\"],\"type\":\"object\"},\"JsonRpcSuccess13\":{\"properties\":{\"id" +
454
+ "\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"result\":{\"$r" +
455
+ "ef\":\"#/$defs/RunSubmitResult\"}},\"required\":[\"jsonrpc\",\"id\",\"result\"],\"ty" +
456
+ "pe\":\"object\"},\"JsonRpcSuccess14\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/Re" +
457
+ "questId\"},\"jsonrpc\":{\"type\":\"string\"},\"result\":{\"$ref\":\"#/$defs/RunListR" +
458
+ "esult\"}},\"required\":[\"jsonrpc\",\"id\",\"result\"],\"type\":\"object\"},\"JsonRpcS" +
459
+ "uccess15\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"t" +
460
+ "ype\":\"string\"},\"result\":{\"$ref\":\"#/$defs/RunStatusResult\"}},\"required\":[" +
461
+ "\"jsonrpc\",\"id\",\"result\"],\"type\":\"object\"},\"JsonRpcSuccess16\":{\"propertie" +
462
+ "s\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"resul" +
463
+ "t\":{\"$ref\":\"#/$defs/RunWatchResult\"}},\"required\":[\"jsonrpc\",\"id\",\"result" +
464
+ "\"],\"type\":\"object\"},\"JsonRpcSuccess17\":{\"properties\":{\"id\":{\"$ref\":\"#/$d" +
465
+ "efs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"result\":{\"$ref\":\"#/$defs/Ru" +
466
+ "nLogsResult\"}},\"required\":[\"jsonrpc\",\"id\",\"result\"],\"type\":\"object\"},\"Js" +
467
+ "onRpcSuccess18\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrp" +
468
+ "c\":{\"type\":\"string\"},\"result\":{\"$ref\":\"#/$defs/RunAttachResult\"}},\"requi" +
469
+ "red\":[\"jsonrpc\",\"id\",\"result\"],\"type\":\"object\"},\"JsonRpcSuccess19\":{\"pro" +
470
+ "perties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"}," +
471
+ "\"result\":{\"$ref\":\"#/$defs/RunForceResult\"}},\"required\":[\"jsonrpc\",\"id\",\"" +
472
+ "result\"],\"type\":\"object\"},\"JsonRpcSuccess2\":{\"properties\":{\"id\":{\"$ref\":" +
473
+ "\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"result\":{\"$ref\":\"#/$de" +
474
+ "fs/PlanResult\"}},\"required\":[\"jsonrpc\",\"id\",\"result\"],\"type\":\"object\"},\"" +
475
+ "JsonRpcSuccess3\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonr" +
476
+ "pc\":{\"type\":\"string\"},\"result\":{\"$ref\":\"#/$defs/ApplyResult\"}},\"required" +
477
+ "\":[\"jsonrpc\",\"id\",\"result\"],\"type\":\"object\"},\"JsonRpcSuccess4\":{\"propert" +
478
+ "ies\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"res" +
479
+ "ult\":{\"$ref\":\"#/$defs/GetResult\"}},\"required\":[\"jsonrpc\",\"id\",\"result\"]," +
480
+ "\"type\":\"object\"},\"JsonRpcSuccess5\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/" +
481
+ "RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"result\":{\"$ref\":\"#/$defs/Update" +
482
+ "Result\"}},\"required\":[\"jsonrpc\",\"id\",\"result\"],\"type\":\"object\"},\"JsonRpc" +
483
+ "Success6\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"t" +
484
+ "ype\":\"string\"},\"result\":{\"$ref\":\"#/$defs/StopResult\"}},\"required\":[\"json" +
485
+ "rpc\",\"id\",\"result\"],\"type\":\"object\"},\"JsonRpcSuccess7\":{\"properties\":{\"i" +
486
+ "d\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\":\"string\"},\"result\":{\"$" +
487
+ "ref\":\"#/$defs/RetryResult\"}},\"required\":[\"jsonrpc\",\"id\",\"result\"],\"type\"" +
488
+ ":\"object\"},\"JsonRpcSuccess8\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/Reques" +
489
+ "tId\"},\"jsonrpc\":{\"type\":\"string\"},\"result\":{\"$ref\":\"#/$defs/ResubmitResu" +
490
+ "lt\"}},\"required\":[\"jsonrpc\",\"id\",\"result\"],\"type\":\"object\"},\"JsonRpcSucc" +
491
+ "ess9\":{\"properties\":{\"id\":{\"$ref\":\"#/$defs/RequestId\"},\"jsonrpc\":{\"type\"" +
492
+ ":\"string\"},\"result\":{\"$ref\":\"#/$defs/DeleteResult\"}},\"required\":[\"jsonrp" +
493
+ "c\",\"id\",\"result\"],\"type\":\"object\"},\"Labels\":{\"additionalProperties\":{\"ma" +
494
+ "xLength\":256,\"minLength\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]" +
495
+ "+$\",\"type\":\"string\"},\"maxProperties\":64,\"propertyNames\":{\"maxLength\":256" +
496
+ ",\"minLength\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"" +
497
+ "string\"},\"type\":\"object\"},\"LogEventNotification\":{\"$ref\":\"#/$defs/LogEve" +
498
+ "ntNotificationWire\"},\"LogEventNotificationWire\":{\"additionalProperties\":" +
499
+ "false,\"properties\":{\"record\":{\"$ref\":\"#/$defs/LogRecord\"},\"subscriptionI" +
500
+ "d\":{\"type\":\"string\"}},\"required\":[\"subscriptionId\",\"record\"],\"type\":\"obj" +
501
+ "ect\"},\"LogLevel\":{\"enum\":[\"trace\",\"debug\",\"info\",\"warn\",\"error\"],\"type\":" +
502
+ "\"string\"},\"LogRecord\":{\"additionalProperties\":false,\"description\":\"The c" +
503
+ "losed public log record shape: a level, a bounded target, and a bounded " +
504
+ "(possibly\\nredacted) message. No raw bytes, reasoning, tools, credential" +
505
+ "s, env, or provider/session IDs\\nare representable.\",\"properties\":{\"leve" +
506
+ "l\":{\"$ref\":\"#/$defs/LogLevel\"},\"message\":{\"maxLength\":16384,\"pattern\":\"^" +
507
+ "[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]*$\",\"type\":\"string\"},\"target\":{\"maxLeng" +
508
+ "th\":128,\"minLength\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"" +
509
+ "type\":\"string\"}},\"required\":[\"level\",\"target\",\"message\"],\"type\":\"object\"" +
510
+ "},\"LogsClosedNotification\":{\"additionalProperties\":false,\"description\":\"" +
511
+ "Wire body of the terminal `subscription/closed` server notification for " +
512
+ "a `logs` subscription.\\nDeliberately carries no cursor field -- `logs` g" +
513
+ "ives a type-level \\\"cursorless\\\" guarantee, unlike\\n[`crate::Subscriptio" +
514
+ "nClosedNotification`].\",\"properties\":{\"reason\":{\"$ref\":\"#/$defs/Subscrip" +
515
+ "tionCloseReason\"},\"subscriptionId\":{\"type\":\"string\"}},\"required\":[\"subsc" +
516
+ "riptionId\",\"reason\"],\"type\":\"object\"},\"LogsParams\":{\"additionalPropertie" +
517
+ "s\":false,\"description\":\"`logs` establishment parameters. v1 has zero cal" +
518
+ "ler filters: this is deliberately empty and\\nclosed, rejecting any unkno" +
519
+ "wn field.\",\"type\":\"object\"},\"LogsResult\":{\"additionalProperties\":false,\"" +
520
+ "description\":\"The `logs` establishment result: only a `subscriptionId`. " +
521
+ "Deliberately carries no `runId` or\\n`atCursor` -- `logs` is not run-scop" +
522
+ "ed and has no cursor.\",\"properties\":{\"subscriptionId\":{\"type\":\"string\"}}" +
523
+ ",\"required\":[\"subscriptionId\"],\"type\":\"object\"},\"NodeAddress\":{\"addition" +
524
+ "alProperties\":false,\"properties\":{\"attempt\":{\"maximum\":9007199254740991," +
525
+ "\"minimum\":1,\"type\":\"integer\"},\"node\":{\"maxLength\":128,\"minLength\":1,\"pat" +
526
+ "tern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"}},\"required\":[\"node\"," +
527
+ "\"attempt\"],\"type\":\"object\"},\"NodeInstructions\":{\"maxLength\":16384,\"minLe" +
528
+ "ngth\":1,\"pattern\":\"^[^\\\\u0000]*[^\\\\s\\\\u0000][^\\\\u0000]*$\",\"type\":\"string" +
529
+ "\"},\"NodeOutputChannel\":{\"enum\":[\"out\",\"signal\",\"diagnostic\"],\"type\":\"str" +
530
+ "ing\"},\"NodeOutputSelector\":{\"additionalProperties\":false,\"properties\":{\"" +
531
+ "channel\":{\"$ref\":\"#/$defs/NodeOutputChannel\"},\"node\":{\"maxLength\":128,\"m" +
532
+ "inLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"pat" +
533
+ "h\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0" +
534
+ "-9_.-]*$\",\"type\":\"string\"},\"maxItems\":64,\"minItems\":1,\"type\":\"array\"}},\"" +
535
+ "required\":[\"node\",\"channel\",\"path\"],\"type\":\"object\"},\"NodeRuntimeBinding" +
536
+ "\":{\"oneOf\":[{\"additionalProperties\":false,\"properties\":{\"connections\":{\"" +
537
+ "$ref\":\"#/$defs/DeclaredConnections\"},\"effort\":{\"anyOf\":[{\"$ref\":\"#/$defs" +
538
+ "/ReasoningEffort\"},{\"type\":\"null\"}]},\"kind\":{\"const\":\"agent\",\"type\":\"str" +
539
+ "ing\"},\"model\":{\"maxLength\":128,\"minLength\":1,\"type\":\"string\"},\"sessionSc" +
540
+ "ope\":{\"$ref\":\"#/$defs/SessionScope\"}},\"required\":[\"kind\",\"model\"],\"type\"" +
541
+ ":\"object\"},{\"additionalProperties\":false,\"properties\":{\"connections\":{\"$" +
542
+ "ref\":\"#/$defs/DeclaredConnections\"},\"kind\":{\"const\":\"git_delivery\",\"type" +
543
+ "\":\"string\"}},\"required\":[\"kind\"],\"type\":\"object\"}]},\"NonEmptyVec_of_Choi" +
544
+ "ceBranch\":{\"items\":{\"$ref\":\"#/$defs/ChoiceBranch\"},\"maxItems\":4096,\"minI" +
545
+ "tems\":1,\"type\":\"array\"},\"NonEmptyVec_of_ControlSelector\":{\"items\":{\"$ref" +
546
+ "\":\"#/$defs/ControlSelector\"},\"maxItems\":4096,\"minItems\":1,\"type\":\"array\"" +
547
+ "},\"NonEmptyVec_of_FieldPath\":{\"items\":{\"items\":{\"maxLength\":128,\"minLeng" +
548
+ "th\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"maxItems\"" +
549
+ ":64,\"minItems\":1,\"type\":\"array\"},\"maxItems\":4096,\"minItems\":1,\"type\":\"ar" +
550
+ "ray\"},\"NonEmptyVec_of_GraphNode\":{\"items\":{\"$ref\":\"#/$defs/GraphNode\"},\"" +
551
+ "maxItems\":4096,\"minItems\":1,\"type\":\"array\"},\"NonEmptyVec_of_Guard\":{\"ite" +
552
+ "ms\":{\"$ref\":\"#/$defs/Guard\"},\"maxItems\":4096,\"minItems\":1,\"type\":\"array\"" +
553
+ "},\"NonEmptyVec_of_NodeName\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"pat" +
554
+ "tern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"maxItems\":4096,\"min" +
555
+ "Items\":1,\"type\":\"array\"},\"OperationalStatus\":{\"additionalProperties\":fal" +
556
+ "se,\"properties\":{\"dispatchState\":{\"$ref\":\"#/$defs/DispatchState\"},\"inFli" +
557
+ "ght\":{\"format\":\"uint32\",\"minimum\":0,\"type\":\"integer\"},\"labels\":{\"$ref\":\"" +
558
+ "#/$defs/Labels\"},\"logLevel\":{\"$ref\":\"#/$defs/LogLevel\"},\"stopMode\":{\"any" +
559
+ "Of\":[{\"$ref\":\"#/$defs/StopMode\"},{\"type\":\"null\"}]}},\"required\":[\"labels\"" +
560
+ ",\"logLevel\",\"dispatchState\",\"inFlight\"],\"type\":\"object\"},\"PayloadType\":{" +
561
+ "\"oneOf\":[{\"additionalProperties\":false,\"properties\":{\"kind\":{\"const\":\"nu" +
562
+ "ll\",\"type\":\"string\"}},\"required\":[\"kind\"],\"type\":\"object\"},{\"additionalP" +
563
+ "roperties\":false,\"properties\":{\"kind\":{\"const\":\"boolean\",\"type\":\"string\"" +
564
+ "}},\"required\":[\"kind\"],\"type\":\"object\"},{\"additionalProperties\":false,\"p" +
565
+ "roperties\":{\"kind\":{\"const\":\"integer\",\"type\":\"string\"}},\"required\":[\"kin" +
566
+ "d\"],\"type\":\"object\"},{\"additionalProperties\":false,\"properties\":{\"kind\":" +
567
+ "{\"const\":\"number\",\"type\":\"string\"}},\"required\":[\"kind\"],\"type\":\"object\"}" +
568
+ ",{\"additionalProperties\":false,\"properties\":{\"kind\":{\"const\":\"string\",\"t" +
569
+ "ype\":\"string\"}},\"required\":[\"kind\"],\"type\":\"object\"},{\"additionalPropert" +
570
+ "ies\":false,\"properties\":{\"fields\":{\"additionalProperties\":{\"$ref\":\"#/$de" +
571
+ "fs/RecordField\"},\"propertyNames\":{\"maxLength\":128,\"minLength\":1,\"pattern" +
572
+ "\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"type\":\"object\"},\"kind\":" +
573
+ "{\"const\":\"record\",\"type\":\"string\"}},\"required\":[\"kind\",\"fields\"],\"type\":" +
574
+ "\"object\"},{\"additionalProperties\":false,\"properties\":{\"items\":{\"$ref\":\"#" +
575
+ "/$defs/PayloadType\"},\"kind\":{\"const\":\"array\",\"type\":\"string\"}},\"required" +
576
+ "\":[\"kind\",\"items\"],\"type\":\"object\"},{\"additionalProperties\":false,\"prope" +
577
+ "rties\":{\"kind\":{\"const\":\"enum\",\"type\":\"string\"},\"values\":{\"items\":{\"maxL" +
578
+ "ength\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"" +
579
+ "string\"},\"maxItems\":4096,\"minItems\":1,\"type\":\"array\",\"uniqueItems\":true}" +
580
+ "},\"required\":[\"kind\",\"values\"],\"type\":\"object\"}]},\"Phase\":{\"enum\":[\"empt" +
581
+ "y\",\"admitting\",\"running\",\"finished\",\"deleting\"],\"type\":\"string\"},\"PlanPa" +
582
+ "rams\":{\"additionalProperties\":false,\"properties\":{\"graph\":{\"$ref\":\"#/$de" +
583
+ "fs/GraphSpec\"}},\"required\":[\"graph\"],\"type\":\"object\"},\"PlanResult\":{\"add" +
584
+ "itionalProperties\":false,\"properties\":{\"bounds\":{\"anyOf\":[{\"$ref\":\"#/$de" +
585
+ "fs/StructuralBounds\"},{\"type\":\"null\"}]},\"diagnostics\":{\"items\":{\"$ref\":\"" +
586
+ "#/$defs/GraphDiagnostic\"},\"type\":\"array\"},\"ok\":{\"type\":\"boolean\"}},\"requ" +
587
+ "ired\":[\"ok\",\"diagnostics\"],\"type\":\"object\"},\"PolicyBinding\":{\"additional" +
588
+ "Properties\":false,\"properties\":{\"default\":{\"$ref\":\"#/$defs/PolicyDefault" +
589
+ "\"},\"policy\":{\"maxLength\":256,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*@[1-9][" +
590
+ "0-9]*$\",\"type\":\"string\"}},\"required\":[\"policy\",\"default\"],\"type\":\"object" +
591
+ "\"},\"PolicyDefault\":{\"enum\":[\"deny\"],\"type\":\"string\"},\"ReasoningEffort\":{" +
592
+ "\"enum\":[\"low\",\"medium\",\"high\",\"xhigh\",\"max\"],\"type\":\"string\"},\"RecordFie" +
593
+ "ld\":{\"additionalProperties\":false,\"properties\":{\"required\":{\"type\":\"bool" +
594
+ "ean\"},\"type\":{\"$ref\":\"#/$defs/PayloadType\"}},\"required\":[\"type\",\"require" +
595
+ "d\"],\"type\":\"object\"},\"RedactionClass\":{\"enum\":[\"public\",\"internal\",\"conf" +
596
+ "idential\",\"restricted\"],\"type\":\"string\"},\"RequestId\":{\"anyOf\":[{\"type\":\"" +
597
+ "string\"},{\"format\":\"int64\",\"type\":\"integer\"}]},\"ResolvedSource\":{\"additi" +
598
+ "onalProperties\":false,\"properties\":{\"branch\":{\"maxLength\":255,\"minLength" +
599
+ "\":1,\"type\":\"string\"},\"repository\":{\"maxLength\":255,\"minLength\":3,\"patter" +
600
+ "n\":\"^[A-Za-z0-9._-]+/[A-Za-z0-9._-]+$\",\"type\":\"string\"},\"revision\":{\"pat" +
601
+ "tern\":\"^[0-9a-f]{40}$\",\"type\":\"string\"}},\"required\":[\"repository\",\"branc" +
602
+ "h\",\"revision\"],\"type\":\"object\"},\"ResubmitParams\":{\"additionalProperties\"" +
603
+ ":false,\"properties\":{\"idempotencyKey\":{\"maxLength\":256,\"minLength\":1,\"pa" +
604
+ "ttern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"},\"ifGenera" +
605
+ "tion\":{\"maximum\":9007199254740991,\"minimum\":0,\"type\":\"integer\"},\"ifRunId" +
606
+ "\":{\"type\":\"string\"},\"replacementInput\":true},\"required\":[\"ifGeneration\"," +
607
+ "\"ifRunId\",\"idempotencyKey\"],\"type\":\"object\"},\"ResubmitResult\":{\"addition" +
608
+ "alProperties\":false,\"properties\":{\"atCursor\":{\"type\":\"string\"},\"deduped\"" +
609
+ ":{\"type\":\"boolean\"},\"generation\":{\"maximum\":9007199254740991,\"minimum\":0" +
610
+ ",\"type\":\"integer\"},\"operational\":{\"$ref\":\"#/$defs/OperationalStatus\"},\"p" +
611
+ "hase\":{\"$ref\":\"#/$defs/Phase\"},\"priorRunId\":{\"type\":\"string\"},\"runId\":{\"" +
612
+ "type\":\"string\"}},\"required\":[\"generation\",\"priorRunId\",\"runId\",\"phase\",\"" +
613
+ "operational\",\"atCursor\",\"deduped\"],\"type\":\"object\"},\"RetryParams\":{\"addi" +
614
+ "tionalProperties\":false,\"properties\":{\"idempotencyKey\":{\"maxLength\":256," +
615
+ "\"minLength\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"s" +
616
+ "tring\"},\"ifGeneration\":{\"maximum\":9007199254740991,\"minimum\":0,\"type\":\"i" +
617
+ "nteger\"}},\"required\":[\"ifGeneration\",\"idempotencyKey\"],\"type\":\"object\"}," +
618
+ "\"RetryResult\":{\"additionalProperties\":false,\"properties\":{\"atCursor\":{\"t" +
619
+ "ype\":\"string\"},\"deduped\":{\"type\":\"boolean\"},\"generation\":{\"maximum\":9007" +
620
+ "199254740991,\"minimum\":0,\"type\":\"integer\"},\"operational\":{\"$ref\":\"#/$def" +
621
+ "s/OperationalStatus\"},\"phase\":{\"$ref\":\"#/$defs/Phase\"},\"retriedTurnId\":{" +
622
+ "\"type\":\"string\"},\"retryTurnId\":{\"type\":\"string\"},\"runId\":{\"type\":\"string" +
623
+ "\"}},\"required\":[\"generation\",\"runId\",\"phase\",\"retriedTurnId\",\"retryTurnI" +
624
+ "d\",\"operational\",\"atCursor\",\"deduped\"],\"type\":\"object\"},\"RunAttachEventN" +
625
+ "otification\":{\"additionalProperties\":false,\"description\":\"One live read-" +
626
+ "only attach event. Carrying both identities prevents events from simulta" +
627
+ "neous\\nverifier attachments being confused on a multiplexed transport.\"," +
628
+ "\"properties\":{\"event\":{\"$ref\":\"#/$defs/AgentAttachEvent\"},\"execution\":{\"" +
629
+ "maxLength\":128,\"minLength\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009" +
630
+ "f]+$\",\"type\":\"string\"},\"runId\":{\"type\":\"string\"},\"subscriptionId\":{\"type" +
631
+ "\":\"string\"}},\"required\":[\"subscriptionId\",\"runId\",\"execution\",\"event\"],\"" +
632
+ "type\":\"object\"},\"RunAttachParams\":{\"additionalProperties\":false,\"descrip" +
633
+ "tion\":\"Establishes a live, read-only view of exactly one execution.\\n\\nA" +
634
+ "ttach has no cursor and no replay. Historical output is available throug" +
635
+ "h [`RunLogsParams`].\\nNo client-to-execution input message exists in thi" +
636
+ "s contract.\",\"properties\":{\"execution\":{\"maxLength\":128,\"minLength\":1,\"p" +
637
+ "attern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"},\"runId\":" +
638
+ "{\"type\":\"string\"}},\"required\":[\"runId\",\"execution\"],\"type\":\"object\"},\"Ru" +
639
+ "nAttachResult\":{\"additionalProperties\":false,\"properties\":{\"execution\":{" +
640
+ "\"maxLength\":128,\"minLength\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u00" +
641
+ "9f]+$\",\"type\":\"string\"},\"runId\":{\"type\":\"string\"},\"subscriptionId\":{\"typ" +
642
+ "e\":\"string\"}},\"required\":[\"subscriptionId\",\"runId\",\"execution\"],\"type\":\"" +
643
+ "object\"},\"RunForceParams\":{\"additionalProperties\":false,\"description\":\"R" +
644
+ "equests the MVP's only stop mode: force. Repeated requests are idempoten" +
645
+ "t at the run ledger.\",\"properties\":{\"runId\":{\"type\":\"string\"}},\"required" +
646
+ "\":[\"runId\"],\"type\":\"object\"},\"RunForceResult\":{\"additionalProperties\":fa" +
647
+ "lse,\"description\":\"The durable run status after recording the force requ" +
648
+ "est.\",\"properties\":{\"atCursor\":{\"description\":\"Durable cursor after the " +
649
+ "force request was recorded.\",\"type\":\"string\"},\"runId\":{\"description\":\"Pu" +
650
+ "blic identity of the run whose force request was recorded.\",\"type\":\"stri" +
651
+ "ng\"},\"size\":{\"$ref\":\"#/$defs/RunSize\",\"description\":\"Immutable execution" +
652
+ " size selected for the run.\"},\"source\":{\"$ref\":\"#/$defs/ResolvedSource\"," +
653
+ "\"description\":\"Immutable repository snapshot captured when the run was a" +
654
+ "dmitted.\"},\"status\":{\"$ref\":\"#/$defs/RunStatus\",\"description\":\"Public ph" +
655
+ "ase projected after the force request was recorded.\"},\"title\":{\"descript" +
656
+ "ion\":\"Immutable title captured when the run was admitted.\",\"maxLength\":2" +
657
+ "56,\"minLength\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\"" +
658
+ ":\"string\"}},\"required\":[\"runId\",\"title\",\"source\",\"size\",\"atCursor\",\"stat" +
659
+ "us\"],\"type\":\"object\"},\"RunListParams\":{\"additionalProperties\":false,\"des" +
660
+ "cription\":\"The MVP inventory has no filters or pagination controls.\",\"ty" +
661
+ "pe\":\"object\"},\"RunListResult\":{\"additionalProperties\":false,\"description" +
662
+ "\":\"Current durable projections for every retained run.\",\"properties\":{\"r" +
663
+ "uns\":{\"items\":{\"$ref\":\"#/$defs/RunStatusResult\"},\"type\":\"array\"}},\"requi" +
664
+ "red\":[\"runs\"],\"type\":\"object\"},\"RunLogEventNotification\":{\"additionalPro" +
665
+ "perties\":false,\"description\":\"One durable, reconnectable safe log record" +
666
+ ". Run-wide system records have no execution;\\nexecution output carries t" +
667
+ "he stable opaque selector used by status and attach.\",\"properties\":{\"cur" +
668
+ "sor\":{\"type\":\"string\"},\"execution\":{\"maxLength\":128,\"minLength\":1,\"patte" +
669
+ "rn\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":[\"string\",\"null\"]},\"re" +
670
+ "cord\":{\"$ref\":\"#/$defs/LogRecord\"},\"runId\":{\"type\":\"string\"},\"subscripti" +
671
+ "onId\":{\"type\":\"string\"}},\"required\":[\"subscriptionId\",\"runId\",\"cursor\",\"" +
672
+ "record\"],\"type\":\"object\"},\"RunLogsParams\":{\"additionalProperties\":false," +
673
+ "\"description\":\"Establishes durable run log replay followed by live deliv" +
674
+ "ery.\\n\\nAn optional execution filter selects one active or settled execu" +
675
+ "tion using the exact opaque\\nreference advertised by status. `fromCursor" +
676
+ "` is exclusive, with the same reconnect semantics\\nas [`RunWatchParams`]" +
677
+ ". Omitting both fields after `runId` replays the run's complete retained" +
678
+ "\\nsafe log history.\",\"properties\":{\"execution\":{\"maxLength\":128,\"minLeng" +
679
+ "th\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":[\"string\"," +
680
+ "\"null\"]},\"fromCursor\":{\"type\":[\"string\",\"null\"]},\"runId\":{\"type\":\"string" +
681
+ "\"}},\"required\":[\"runId\"],\"type\":\"object\"},\"RunLogsResult\":{\"additionalPr" +
682
+ "operties\":false,\"properties\":{\"atCursor\":{\"type\":\"string\"},\"runId\":{\"typ" +
683
+ "e\":\"string\"},\"subscriptionId\":{\"type\":\"string\"}},\"required\":[\"subscripti" +
684
+ "onId\",\"runId\",\"atCursor\"],\"type\":\"object\"},\"RunMetadata\":{\"additionalPro" +
685
+ "perties\":false,\"description\":\"Additive metadata emitted only with a term" +
686
+ "inal run projection.\",\"properties\":{\"tokenUsage\":{\"anyOf\":[{\"$ref\":\"#/$d" +
687
+ "efs/TokenUsage\"},{\"type\":\"null\"}]}},\"type\":\"object\"},\"RunSize\":{\"enum\":[" +
688
+ "\"small\",\"medium\",\"large\"],\"type\":\"string\"},\"RunStatus\":{\"description\":\"P" +
689
+ "ublic run state. The closed phase variants make impossible combinations " +
690
+ "unrepresentable:\\nadmitted runs have no execution, stopping means force " +
691
+ "was requested, and finished runs have\\nexactly one terminal result and n" +
692
+ "o active execution. Running/stopping report every active\\nexecution rath" +
693
+ "er than a single \\\"current worker\\\" slot.\",\"oneOf\":[{\"additionalProperti" +
694
+ "es\":false,\"properties\":{\"phase\":{\"const\":\"admitted\",\"type\":\"string\"}},\"r" +
695
+ "equired\":[\"phase\"],\"type\":\"object\"},{\"additionalProperties\":false,\"prope" +
696
+ "rties\":{\"activeExecutions\":{\"items\":{\"$ref\":\"#/$defs/ActiveExecution\"},\"" +
697
+ "type\":\"array\"},\"phase\":{\"const\":\"running\",\"type\":\"string\"}},\"required\":[" +
698
+ "\"phase\",\"activeExecutions\"],\"type\":\"object\"},{\"additionalProperties\":fal" +
699
+ "se,\"properties\":{\"activeExecutions\":{\"items\":{\"$ref\":\"#/$defs/ActiveExec" +
700
+ "ution\"},\"type\":\"array\"},\"phase\":{\"const\":\"stopping\",\"type\":\"string\"}},\"r" +
701
+ "equired\":[\"phase\",\"activeExecutions\"],\"type\":\"object\"},{\"additionalPrope" +
702
+ "rties\":false,\"properties\":{\"metadata\":{\"$ref\":\"#/$defs/RunMetadata\",\"def" +
703
+ "ault\":{}},\"phase\":{\"const\":\"finished\",\"type\":\"string\"},\"terminalResult\":" +
704
+ "{\"$ref\":\"#/$defs/TerminalResult\"}},\"required\":[\"phase\",\"terminalResult\"]" +
705
+ ",\"type\":\"object\"}]},\"RunStatusParams\":{\"additionalProperties\":false,\"pro" +
706
+ "perties\":{\"runId\":{\"type\":\"string\"}},\"required\":[\"runId\"],\"type\":\"object" +
707
+ "\"},\"RunStatusResult\":{\"additionalProperties\":false,\"properties\":{\"atCurs" +
708
+ "or\":{\"type\":\"string\"},\"runId\":{\"type\":\"string\"},\"size\":{\"$ref\":\"#/$defs/" +
709
+ "RunSize\"},\"source\":{\"$ref\":\"#/$defs/ResolvedSource\"},\"status\":{\"$ref\":\"#" +
710
+ "/$defs/RunStatus\"},\"title\":{\"maxLength\":256,\"minLength\":1,\"pattern\":\"^[^" +
711
+ "\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"}},\"required\":[\"runId\"" +
712
+ ",\"title\",\"source\",\"size\",\"atCursor\",\"status\"],\"type\":\"object\"},\"RunSubmi" +
713
+ "ssion\":{\"additionalProperties\":false,\"description\":\"Immutable, secret-fr" +
714
+ "ee native-v2 submission admitted by the selected target.\",\"properties\":{" +
715
+ "\"graph\":{\"$ref\":\"#/$defs/GraphSpec\"},\"initialInput\":true,\"runtime\":{\"$re" +
716
+ "f\":\"#/$defs/RuntimePlan\"},\"source\":{\"$ref\":\"#/$defs/ResolvedSource\"},\"su" +
717
+ "bmissionKey\":{\"maxLength\":256,\"minLength\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001" +
718
+ "f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"},\"title\":{\"maxLength\":256,\"minLengt" +
719
+ "h\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"}}," +
720
+ "\"required\":[\"title\",\"graph\",\"initialInput\",\"runtime\",\"source\",\"submissio" +
721
+ "nKey\"],\"type\":\"object\"},\"RunSubmitParams\":{\"additionalProperties\":false," +
722
+ "\"description\":\"Trusted controller bootstrap admission. The host assigns " +
723
+ "the only public run identity before\\ncontroller start; the immutable sub" +
724
+ "mission remains identity-neutral.\",\"properties\":{\"runId\":{\"type\":\"string" +
725
+ "\"},\"submission\":{\"$ref\":\"#/$defs/RunSubmission\"}},\"required\":[\"runId\",\"s" +
726
+ "ubmission\"],\"type\":\"object\"},\"RunSubmitResult\":{\"additionalProperties\":f" +
727
+ "alse,\"description\":\"A successful submission returns the one public ident" +
728
+ "ity used by every later run method.\",\"properties\":{\"runId\":{\"type\":\"stri" +
729
+ "ng\"}},\"required\":[\"runId\"],\"type\":\"object\"},\"RunWatchEventNotification\":" +
730
+ "{\"additionalProperties\":false,\"description\":\"One durable public status p" +
731
+ "rojection. `cursor` is stable run history, not a connection-local\\nseque" +
732
+ "nce; clients resume strictly after it.\",\"properties\":{\"cursor\":{\"type\":\"" +
733
+ "string\"},\"runId\":{\"type\":\"string\"},\"size\":{\"$ref\":\"#/$defs/RunSize\"},\"so" +
734
+ "urce\":{\"$ref\":\"#/$defs/ResolvedSource\"},\"status\":{\"$ref\":\"#/$defs/RunSta" +
735
+ "tus\"},\"subscriptionId\":{\"type\":\"string\"},\"title\":{\"maxLength\":256,\"minLe" +
736
+ "ngth\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"" +
737
+ "}},\"required\":[\"subscriptionId\",\"runId\",\"title\",\"source\",\"size\",\"cursor\"" +
738
+ ",\"status\"],\"type\":\"object\"},\"RunWatchParams\":{\"additionalProperties\":fal" +
739
+ "se,\"description\":\"Establishes a durable run watch.\\n\\n`fromCursor` is ex" +
740
+ "clusive. Reconnecting with the last delivered cursor therefore returns e" +
741
+ "ach\\nlater watch record once, with no replayed boundary record and no sk" +
742
+ "ipped later record.\",\"properties\":{\"fromCursor\":{\"type\":[\"string\",\"null\"" +
743
+ "]},\"runId\":{\"type\":\"string\"}},\"required\":[\"runId\"],\"type\":\"object\"},\"Run" +
744
+ "WatchResult\":{\"additionalProperties\":false,\"properties\":{\"atCursor\":{\"ty" +
745
+ "pe\":\"string\"},\"runId\":{\"type\":\"string\"},\"subscriptionId\":{\"type\":\"string" +
746
+ "\"}},\"required\":[\"subscriptionId\",\"runId\",\"atCursor\"],\"type\":\"object\"},\"R" +
747
+ "untimePlan\":{\"oneOf\":[{\"additionalProperties\":false,\"properties\":{\"harne" +
748
+ "ss\":{\"const\":\"codex\",\"type\":\"string\"},\"nodes\":{\"additionalProperties\":fa" +
749
+ "lse,\"patternProperties\":{\"^[A-Za-z_][A-Za-z0-9_.-]*$\":{\"$ref\":\"#/$defs/N" +
750
+ "odeRuntimeBinding\"}},\"type\":\"object\"},\"provider\":{\"$ref\":\"#/$defs/CodexP" +
751
+ "rovider\"},\"size\":{\"$ref\":\"#/$defs/RunSize\"}},\"required\":[\"harness\",\"prov" +
752
+ "ider\",\"size\",\"nodes\"],\"type\":\"object\"},{\"additionalProperties\":false,\"pr" +
753
+ "operties\":{\"harness\":{\"const\":\"claude\",\"type\":\"string\"},\"nodes\":{\"additi" +
754
+ "onalProperties\":false,\"patternProperties\":{\"^[A-Za-z_][A-Za-z0-9_.-]*$\":" +
755
+ "{\"$ref\":\"#/$defs/NodeRuntimeBinding\"}},\"type\":\"object\"},\"provider\":{\"$re" +
756
+ "f\":\"#/$defs/ClaudeProvider\"},\"size\":{\"$ref\":\"#/$defs/RunSize\"}},\"require" +
757
+ "d\":[\"harness\",\"provider\",\"size\",\"nodes\"],\"type\":\"object\"}]},\"ServerCapab" +
758
+ "ilities\":{\"additionalProperties\":false,\"properties\":{\"agentAttach\":{\"def" +
759
+ "ault\":false,\"type\":\"boolean\"},\"graphProfiles\":{\"default\":[],\"items\":{\"$r" +
760
+ "ef\":\"#/$defs/GraphProfile\"},\"maxItems\":2,\"not\":{\"minItems\":2,\"prefixItem" +
761
+ "s\":[{\"const\":\"openengine.graph.single-worker/v1\"},{\"const\":\"openengine.g" +
762
+ "raph.full/v1\"}]},\"type\":\"array\",\"uniqueItems\":true},\"logs\":{\"default\":fa" +
763
+ "lse,\"type\":\"boolean\"}},\"type\":\"object\"},\"SessionScope\":{\"enum\":[\"executi" +
764
+ "on\",\"node_instance\"],\"type\":\"string\"},\"StopMode\":{\"enum\":[\"drain\",\"force" +
765
+ "\"],\"type\":\"string\"},\"StopParams\":{\"additionalProperties\":false,\"properti" +
766
+ "es\":{\"idempotencyKey\":{\"maxLength\":256,\"minLength\":1,\"pattern\":\"^[^\\\\u00" +
767
+ "00-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\":\"string\"},\"ifGeneration\":{\"maximum\"" +
768
+ ":9007199254740991,\"minimum\":0,\"type\":\"integer\"},\"mode\":{\"$ref\":\"#/$defs/" +
769
+ "StopMode\"}},\"required\":[\"mode\",\"ifGeneration\",\"idempotencyKey\"],\"type\":\"" +
770
+ "object\"},\"StopResult\":{\"additionalProperties\":false,\"properties\":{\"accep" +
771
+ "tedMode\":{\"$ref\":\"#/$defs/StopMode\"},\"atCursor\":{\"type\":\"string\"},\"dedup" +
772
+ "ed\":{\"type\":\"boolean\"},\"effectiveMode\":{\"$ref\":\"#/$defs/StopMode\"},\"gene" +
773
+ "ration\":{\"maximum\":9007199254740991,\"minimum\":0,\"type\":\"integer\"},\"opera" +
774
+ "tional\":{\"$ref\":\"#/$defs/OperationalStatus\"},\"phase\":{\"$ref\":\"#/$defs/Ph" +
775
+ "ase\"},\"runId\":{\"type\":\"string\"}},\"required\":[\"generation\",\"runId\",\"phase" +
776
+ "\",\"acceptedMode\",\"effectiveMode\",\"operational\",\"atCursor\",\"deduped\"],\"ty" +
777
+ "pe\":\"object\"},\"StructuralBounds\":{\"additionalProperties\":false,\"properti" +
778
+ "es\":{\"attemptsPerNode\":{\"additionalProperties\":{\"maximum\":90071992547409" +
779
+ "91,\"minimum\":1,\"type\":\"integer\"},\"propertyNames\":{\"maxLength\":128,\"minLe" +
780
+ "ngth\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"type\":\"" +
781
+ "object\"},\"maxNodeExecutions\":{\"maximum\":9007199254740991,\"minimum\":1,\"ty" +
782
+ "pe\":\"integer\"},\"peakConcurrency\":{\"maximum\":9007199254740991,\"minimum\":1" +
783
+ ",\"type\":\"integer\"},\"termination\":{\"$ref\":\"#/$defs/TerminationWitness\"}}," +
784
+ "\"required\":[\"termination\",\"maxNodeExecutions\",\"peakConcurrency\",\"attempt" +
785
+ "sPerNode\"],\"type\":\"object\"},\"SubscriptionCancelParams\":{\"additionalPrope" +
786
+ "rties\":false,\"description\":\"Wire body of the generic `subscription/cance" +
787
+ "l` client notification.\",\"properties\":{\"subscriptionId\":{\"type\":\"string\"" +
788
+ "}},\"required\":[\"subscriptionId\"],\"type\":\"object\"},\"SubscriptionCloseReas" +
789
+ "on\":{\"enum\":[\"done\",\"SLOW_CONSUMER\"],\"type\":\"string\"},\"SubscriptionClose" +
790
+ "dNotification\":{\"additionalProperties\":false,\"description\":\"Wire body of" +
791
+ " the terminal `subscription/closed` server notification.\",\"properties\":{" +
792
+ "\"lastDeliveredCursor\":{\"type\":[\"string\",\"null\"]},\"reason\":{\"$ref\":\"#/$de" +
793
+ "fs/SubscriptionCloseReason\"},\"subscriptionId\":{\"type\":\"string\"}},\"requir" +
794
+ "ed\":[\"subscriptionId\",\"reason\"],\"type\":\"object\"},\"TerminalResult\":{\"desc" +
795
+ "ription\":\"Authoritative terminal value for backends that can durably rec" +
796
+ "onstruct a completed graph.\\n\\nThis is additive to [`GetResult`]: backen" +
797
+ "ds that do not yet expose terminal values leave the\\noptional field abse" +
798
+ "nt, including when their status is already `finished`.\",\"oneOf\":[{\"addit" +
799
+ "ionalProperties\":false,\"properties\":{\"output\":true,\"status\":{\"const\":\"su" +
800
+ "cceeded\",\"type\":\"string\"}},\"required\":[\"status\",\"output\"],\"type\":\"object" +
801
+ "\"},{\"additionalProperties\":false,\"properties\":{\"reason\":{\"maxLength\":128" +
802
+ ",\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"" +
803
+ "status\":{\"const\":\"failed\",\"type\":\"string\"}},\"required\":[\"status\",\"reason" +
804
+ "\"],\"type\":\"object\"}]},\"TerminationWitness\":{\"oneOf\":[{\"additionalPropert" +
805
+ "ies\":false,\"properties\":{\"kind\":{\"const\":\"acyclic\",\"type\":\"string\"},\"ord" +
806
+ "er\":{\"$ref\":\"#/$defs/NonEmptyVec_of_NodeName\"}},\"required\":[\"kind\",\"orde" +
807
+ "r\"],\"type\":\"object\"},{\"additionalProperties\":false,\"properties\":{\"kind\":" +
808
+ "{\"const\":\"bounded\",\"type\":\"string\"},\"maxIterations\":{\"maximum\":900719925" +
809
+ "4740991,\"minimum\":1,\"type\":\"integer\"},\"ranking\":{\"$ref\":\"#/$defs/NonEmpt" +
810
+ "yVec_of_FieldPath\"}},\"required\":[\"kind\",\"ranking\",\"maxIterations\"],\"type" +
811
+ "\":\"object\"}]},\"TokenUsage\":{\"additionalProperties\":false,\"description\":\"" +
812
+ "Run-wide sum of provider-reported usage for every launched agent invocat" +
813
+ "ion.\\n\\n`complete` is false when at least one invocation did not report " +
814
+ "usable counters. Cache\\ncounters are omitted when the provider does not " +
815
+ "expose them consistently.\",\"properties\":{\"cacheCreationInputTokens\":{\"ma" +
816
+ "ximum\":9007199254740991,\"minimum\":0,\"type\":[\"integer\",\"null\"]},\"cacheRea" +
817
+ "dInputTokens\":{\"maximum\":9007199254740991,\"minimum\":0,\"type\":[\"integer\"," +
818
+ "\"null\"]},\"complete\":{\"type\":\"boolean\"},\"inputTokens\":{\"maximum\":90071992" +
819
+ "54740991,\"minimum\":0,\"type\":\"integer\"},\"outputTokens\":{\"maximum\":9007199" +
820
+ "254740991,\"minimum\":0,\"type\":\"integer\"}},\"required\":[\"inputTokens\",\"outp" +
821
+ "utTokens\",\"complete\"],\"type\":\"object\"},\"UpdateParams\":{\"additionalProper" +
822
+ "ties\":false,\"anyOf\":[{\"required\":[\"labels\"]},{\"required\":[\"logLevel\"]},{" +
823
+ "\"required\":[\"suspended\"]}],\"properties\":{\"idempotencyKey\":{\"maxLength\":2" +
824
+ "56,\"minLength\":1,\"pattern\":\"^[^\\\\u0000-\\\\u001f\\\\u007f-\\\\u009f]+$\",\"type\"" +
825
+ ":\"string\"},\"ifGeneration\":{\"maximum\":9007199254740991,\"minimum\":0,\"type\"" +
826
+ ":\"integer\"},\"labels\":{\"$ref\":\"#/$defs/Labels\"},\"logLevel\":{\"$ref\":\"#/$de" +
827
+ "fs/LogLevel\"},\"suspended\":{\"type\":\"boolean\"}},\"required\":[\"ifGeneration\"" +
828
+ ",\"idempotencyKey\"],\"type\":\"object\"},\"UpdateResult\":{\"additionalPropertie" +
829
+ "s\":false,\"properties\":{\"atCursor\":{\"type\":\"string\"},\"deduped\":{\"type\":\"b" +
830
+ "oolean\"},\"generation\":{\"maximum\":9007199254740991,\"minimum\":0,\"type\":\"in" +
831
+ "teger\"},\"operational\":{\"$ref\":\"#/$defs/OperationalStatus\"},\"phase\":{\"$re" +
832
+ "f\":\"#/$defs/Phase\"},\"runId\":{\"type\":\"string\"}},\"required\":[\"generation\"," +
833
+ "\"runId\",\"phase\",\"operational\",\"atCursor\",\"deduped\"],\"type\":\"object\"},\"Wa" +
834
+ "tchEvent\":{\"description\":\"The closed public event algebra. `Phase` folds" +
835
+ " the observable cluster status (admission\\ncommit, update, suspend/resum" +
836
+ "e, stop-request); `NodeBegin`/`NodeEnd` are a testkit-only\\nsynthetic ho" +
837
+ "ok decoupled from the real dispatch/lease turn mechanism, since no nativ" +
838
+ "e graph\\nexecutor exists yet; `Bookmark` advances the cursor without cha" +
839
+ "nging folded public state;\\n`Fault` carries a durable, backend-neutral p" +
840
+ "rojected `BackendFault`: it correlates to the\\nenclosing `EventNotificat" +
841
+ "ion.run_id` plus its own optional opaque `executionRef`, and its\\norderi" +
842
+ "ng/emission never itself authorizes a retry or changes terminal semantic" +
843
+ "s -- it folds to\\nno public status change, exactly like `Bookmark`; `Fin" +
844
+ "ished` is always the last event for a\\nrun.\",\"oneOf\":[{\"additionalProper" +
845
+ "ties\":false,\"properties\":{\"admission\":{\"anyOf\":[{\"$ref\":\"#/$defs/Admissi" +
846
+ "onTransition\"},{\"type\":\"null\"}]},\"status\":{\"$ref\":\"#/$defs/ClusterStatus" +
847
+ "\"},\"type\":{\"const\":\"phase\",\"type\":\"string\"}},\"required\":[\"type\",\"status\"" +
848
+ "],\"type\":\"object\"},{\"additionalProperties\":false,\"properties\":{\"input\":t" +
849
+ "rue,\"node\":{\"$ref\":\"#/$defs/NodeAddress\"},\"type\":{\"const\":\"node_begin\",\"" +
850
+ "type\":\"string\"}},\"required\":[\"type\",\"node\",\"input\"],\"type\":\"object\"},{\"a" +
851
+ "dditionalProperties\":false,\"properties\":{\"node\":{\"$ref\":\"#/$defs/NodeAdd" +
852
+ "ress\"},\"outcome\":{\"$ref\":\"#/$defs/WorkerOutcome\"},\"type\":{\"const\":\"node_" +
853
+ "end\",\"type\":\"string\"}},\"required\":[\"type\",\"node\",\"outcome\"],\"type\":\"obje" +
854
+ "ct\"},{\"additionalProperties\":false,\"properties\":{\"type\":{\"const\":\"bookma" +
855
+ "rk\",\"type\":\"string\"}},\"required\":[\"type\"],\"type\":\"object\"},{\"additionalP" +
856
+ "roperties\":false,\"properties\":{\"fault\":{\"$ref\":\"#/$defs/BackendFault\"},\"" +
857
+ "type\":{\"const\":\"fault\",\"type\":\"string\"}},\"required\":[\"type\",\"fault\"],\"ty" +
858
+ "pe\":\"object\"},{\"additionalProperties\":false,\"properties\":{\"final_status\"" +
859
+ ":{\"$ref\":\"#/$defs/ClusterStatus\"},\"stop_mode\":{\"anyOf\":[{\"$ref\":\"#/$defs" +
860
+ "/StopMode\"},{\"type\":\"null\"}]},\"type\":{\"const\":\"finished\",\"type\":\"string\"" +
861
+ "}},\"required\":[\"type\",\"final_status\"],\"type\":\"object\"}]},\"WatchParams\":{" +
862
+ "\"additionalProperties\":false,\"properties\":{\"fromCursor\":{\"default\":null," +
863
+ "\"type\":[\"string\",\"null\"]},\"runId\":{\"default\":null,\"type\":[\"string\",\"null" +
864
+ "\"]}},\"type\":\"object\"},\"WatchResult\":{\"properties\":{\"atCursor\":{\"type\":[\"" +
865
+ "string\",\"null\"]},\"runId\":{\"type\":[\"string\",\"null\"]},\"subscriptionId\":{\"t" +
866
+ "ype\":\"string\"}},\"required\":[\"subscriptionId\"],\"type\":\"object\"},\"WorkerEr" +
867
+ "rorCode\":{\"enum\":[\"timeout\",\"crash\",\"malformed\",\"refusal\"],\"type\":\"strin" +
868
+ "g\"},\"WorkerFailureReason\":{\"enum\":[\"declared_failure\",\"policy_denied\",\"i" +
869
+ "nteractive_input_required\",\"authentication_required\",\"malformed_result\"]" +
870
+ ",\"type\":\"string\"},\"WorkerOutcome\":{\"allOf\":[{\"$ref\":\"#/$defs/WorkerOutco" +
871
+ "meWire\"},{\"if\":{\"properties\":{\"status\":{\"const\":\"error\"}},\"required\":[\"s" +
872
+ "tatus\"]},\"then\":{\"oneOf\":[{\"properties\":{\"reason\":{\"const\":\"declared_fai" +
873
+ "lure\"}},\"required\":[\"reason\"]},{\"properties\":{\"code\":{\"const\":\"refusal\"}" +
874
+ ",\"reason\":{\"enum\":[\"policy_denied\",\"interactive_input_required\",\"authent" +
875
+ "ication_required\"]}},\"required\":[\"code\",\"reason\"]},{\"properties\":{\"code\"" +
876
+ ":{\"const\":\"malformed\"},\"reason\":{\"const\":\"malformed_result\"}},\"required\"" +
877
+ ":[\"code\",\"reason\"]}]}}]},\"WorkerOutcomeWire\":{\"oneOf\":[{\"additionalPrope" +
878
+ "rties\":false,\"properties\":{\"artifacts\":{\"items\":{\"$ref\":\"#/$defs/Artifac" +
879
+ "tRef\"},\"type\":\"array\"},\"output\":true,\"status\":{\"const\":\"verified\",\"type\"" +
880
+ ":\"string\"}},\"required\":[\"status\",\"output\",\"artifacts\"],\"type\":\"object\"}," +
881
+ "{\"additionalProperties\":false,\"properties\":{\"artifacts\":{\"items\":{\"$ref\"" +
882
+ ":\"#/$defs/ArtifactRef\"},\"type\":\"array\"},\"diagnostic\":true,\"output\":true," +
883
+ "\"signals\":{\"additionalProperties\":{\"maxLength\":128,\"minLength\":1,\"patter" +
884
+ "n\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"propertyNames\":{\"maxLe" +
885
+ "ngth\":128,\"minLength\":1,\"pattern\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"s" +
886
+ "tring\"},\"type\":\"object\"},\"status\":{\"const\":\"verifier\",\"type\":\"string\"}}," +
887
+ "\"required\":[\"status\",\"output\",\"signals\",\"diagnostic\",\"artifacts\"],\"type\"" +
888
+ ":\"object\"},{\"additionalProperties\":false,\"properties\":{\"code\":{\"$ref\":\"#" +
889
+ "/$defs/WorkerErrorCode\"},\"reason\":{\"$ref\":\"#/$defs/WorkerFailureReason\"}" +
890
+ ",\"status\":{\"const\":\"error\",\"type\":\"string\"}},\"required\":[\"status\",\"code\"" +
891
+ ",\"reason\"],\"type\":\"object\"}]},\"WriteBinding\":{\"additionalProperties\":fal" +
892
+ "se,\"properties\":{\"target\":{\"items\":{\"maxLength\":128,\"minLength\":1,\"patte" +
893
+ "rn\":\"^[A-Za-z_][A-Za-z0-9_.-]*$\",\"type\":\"string\"},\"maxItems\":64,\"minItem" +
894
+ "s\":1,\"type\":\"array\"},\"value\":{\"$ref\":\"#/$defs/NodeOutputSelector\"}},\"req" +
895
+ "uired\":[\"value\",\"target\"],\"type\":\"object\"}},\"$schema\":\"https://json-sche" +
896
+ "ma.org/draft/2020-12/schema\",\"properties\":{\"agent_attach_closed_notifica" +
897
+ "tion\":{\"$ref\":\"#/$defs/JsonRpcNotification8\"},\"agent_attach_event_notifi" +
898
+ "cation\":{\"$ref\":\"#/$defs/JsonRpcNotification7\"},\"agent_attach_request\":{" +
899
+ "\"$ref\":\"#/$defs/JsonRpcRequest12\"},\"agent_attach_response\":{\"$ref\":\"#/$d" +
900
+ "efs/JsonRpcResponse12\"},\"apply_request\":{\"$ref\":\"#/$defs/JsonRpcRequest3" +
901
+ "\"},\"apply_response\":{\"$ref\":\"#/$defs/JsonRpcResponse3\"},\"cancel_request_" +
902
+ "notification\":{\"$ref\":\"#/$defs/JsonRpcNotification4\"},\"delete_request\":{" +
903
+ "\"$ref\":\"#/$defs/JsonRpcRequest9\"},\"delete_response\":{\"$ref\":\"#/$defs/Jso" +
904
+ "nRpcResponse9\"},\"event_notification\":{\"$ref\":\"#/$defs/JsonRpcNotificatio" +
905
+ "n\"},\"get_request\":{\"$ref\":\"#/$defs/JsonRpcRequest4\"},\"get_response\":{\"$r" +
906
+ "ef\":\"#/$defs/JsonRpcResponse4\"},\"initialize_request\":{\"$ref\":\"#/$defs/Js" +
907
+ "onRpcRequest\"},\"initialize_response\":{\"$ref\":\"#/$defs/JsonRpcResponse\"}," +
908
+ "\"log_event_notification\":{\"$ref\":\"#/$defs/JsonRpcNotification5\"},\"logs_c" +
909
+ "losed_notification\":{\"$ref\":\"#/$defs/JsonRpcNotification6\"},\"logs_reques" +
910
+ "t\":{\"$ref\":\"#/$defs/JsonRpcRequest11\"},\"logs_response\":{\"$ref\":\"#/$defs/" +
911
+ "JsonRpcResponse11\"},\"plan_request\":{\"$ref\":\"#/$defs/JsonRpcRequest2\"},\"p" +
912
+ "lan_response\":{\"$ref\":\"#/$defs/JsonRpcResponse2\"},\"resubmit_request\":{\"$" +
913
+ "ref\":\"#/$defs/JsonRpcRequest8\"},\"resubmit_response\":{\"$ref\":\"#/$defs/Jso" +
914
+ "nRpcResponse8\"},\"retry_request\":{\"$ref\":\"#/$defs/JsonRpcRequest7\"},\"retr" +
915
+ "y_response\":{\"$ref\":\"#/$defs/JsonRpcResponse7\"},\"run_attach_event_notifi" +
916
+ "cation\":{\"$ref\":\"#/$defs/JsonRpcNotification11\"},\"run_attach_request\":{\"" +
917
+ "$ref\":\"#/$defs/JsonRpcRequest18\"},\"run_attach_response\":{\"$ref\":\"#/$defs" +
918
+ "/JsonRpcResponse18\"},\"run_force_request\":{\"$ref\":\"#/$defs/JsonRpcRequest" +
919
+ "19\"},\"run_force_response\":{\"$ref\":\"#/$defs/JsonRpcResponse19\"},\"run_list" +
920
+ "_request\":{\"$ref\":\"#/$defs/JsonRpcRequest14\"},\"run_list_response\":{\"$ref" +
921
+ "\":\"#/$defs/JsonRpcResponse14\"},\"run_log_event_notification\":{\"$ref\":\"#/$" +
922
+ "defs/JsonRpcNotification10\"},\"run_logs_request\":{\"$ref\":\"#/$defs/JsonRpc" +
923
+ "Request17\"},\"run_logs_response\":{\"$ref\":\"#/$defs/JsonRpcResponse17\"},\"ru" +
924
+ "n_status_request\":{\"$ref\":\"#/$defs/JsonRpcRequest15\"},\"run_status_respon" +
925
+ "se\":{\"$ref\":\"#/$defs/JsonRpcResponse15\"},\"run_submit_request\":{\"$ref\":\"#" +
926
+ "/$defs/JsonRpcRequest13\"},\"run_submit_response\":{\"$ref\":\"#/$defs/JsonRpc" +
927
+ "Response13\"},\"run_watch_event_notification\":{\"$ref\":\"#/$defs/JsonRpcNoti" +
928
+ "fication9\"},\"run_watch_request\":{\"$ref\":\"#/$defs/JsonRpcRequest16\"},\"run" +
929
+ "_watch_response\":{\"$ref\":\"#/$defs/JsonRpcResponse16\"},\"stop_request\":{\"$" +
930
+ "ref\":\"#/$defs/JsonRpcRequest6\"},\"stop_response\":{\"$ref\":\"#/$defs/JsonRpc" +
931
+ "Response6\"},\"subscription_cancel_notification\":{\"$ref\":\"#/$defs/JsonRpcN" +
932
+ "otification2\"},\"subscription_closed_notification\":{\"$ref\":\"#/$defs/JsonR" +
933
+ "pcNotification3\"},\"update_request\":{\"$ref\":\"#/$defs/JsonRpcRequest5\"},\"u" +
934
+ "pdate_response\":{\"$ref\":\"#/$defs/JsonRpcResponse5\"},\"watch_request\":{\"$r" +
935
+ "ef\":\"#/$defs/JsonRpcRequest10\"},\"watch_response\":{\"$ref\":\"#/$defs/JsonRp" +
936
+ "cResponse10\"}},\"required\":[\"initialize_request\",\"initialize_response\",\"p" +
937
+ "lan_request\",\"plan_response\",\"apply_request\",\"apply_response\",\"get_reque" +
938
+ "st\",\"get_response\",\"update_request\",\"update_response\",\"stop_request\",\"st" +
939
+ "op_response\",\"retry_request\",\"retry_response\",\"resubmit_request\",\"resubm" +
940
+ "it_response\",\"delete_request\",\"delete_response\",\"watch_request\",\"watch_r" +
941
+ "esponse\",\"event_notification\",\"subscription_cancel_notification\",\"subscr" +
942
+ "iption_closed_notification\",\"cancel_request_notification\",\"logs_request\"" +
943
+ ",\"logs_response\",\"log_event_notification\",\"logs_closed_notification\",\"ag" +
944
+ "ent_attach_request\",\"agent_attach_response\",\"agent_attach_event_notifica" +
945
+ "tion\",\"agent_attach_closed_notification\",\"run_submit_request\",\"run_submi" +
946
+ "t_response\",\"run_list_request\",\"run_list_response\",\"run_status_request\"," +
947
+ "\"run_status_response\",\"run_watch_request\",\"run_watch_response\",\"run_watc" +
948
+ "h_event_notification\",\"run_logs_request\",\"run_logs_response\",\"run_log_ev" +
949
+ "ent_notification\",\"run_attach_request\",\"run_attach_response\",\"run_attach" +
950
+ "_event_notification\",\"run_force_request\",\"run_force_response\"],\"title\":\"" +
951
+ "ImplementedProtocolSchema\",\"type\":\"object\"}");