@ancplua/qyl-api-schema 4.0.0 → 5.1.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.
@@ -212,7 +212,7 @@
212
212
  "minLength": 23,
213
213
  "maxLength": 23,
214
214
  "pattern": "^sha256:[a-f0-9]{16}$",
215
- "description": "Deterministic revision of the generated API contract: 'sha256:' followed by the first 16 hex characters of the SHA-256 digest of the emitted OpenAPI document.",
215
+ "description": "Deterministic revision of the generated API contract: 'sha256:' followed by the first 16 hex characters of its canonical semantic digest.",
216
216
  "examples": [
217
217
  "sha256:0f1e2d3c4b5a6978"
218
218
  ]
@@ -1543,6 +1543,50 @@
1543
1543
  },
1544
1544
  "description": "One CI run, summarized from the session its telemetry is grouped under."
1545
1545
  },
1546
+ "Mcp.Tools.ControlWorkflowRunInput": {
1547
+ "type": "object",
1548
+ "required": [
1549
+ "run_id",
1550
+ "action",
1551
+ "idempotency_key"
1552
+ ],
1553
+ "properties": {
1554
+ "run_id": {
1555
+ "$ref": "#/$defs/Workflow.WorkflowRunId"
1556
+ },
1557
+ "action": {
1558
+ "$ref": "#/$defs/Workflow.WorkflowControlAction"
1559
+ },
1560
+ "idempotency_key": {
1561
+ "type": "string",
1562
+ "minLength": 1,
1563
+ "maxLength": 160
1564
+ },
1565
+ "input": {
1566
+ "type": "string",
1567
+ "maxLength": 32768
1568
+ }
1569
+ },
1570
+ "unevaluatedProperties": {
1571
+ "not": {}
1572
+ },
1573
+ "description": "Input for control_workflow_run."
1574
+ },
1575
+ "Mcp.Tools.ControlWorkflowRunOutput": {
1576
+ "type": "object",
1577
+ "required": [
1578
+ "command"
1579
+ ],
1580
+ "properties": {
1581
+ "command": {
1582
+ "$ref": "#/$defs/Workflow.WorkflowControlCommand"
1583
+ }
1584
+ },
1585
+ "unevaluatedProperties": {
1586
+ "not": {}
1587
+ },
1588
+ "description": "Structured output for control_workflow_run."
1589
+ },
1546
1590
  "Mcp.Tools.DisplayMcpDashboardInput": {
1547
1591
  "type": "object",
1548
1592
  "properties": {
@@ -1621,6 +1665,61 @@
1621
1665
  },
1622
1666
  "description": "Structured output for display_traces."
1623
1667
  },
1668
+ "Mcp.Tools.DisplayWorkflowGraphInput": {
1669
+ "type": "object",
1670
+ "properties": {
1671
+ "run_id": {
1672
+ "$ref": "#/$defs/Workflow.WorkflowRunId"
1673
+ },
1674
+ "node_cursor": {
1675
+ "type": "string"
1676
+ },
1677
+ "node_limit": {
1678
+ "type": "integer",
1679
+ "format": "int32",
1680
+ "minimum": 1,
1681
+ "maximum": 1000,
1682
+ "default": 250
1683
+ },
1684
+ "edge_cursor": {
1685
+ "type": "string"
1686
+ },
1687
+ "edge_limit": {
1688
+ "type": "integer",
1689
+ "format": "int32",
1690
+ "minimum": 1,
1691
+ "maximum": 2000,
1692
+ "default": 500
1693
+ }
1694
+ },
1695
+ "unevaluatedProperties": {
1696
+ "not": {}
1697
+ },
1698
+ "description": "Input for display_workflow_graph. Omit run_id to select the most recent run."
1699
+ },
1700
+ "Mcp.Tools.DisplayWorkflowGraphOutput": {
1701
+ "type": "object",
1702
+ "required": [
1703
+ "graph",
1704
+ "live_controls_available",
1705
+ "mode"
1706
+ ],
1707
+ "properties": {
1708
+ "graph": {
1709
+ "$ref": "#/$defs/Workflow.WorkflowGraphSnapshot"
1710
+ },
1711
+ "live_controls_available": {
1712
+ "type": "boolean"
1713
+ },
1714
+ "mode": {
1715
+ "$ref": "#/$defs/Mcp.Tools.McpDataMode"
1716
+ }
1717
+ },
1718
+ "unevaluatedProperties": {
1719
+ "not": {}
1720
+ },
1721
+ "description": "Structured output for display_workflow_graph."
1722
+ },
1624
1723
  "Mcp.Tools.FetchTelemetryInput": {
1625
1724
  "type": "object",
1626
1725
  "required": [
@@ -1706,6 +1805,88 @@
1706
1805
  ],
1707
1806
  "description": "Data projection requested by the app-only fetch_telemetry tool."
1708
1807
  },
1808
+ "Mcp.Tools.FetchWorkflowGraphUpdatesInput": {
1809
+ "type": "object",
1810
+ "required": [
1811
+ "run_id",
1812
+ "after_sequence"
1813
+ ],
1814
+ "properties": {
1815
+ "run_id": {
1816
+ "$ref": "#/$defs/Workflow.WorkflowRunId"
1817
+ },
1818
+ "after_sequence": {
1819
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
1820
+ },
1821
+ "limit": {
1822
+ "type": "integer",
1823
+ "format": "int32",
1824
+ "minimum": 1,
1825
+ "maximum": 1000,
1826
+ "default": 250
1827
+ },
1828
+ "wait_ms": {
1829
+ "type": "integer",
1830
+ "format": "int32",
1831
+ "minimum": 0,
1832
+ "maximum": 30000,
1833
+ "default": 20000
1834
+ },
1835
+ "node_cursor": {
1836
+ "type": "string"
1837
+ },
1838
+ "node_limit": {
1839
+ "type": "integer",
1840
+ "format": "int32",
1841
+ "minimum": 1,
1842
+ "maximum": 1000,
1843
+ "default": 250
1844
+ },
1845
+ "edge_cursor": {
1846
+ "type": "string"
1847
+ },
1848
+ "edge_limit": {
1849
+ "type": "integer",
1850
+ "format": "int32",
1851
+ "minimum": 1,
1852
+ "maximum": 2000,
1853
+ "default": 500
1854
+ },
1855
+ "content_ref": {
1856
+ "$ref": "#/$defs/Workflow.WorkflowContentRef",
1857
+ "description": "Optional captured payload to retrieve lazily for the selected run."
1858
+ }
1859
+ },
1860
+ "unevaluatedProperties": {
1861
+ "not": {}
1862
+ },
1863
+ "description": "Input for the app-only fetch_workflow_graph_updates tool."
1864
+ },
1865
+ "Mcp.Tools.FetchWorkflowGraphUpdatesOutput": {
1866
+ "type": "object",
1867
+ "required": [
1868
+ "page",
1869
+ "mode"
1870
+ ],
1871
+ "properties": {
1872
+ "page": {
1873
+ "$ref": "#/$defs/Workflow.WorkflowEventPage"
1874
+ },
1875
+ "graph": {
1876
+ "$ref": "#/$defs/Workflow.WorkflowGraphSnapshot"
1877
+ },
1878
+ "content": {
1879
+ "$ref": "#/$defs/Workflow.WorkflowContent"
1880
+ },
1881
+ "mode": {
1882
+ "$ref": "#/$defs/Mcp.Tools.McpDataMode"
1883
+ }
1884
+ },
1885
+ "unevaluatedProperties": {
1886
+ "not": {}
1887
+ },
1888
+ "description": "Structured output for the app-only fetch_workflow_graph_updates tool."
1889
+ },
1709
1890
  "Mcp.Tools.GetTraceInput": {
1710
1891
  "type": "object",
1711
1892
  "required": [
@@ -1740,6 +1921,60 @@
1740
1921
  },
1741
1922
  "description": "Structured output for get_trace."
1742
1923
  },
1924
+ "Mcp.Tools.GetWorkflowGraphInput": {
1925
+ "type": "object",
1926
+ "required": [
1927
+ "run_id"
1928
+ ],
1929
+ "properties": {
1930
+ "run_id": {
1931
+ "$ref": "#/$defs/Workflow.WorkflowRunId"
1932
+ },
1933
+ "node_cursor": {
1934
+ "type": "string"
1935
+ },
1936
+ "node_limit": {
1937
+ "type": "integer",
1938
+ "format": "int32",
1939
+ "minimum": 1,
1940
+ "maximum": 1000,
1941
+ "default": 250
1942
+ },
1943
+ "edge_cursor": {
1944
+ "type": "string"
1945
+ },
1946
+ "edge_limit": {
1947
+ "type": "integer",
1948
+ "format": "int32",
1949
+ "minimum": 1,
1950
+ "maximum": 2000,
1951
+ "default": 500
1952
+ }
1953
+ },
1954
+ "unevaluatedProperties": {
1955
+ "not": {}
1956
+ },
1957
+ "description": "Input for get_workflow_graph."
1958
+ },
1959
+ "Mcp.Tools.GetWorkflowGraphOutput": {
1960
+ "type": "object",
1961
+ "required": [
1962
+ "graph",
1963
+ "mode"
1964
+ ],
1965
+ "properties": {
1966
+ "graph": {
1967
+ "$ref": "#/$defs/Workflow.WorkflowGraphSnapshot"
1968
+ },
1969
+ "mode": {
1970
+ "$ref": "#/$defs/Mcp.Tools.McpDataMode"
1971
+ }
1972
+ },
1973
+ "unevaluatedProperties": {
1974
+ "not": {}
1975
+ },
1976
+ "description": "Structured output for get_workflow_graph."
1977
+ },
1743
1978
  "Mcp.Tools.ListSessionsInput": {
1744
1979
  "type": "object",
1745
1980
  "properties": {
@@ -1819,6 +2054,57 @@
1819
2054
  },
1820
2055
  "description": "Structured output for list_traces."
1821
2056
  },
2057
+ "Mcp.Tools.ListWorkflowRunsInput": {
2058
+ "type": "object",
2059
+ "properties": {
2060
+ "status": {
2061
+ "$ref": "#/$defs/Workflow.WorkflowRunStatus"
2062
+ },
2063
+ "cursor": {
2064
+ "type": "string"
2065
+ },
2066
+ "limit": {
2067
+ "type": "integer",
2068
+ "format": "int32",
2069
+ "minimum": 1,
2070
+ "maximum": 100,
2071
+ "default": 20
2072
+ }
2073
+ },
2074
+ "unevaluatedProperties": {
2075
+ "not": {}
2076
+ },
2077
+ "description": "Input for list_workflow_runs."
2078
+ },
2079
+ "Mcp.Tools.ListWorkflowRunsOutput": {
2080
+ "type": "object",
2081
+ "required": [
2082
+ "runs",
2083
+ "has_more",
2084
+ "mode"
2085
+ ],
2086
+ "properties": {
2087
+ "runs": {
2088
+ "type": "array",
2089
+ "items": {
2090
+ "$ref": "#/$defs/Workflow.WorkflowRun"
2091
+ }
2092
+ },
2093
+ "next_cursor": {
2094
+ "type": "string"
2095
+ },
2096
+ "has_more": {
2097
+ "type": "boolean"
2098
+ },
2099
+ "mode": {
2100
+ "$ref": "#/$defs/Mcp.Tools.McpDataMode"
2101
+ }
2102
+ },
2103
+ "unevaluatedProperties": {
2104
+ "not": {}
2105
+ },
2106
+ "description": "Structured output for list_workflow_runs."
2107
+ },
1822
2108
  "Mcp.Tools.McpDashboardBucket": {
1823
2109
  "type": "object",
1824
2110
  "required": [
@@ -5853,43 +6139,1036 @@
5853
6139
  },
5854
6140
  "description": "Request to update mutable MCP workbench workspace metadata."
5855
6141
  },
5856
- "Operations.LogsApi_list.Response.200": {
6142
+ "Workflow.DerivedWorkflowEdgeProvenance": {
5857
6143
  "type": "object",
5858
6144
  "required": [
5859
- "items",
5860
- "has_more"
6145
+ "type",
6146
+ "event_ids",
6147
+ "evidence",
6148
+ "confidence"
5861
6149
  ],
5862
6150
  "properties": {
5863
- "items": {
6151
+ "type": {
6152
+ "type": "string",
6153
+ "enum": [
6154
+ "derived"
6155
+ ]
6156
+ },
6157
+ "event_ids": {
5864
6158
  "type": "array",
5865
6159
  "items": {
5866
- "$ref": "#/$defs/OTel.Logs.LogRecord"
6160
+ "$ref": "#/$defs/Workflow.WorkflowEventId"
5867
6161
  },
5868
- "description": "List of items in this page"
6162
+ "minItems": 1
5869
6163
  },
5870
- "next_cursor": {
5871
- "type": "string",
5872
- "description": "Cursor for the next page (null if no more pages)"
6164
+ "evidence": {
6165
+ "type": "string"
5873
6166
  },
5874
- "prev_cursor": {
6167
+ "confidence": {
6168
+ "$ref": "#/$defs/Common.Ratio"
6169
+ }
6170
+ },
6171
+ "unevaluatedProperties": {
6172
+ "not": {}
6173
+ },
6174
+ "description": "Derived edge provenance with explicit evidence and confidence."
6175
+ },
6176
+ "Workflow.RecordedWorkflowEdgeProvenance": {
6177
+ "type": "object",
6178
+ "required": [
6179
+ "type",
6180
+ "event_ids"
6181
+ ],
6182
+ "properties": {
6183
+ "type": {
5875
6184
  "type": "string",
5876
- "description": "Cursor for the previous page (null if first page)"
6185
+ "enum": [
6186
+ "recorded"
6187
+ ]
5877
6188
  },
5878
- "has_more": {
5879
- "type": "boolean",
5880
- "description": "Whether there are more items available"
6189
+ "event_ids": {
6190
+ "type": "array",
6191
+ "items": {
6192
+ "$ref": "#/$defs/Workflow.WorkflowEventId"
6193
+ },
6194
+ "minItems": 1
5881
6195
  }
5882
6196
  },
5883
6197
  "unevaluatedProperties": {
5884
6198
  "not": {}
5885
6199
  },
5886
- "description": "Cursor-based paginated response wrapper"
6200
+ "description": "Recorded edge provenance directly observed from Codex."
5887
6201
  },
5888
- "Operations.LogsApi_list.Response.400": {
5889
- "$ref": "#/$defs/Common.Errors.ValidationError"
5890
- },
5891
- "Operations.LogsApi_list.Response.401": {
5892
- "$ref": "#/$defs/Common.Errors.UnauthorizedError"
6202
+ "Workflow.WorkflowAgentId": {
6203
+ "type": "string",
6204
+ "minLength": 1,
6205
+ "maxLength": 128,
6206
+ "description": "Stable identifier of one agent within a workflow run."
6207
+ },
6208
+ "Workflow.WorkflowAgentStatus": {
6209
+ "type": "string",
6210
+ "enum": [
6211
+ "pending",
6212
+ "running",
6213
+ "waiting",
6214
+ "succeeded",
6215
+ "failed",
6216
+ "interrupted"
6217
+ ],
6218
+ "description": "Current lifecycle of an observed workflow agent."
6219
+ },
6220
+ "Workflow.WorkflowAttemptId": {
6221
+ "type": "string",
6222
+ "minLength": 1,
6223
+ "maxLength": 128,
6224
+ "description": "Stable identifier of one workflow attempt."
6225
+ },
6226
+ "Workflow.WorkflowAttemptStatus": {
6227
+ "type": "string",
6228
+ "enum": [
6229
+ "pending",
6230
+ "running",
6231
+ "succeeded",
6232
+ "failed",
6233
+ "interrupted"
6234
+ ],
6235
+ "description": "Current lifecycle of one workflow attempt."
6236
+ },
6237
+ "Workflow.WorkflowCommandId": {
6238
+ "type": "string",
6239
+ "minLength": 1,
6240
+ "maxLength": 128,
6241
+ "description": "Stable identifier of one run-level control command."
6242
+ },
6243
+ "Workflow.WorkflowContent": {
6244
+ "type": "object",
6245
+ "required": [
6246
+ "content_ref",
6247
+ "content_type",
6248
+ "encoding",
6249
+ "content",
6250
+ "size_bytes"
6251
+ ],
6252
+ "properties": {
6253
+ "content_ref": {
6254
+ "$ref": "#/$defs/Workflow.WorkflowContentRef"
6255
+ },
6256
+ "content_type": {
6257
+ "$ref": "#/$defs/Common.ContentType"
6258
+ },
6259
+ "encoding": {
6260
+ "$ref": "#/$defs/Workflow.WorkflowContentEncoding"
6261
+ },
6262
+ "content": {
6263
+ "type": "string"
6264
+ },
6265
+ "size_bytes": {
6266
+ "$ref": "#/$defs/Common.ByteSize"
6267
+ }
6268
+ },
6269
+ "unevaluatedProperties": {
6270
+ "not": {}
6271
+ },
6272
+ "description": "Lazily retrieved captured workflow content."
6273
+ },
6274
+ "Workflow.WorkflowContentChunk": {
6275
+ "type": "object",
6276
+ "required": [
6277
+ "content_ref",
6278
+ "content_type",
6279
+ "encoding",
6280
+ "content"
6281
+ ],
6282
+ "properties": {
6283
+ "content_ref": {
6284
+ "$ref": "#/$defs/Workflow.WorkflowContentRef"
6285
+ },
6286
+ "content_type": {
6287
+ "$ref": "#/$defs/Common.ContentType"
6288
+ },
6289
+ "encoding": {
6290
+ "$ref": "#/$defs/Workflow.WorkflowContentEncoding"
6291
+ },
6292
+ "content": {
6293
+ "type": "string",
6294
+ "maxLength": 1398104,
6295
+ "description": "UTF-8 text or base64 bytes, according to encoding."
6296
+ }
6297
+ },
6298
+ "unevaluatedProperties": {
6299
+ "not": {}
6300
+ },
6301
+ "description": "One captured payload supplied with an append batch."
6302
+ },
6303
+ "Workflow.WorkflowContentEncoding": {
6304
+ "type": "string",
6305
+ "enum": [
6306
+ "utf8",
6307
+ "base64"
6308
+ ],
6309
+ "description": "Encoding used when lazily returning captured workflow content."
6310
+ },
6311
+ "Workflow.WorkflowContentRef": {
6312
+ "type": "string",
6313
+ "minLength": 71,
6314
+ "maxLength": 71,
6315
+ "pattern": "^sha256:[a-f0-9]{64}$",
6316
+ "description": "Content-addressed reference to a captured workflow payload."
6317
+ },
6318
+ "Workflow.WorkflowControlAction": {
6319
+ "type": "string",
6320
+ "enum": [
6321
+ "steer",
6322
+ "interrupt",
6323
+ "resume"
6324
+ ],
6325
+ "description": "Control operation supported by the Codex app-server boundary."
6326
+ },
6327
+ "Workflow.WorkflowControlCommand": {
6328
+ "type": "object",
6329
+ "required": [
6330
+ "command_id",
6331
+ "run_id",
6332
+ "action",
6333
+ "status",
6334
+ "idempotency_key",
6335
+ "requested_at",
6336
+ "updated_at",
6337
+ "command_sequence"
6338
+ ],
6339
+ "properties": {
6340
+ "command_id": {
6341
+ "$ref": "#/$defs/Workflow.WorkflowCommandId"
6342
+ },
6343
+ "run_id": {
6344
+ "$ref": "#/$defs/Workflow.WorkflowRunId"
6345
+ },
6346
+ "action": {
6347
+ "$ref": "#/$defs/Workflow.WorkflowControlAction"
6348
+ },
6349
+ "status": {
6350
+ "$ref": "#/$defs/Workflow.WorkflowControlStatus"
6351
+ },
6352
+ "idempotency_key": {
6353
+ "type": "string"
6354
+ },
6355
+ "input": {
6356
+ "type": "string"
6357
+ },
6358
+ "requested_at": {
6359
+ "type": "string",
6360
+ "format": "date-time"
6361
+ },
6362
+ "updated_at": {
6363
+ "type": "string",
6364
+ "format": "date-time"
6365
+ },
6366
+ "command_sequence": {
6367
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6368
+ },
6369
+ "error": {
6370
+ "type": "string"
6371
+ }
6372
+ },
6373
+ "unevaluatedProperties": {
6374
+ "not": {}
6375
+ },
6376
+ "description": "Durable run-level control command."
6377
+ },
6378
+ "Workflow.WorkflowControlCommandPage": {
6379
+ "type": "object",
6380
+ "required": [
6381
+ "commands",
6382
+ "next_sequence"
6383
+ ],
6384
+ "properties": {
6385
+ "commands": {
6386
+ "type": "array",
6387
+ "items": {
6388
+ "$ref": "#/$defs/Workflow.WorkflowControlCommand"
6389
+ }
6390
+ },
6391
+ "next_sequence": {
6392
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6393
+ }
6394
+ },
6395
+ "unevaluatedProperties": {
6396
+ "not": {}
6397
+ },
6398
+ "description": "Page of control commands polled by the launcher-owned outbound adapter."
6399
+ },
6400
+ "Workflow.WorkflowControlRequest": {
6401
+ "type": "object",
6402
+ "required": [
6403
+ "action",
6404
+ "idempotency_key"
6405
+ ],
6406
+ "properties": {
6407
+ "action": {
6408
+ "$ref": "#/$defs/Workflow.WorkflowControlAction"
6409
+ },
6410
+ "idempotency_key": {
6411
+ "type": "string",
6412
+ "minLength": 1,
6413
+ "maxLength": 160
6414
+ },
6415
+ "input": {
6416
+ "type": "string",
6417
+ "maxLength": 32768,
6418
+ "description": "Text appended by steer or resume. Omit for interrupt."
6419
+ }
6420
+ },
6421
+ "unevaluatedProperties": {
6422
+ "not": {}
6423
+ },
6424
+ "description": "Request to enqueue one idempotent run-level control command."
6425
+ },
6426
+ "Workflow.WorkflowControlStatus": {
6427
+ "type": "string",
6428
+ "enum": [
6429
+ "requested",
6430
+ "accepted",
6431
+ "applied",
6432
+ "rejected",
6433
+ "failed"
6434
+ ],
6435
+ "description": "Durable lifecycle of a workflow control command."
6436
+ },
6437
+ "Workflow.WorkflowControlStatusUpdateRequest": {
6438
+ "type": "object",
6439
+ "required": [
6440
+ "status"
6441
+ ],
6442
+ "properties": {
6443
+ "status": {
6444
+ "$ref": "#/$defs/Workflow.WorkflowControlStatus"
6445
+ },
6446
+ "error": {
6447
+ "type": "string"
6448
+ },
6449
+ "occurred_at": {
6450
+ "type": "string",
6451
+ "format": "date-time",
6452
+ "description": "When the reported transition actually occurred at the adapter that executed\nit. The journal event minted for this transition carries this clock — the\noriginating agent's — so control events order and measure consistently with\nthe agent-clocked events around them; omitted, the collector's receipt time\nis the fallback."
6453
+ }
6454
+ },
6455
+ "unevaluatedProperties": {
6456
+ "not": {}
6457
+ },
6458
+ "description": "Adapter acknowledgement or terminal result for one control command."
6459
+ },
6460
+ "Workflow.WorkflowCursorGapEvent": {
6461
+ "type": "object",
6462
+ "required": [
6463
+ "type",
6464
+ "oldest_available_sequence",
6465
+ "high_water_mark",
6466
+ "timestamp"
6467
+ ],
6468
+ "properties": {
6469
+ "type": {
6470
+ "type": "string",
6471
+ "enum": [
6472
+ "cursor_gap"
6473
+ ]
6474
+ },
6475
+ "oldest_available_sequence": {
6476
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6477
+ },
6478
+ "high_water_mark": {
6479
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6480
+ },
6481
+ "timestamp": {
6482
+ "type": "string",
6483
+ "format": "date-time"
6484
+ }
6485
+ },
6486
+ "unevaluatedProperties": {
6487
+ "not": {}
6488
+ },
6489
+ "description": "Signals that the requested cursor predates retained workflow history."
6490
+ },
6491
+ "Workflow.WorkflowEdgeKind": {
6492
+ "type": "string",
6493
+ "enum": [
6494
+ "data",
6495
+ "control",
6496
+ "conflict",
6497
+ "resource",
6498
+ "gate",
6499
+ "temporal"
6500
+ ],
6501
+ "description": "Semantic relationship represented by a workflow graph edge."
6502
+ },
6503
+ "Workflow.WorkflowEdgeProvenance": {
6504
+ "anyOf": [
6505
+ {
6506
+ "$ref": "#/$defs/Workflow.RecordedWorkflowEdgeProvenance"
6507
+ },
6508
+ {
6509
+ "$ref": "#/$defs/Workflow.DerivedWorkflowEdgeProvenance"
6510
+ }
6511
+ ],
6512
+ "description": "Provenance for one workflow graph edge."
6513
+ },
6514
+ "Workflow.WorkflowEventAppend": {
6515
+ "type": "object",
6516
+ "required": [
6517
+ "event_id",
6518
+ "source_sequence",
6519
+ "timestamp",
6520
+ "kind"
6521
+ ],
6522
+ "properties": {
6523
+ "event_id": {
6524
+ "$ref": "#/$defs/Workflow.WorkflowEventId"
6525
+ },
6526
+ "source_sequence": {
6527
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6528
+ },
6529
+ "timestamp": {
6530
+ "type": "string",
6531
+ "format": "date-time"
6532
+ },
6533
+ "kind": {
6534
+ "$ref": "#/$defs/Workflow.WorkflowJournalEventKind"
6535
+ },
6536
+ "thread_id": {
6537
+ "type": "string"
6538
+ },
6539
+ "turn_id": {
6540
+ "type": "string"
6541
+ },
6542
+ "attempt_id": {
6543
+ "$ref": "#/$defs/Workflow.WorkflowAttemptId"
6544
+ },
6545
+ "agent_id": {
6546
+ "$ref": "#/$defs/Workflow.WorkflowAgentId"
6547
+ },
6548
+ "parent_agent_id": {
6549
+ "$ref": "#/$defs/Workflow.WorkflowAgentId"
6550
+ },
6551
+ "receiver_agent_id": {
6552
+ "$ref": "#/$defs/Workflow.WorkflowAgentId"
6553
+ },
6554
+ "tool_call_id": {
6555
+ "$ref": "#/$defs/Workflow.WorkflowToolCallId"
6556
+ },
6557
+ "content_refs": {
6558
+ "type": "array",
6559
+ "items": {
6560
+ "$ref": "#/$defs/Workflow.WorkflowContentRef"
6561
+ },
6562
+ "maxItems": 64
6563
+ },
6564
+ "data": {
6565
+ "type": "object",
6566
+ "unevaluatedProperties": {}
6567
+ }
6568
+ },
6569
+ "description": "One source-ordered immutable journal event awaiting collector sequence assignment."
6570
+ },
6571
+ "Workflow.WorkflowEventBatchAppendRequest": {
6572
+ "type": "object",
6573
+ "required": [
6574
+ "client_id",
6575
+ "events"
6576
+ ],
6577
+ "properties": {
6578
+ "client_id": {
6579
+ "type": "string",
6580
+ "minLength": 1,
6581
+ "maxLength": 128
6582
+ },
6583
+ "events": {
6584
+ "type": "array",
6585
+ "items": {
6586
+ "$ref": "#/$defs/Workflow.WorkflowEventAppend"
6587
+ },
6588
+ "minItems": 1,
6589
+ "maxItems": 500
6590
+ },
6591
+ "content": {
6592
+ "type": "array",
6593
+ "items": {
6594
+ "$ref": "#/$defs/Workflow.WorkflowContentChunk"
6595
+ },
6596
+ "maxItems": 500
6597
+ }
6598
+ },
6599
+ "unevaluatedProperties": {
6600
+ "not": {}
6601
+ },
6602
+ "description": "Idempotent append batch from one observer client."
6603
+ },
6604
+ "Workflow.WorkflowEventBatchAppendResponse": {
6605
+ "type": "object",
6606
+ "required": [
6607
+ "accepted_count",
6608
+ "duplicate_count",
6609
+ "acknowledged_source_sequence"
6610
+ ],
6611
+ "properties": {
6612
+ "accepted_count": {
6613
+ "type": "integer",
6614
+ "format": "int32",
6615
+ "minimum": 0
6616
+ },
6617
+ "duplicate_count": {
6618
+ "type": "integer",
6619
+ "format": "int32",
6620
+ "minimum": 0
6621
+ },
6622
+ "acknowledged_source_sequence": {
6623
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6624
+ },
6625
+ "first_journal_sequence": {
6626
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6627
+ },
6628
+ "last_journal_sequence": {
6629
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6630
+ }
6631
+ },
6632
+ "unevaluatedProperties": {
6633
+ "not": {}
6634
+ },
6635
+ "description": "Collector acknowledgement for an idempotent workflow-event append."
6636
+ },
6637
+ "Workflow.WorkflowEventId": {
6638
+ "type": "string",
6639
+ "minLength": 1,
6640
+ "maxLength": 160,
6641
+ "description": "Stable identifier of one immutable journal event."
6642
+ },
6643
+ "Workflow.WorkflowEventPage": {
6644
+ "type": "object",
6645
+ "required": [
6646
+ "events",
6647
+ "next_sequence",
6648
+ "high_water_mark",
6649
+ "cursor_gap"
6650
+ ],
6651
+ "properties": {
6652
+ "events": {
6653
+ "type": "array",
6654
+ "items": {
6655
+ "$ref": "#/$defs/Workflow.WorkflowJournalEvent"
6656
+ }
6657
+ },
6658
+ "next_sequence": {
6659
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6660
+ },
6661
+ "high_water_mark": {
6662
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6663
+ },
6664
+ "cursor_gap": {
6665
+ "type": "boolean"
6666
+ }
6667
+ },
6668
+ "unevaluatedProperties": {
6669
+ "not": {}
6670
+ },
6671
+ "description": "A bounded page of workflow journal events."
6672
+ },
6673
+ "Workflow.WorkflowGraphEdge": {
6674
+ "type": "object",
6675
+ "required": [
6676
+ "edge_id",
6677
+ "source_node_id",
6678
+ "target_node_id",
6679
+ "kind",
6680
+ "provenance"
6681
+ ],
6682
+ "properties": {
6683
+ "edge_id": {
6684
+ "type": "string"
6685
+ },
6686
+ "source_node_id": {
6687
+ "$ref": "#/$defs/Workflow.WorkflowNodeId"
6688
+ },
6689
+ "target_node_id": {
6690
+ "$ref": "#/$defs/Workflow.WorkflowNodeId"
6691
+ },
6692
+ "kind": {
6693
+ "$ref": "#/$defs/Workflow.WorkflowEdgeKind"
6694
+ },
6695
+ "provenance": {
6696
+ "$ref": "#/$defs/Workflow.WorkflowEdgeProvenance"
6697
+ }
6698
+ },
6699
+ "unevaluatedProperties": {
6700
+ "not": {}
6701
+ },
6702
+ "description": "One typed edge in the deterministic workflow graph projection."
6703
+ },
6704
+ "Workflow.WorkflowGraphNode": {
6705
+ "type": "object",
6706
+ "required": [
6707
+ "node_id",
6708
+ "kind",
6709
+ "label",
6710
+ "status"
6711
+ ],
6712
+ "properties": {
6713
+ "node_id": {
6714
+ "$ref": "#/$defs/Workflow.WorkflowNodeId"
6715
+ },
6716
+ "kind": {
6717
+ "$ref": "#/$defs/Workflow.WorkflowNodeKind"
6718
+ },
6719
+ "label": {
6720
+ "type": "string"
6721
+ },
6722
+ "status": {
6723
+ "type": "string"
6724
+ },
6725
+ "attempt_id": {
6726
+ "$ref": "#/$defs/Workflow.WorkflowAttemptId"
6727
+ },
6728
+ "agent_id": {
6729
+ "$ref": "#/$defs/Workflow.WorkflowAgentId"
6730
+ },
6731
+ "parent_node_id": {
6732
+ "$ref": "#/$defs/Workflow.WorkflowNodeId"
6733
+ },
6734
+ "started_at": {
6735
+ "type": "string",
6736
+ "format": "date-time"
6737
+ },
6738
+ "ended_at": {
6739
+ "type": "string",
6740
+ "format": "date-time"
6741
+ },
6742
+ "duration_ms": {
6743
+ "$ref": "#/$defs/Common.DurationMs"
6744
+ },
6745
+ "content_refs": {
6746
+ "type": "array",
6747
+ "items": {
6748
+ "$ref": "#/$defs/Workflow.WorkflowContentRef"
6749
+ }
6750
+ },
6751
+ "attributes": {
6752
+ "type": "object",
6753
+ "unevaluatedProperties": {}
6754
+ }
6755
+ },
6756
+ "unevaluatedProperties": {
6757
+ "not": {}
6758
+ },
6759
+ "description": "One node in the deterministic workflow graph projection."
6760
+ },
6761
+ "Workflow.WorkflowGraphSnapshot": {
6762
+ "type": "object",
6763
+ "required": [
6764
+ "run",
6765
+ "nodes",
6766
+ "edges",
6767
+ "statistics",
6768
+ "journal_sequence",
6769
+ "has_more_nodes",
6770
+ "has_more_edges",
6771
+ "total_node_count",
6772
+ "total_edge_count"
6773
+ ],
6774
+ "properties": {
6775
+ "run": {
6776
+ "$ref": "#/$defs/Workflow.WorkflowRun"
6777
+ },
6778
+ "nodes": {
6779
+ "type": "array",
6780
+ "items": {
6781
+ "$ref": "#/$defs/Workflow.WorkflowGraphNode"
6782
+ }
6783
+ },
6784
+ "edges": {
6785
+ "type": "array",
6786
+ "items": {
6787
+ "$ref": "#/$defs/Workflow.WorkflowGraphEdge"
6788
+ }
6789
+ },
6790
+ "statistics": {
6791
+ "$ref": "#/$defs/Workflow.WorkflowGraphStatistics"
6792
+ },
6793
+ "journal_sequence": {
6794
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6795
+ },
6796
+ "next_node_cursor": {
6797
+ "type": "string"
6798
+ },
6799
+ "next_edge_cursor": {
6800
+ "type": "string"
6801
+ },
6802
+ "has_more_nodes": {
6803
+ "type": "boolean"
6804
+ },
6805
+ "has_more_edges": {
6806
+ "type": "boolean"
6807
+ },
6808
+ "total_node_count": {
6809
+ "type": "integer",
6810
+ "format": "int32",
6811
+ "minimum": 0
6812
+ },
6813
+ "total_edge_count": {
6814
+ "type": "integer",
6815
+ "format": "int32",
6816
+ "minimum": 0
6817
+ }
6818
+ },
6819
+ "unevaluatedProperties": {
6820
+ "not": {}
6821
+ },
6822
+ "description": "Deterministic graph projection at one journal cursor."
6823
+ },
6824
+ "Workflow.WorkflowGraphStatistics": {
6825
+ "type": "object",
6826
+ "required": [
6827
+ "t1_ms",
6828
+ "t_infinity_ms",
6829
+ "wall_time_ms",
6830
+ "peak_concurrency",
6831
+ "worker_count",
6832
+ "parallel_lower_bound_ms",
6833
+ "critical_path_node_ids"
6834
+ ],
6835
+ "properties": {
6836
+ "t1_ms": {
6837
+ "$ref": "#/$defs/Common.DurationMs"
6838
+ },
6839
+ "t_infinity_ms": {
6840
+ "$ref": "#/$defs/Common.DurationMs"
6841
+ },
6842
+ "wall_time_ms": {
6843
+ "$ref": "#/$defs/Common.DurationMs"
6844
+ },
6845
+ "peak_concurrency": {
6846
+ "type": "integer",
6847
+ "format": "int32",
6848
+ "minimum": 0
6849
+ },
6850
+ "worker_count": {
6851
+ "type": "integer",
6852
+ "format": "int32",
6853
+ "minimum": 1
6854
+ },
6855
+ "parallel_lower_bound_ms": {
6856
+ "$ref": "#/$defs/Common.DurationMs"
6857
+ },
6858
+ "critical_path_node_ids": {
6859
+ "type": "array",
6860
+ "items": {
6861
+ "$ref": "#/$defs/Workflow.WorkflowNodeId"
6862
+ }
6863
+ }
6864
+ },
6865
+ "unevaluatedProperties": {
6866
+ "not": {}
6867
+ },
6868
+ "description": "Work and critical-path statistics for a workflow graph."
6869
+ },
6870
+ "Workflow.WorkflowHeartbeatEvent": {
6871
+ "type": "object",
6872
+ "required": [
6873
+ "type",
6874
+ "high_water_mark",
6875
+ "timestamp"
6876
+ ],
6877
+ "properties": {
6878
+ "type": {
6879
+ "type": "string",
6880
+ "enum": [
6881
+ "heartbeat"
6882
+ ]
6883
+ },
6884
+ "high_water_mark": {
6885
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6886
+ },
6887
+ "timestamp": {
6888
+ "type": "string",
6889
+ "format": "date-time"
6890
+ }
6891
+ },
6892
+ "unevaluatedProperties": {
6893
+ "not": {}
6894
+ },
6895
+ "description": "Keep-alive emitted while a workflow event stream has no new event."
6896
+ },
6897
+ "Workflow.WorkflowJournalEvent": {
6898
+ "type": "object",
6899
+ "required": [
6900
+ "run_id",
6901
+ "client_id",
6902
+ "journal_sequence"
6903
+ ],
6904
+ "properties": {
6905
+ "run_id": {
6906
+ "$ref": "#/$defs/Workflow.WorkflowRunId"
6907
+ },
6908
+ "client_id": {
6909
+ "type": "string"
6910
+ },
6911
+ "journal_sequence": {
6912
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
6913
+ }
6914
+ },
6915
+ "unevaluatedProperties": {
6916
+ "not": {}
6917
+ },
6918
+ "allOf": [
6919
+ {
6920
+ "$ref": "#/$defs/Workflow.WorkflowEventAppend"
6921
+ }
6922
+ ],
6923
+ "description": "One immutable event after collector journal sequence assignment."
6924
+ },
6925
+ "Workflow.WorkflowJournalEventKind": {
6926
+ "type": "string",
6927
+ "enum": [
6928
+ "run_created",
6929
+ "run_completed",
6930
+ "thread_started",
6931
+ "thread_resumed",
6932
+ "turn_started",
6933
+ "turn_completed",
6934
+ "turn_interrupted",
6935
+ "attempt_started",
6936
+ "attempt_completed",
6937
+ "agent_spawned",
6938
+ "agent_started",
6939
+ "agent_completed",
6940
+ "message_sent",
6941
+ "message_received",
6942
+ "wait_started",
6943
+ "wait_completed",
6944
+ "joined",
6945
+ "item_started",
6946
+ "item_completed",
6947
+ "tool_started",
6948
+ "tool_completed",
6949
+ "approval_requested",
6950
+ "approval_resolved",
6951
+ "content_captured",
6952
+ "file_written",
6953
+ "control_requested",
6954
+ "control_accepted",
6955
+ "control_applied",
6956
+ "control_rejected",
6957
+ "control_failed"
6958
+ ],
6959
+ "description": "Immutable journal event kinds accepted from a Codex observer."
6960
+ },
6961
+ "Workflow.WorkflowNodeId": {
6962
+ "type": "string",
6963
+ "minLength": 1,
6964
+ "maxLength": 192,
6965
+ "description": "Stable identifier of one graph node."
6966
+ },
6967
+ "Workflow.WorkflowNodeKind": {
6968
+ "type": "string",
6969
+ "enum": [
6970
+ "run",
6971
+ "attempt",
6972
+ "turn",
6973
+ "agent",
6974
+ "tool_call",
6975
+ "message",
6976
+ "wait",
6977
+ "gate",
6978
+ "resource"
6979
+ ],
6980
+ "description": "Kinds of execution node in the deterministic workflow graph."
6981
+ },
6982
+ "Workflow.WorkflowRun": {
6983
+ "type": "object",
6984
+ "required": [
6985
+ "run_id",
6986
+ "status",
6987
+ "started_at",
6988
+ "latest_journal_sequence"
6989
+ ],
6990
+ "properties": {
6991
+ "run_id": {
6992
+ "$ref": "#/$defs/Workflow.WorkflowRunId"
6993
+ },
6994
+ "thread_id": {
6995
+ "type": "string"
6996
+ },
6997
+ "title": {
6998
+ "type": "string"
6999
+ },
7000
+ "status": {
7001
+ "$ref": "#/$defs/Workflow.WorkflowRunStatus"
7002
+ },
7003
+ "started_at": {
7004
+ "type": "string",
7005
+ "format": "date-time"
7006
+ },
7007
+ "ended_at": {
7008
+ "type": "string",
7009
+ "format": "date-time"
7010
+ },
7011
+ "latest_journal_sequence": {
7012
+ "$ref": "#/$defs/Workflow.WorkflowSequence"
7013
+ },
7014
+ "active_attempt_id": {
7015
+ "$ref": "#/$defs/Workflow.WorkflowAttemptId"
7016
+ },
7017
+ "metadata": {
7018
+ "type": "object",
7019
+ "unevaluatedProperties": {}
7020
+ }
7021
+ },
7022
+ "unevaluatedProperties": {
7023
+ "not": {}
7024
+ },
7025
+ "description": "One immutable workflow run."
7026
+ },
7027
+ "Workflow.WorkflowRunCreateRequest": {
7028
+ "type": "object",
7029
+ "required": [
7030
+ "run_id",
7031
+ "started_at"
7032
+ ],
7033
+ "properties": {
7034
+ "run_id": {
7035
+ "$ref": "#/$defs/Workflow.WorkflowRunId"
7036
+ },
7037
+ "thread_id": {
7038
+ "type": "string"
7039
+ },
7040
+ "title": {
7041
+ "type": "string"
7042
+ },
7043
+ "started_at": {
7044
+ "type": "string",
7045
+ "format": "date-time"
7046
+ },
7047
+ "metadata": {
7048
+ "type": "object",
7049
+ "unevaluatedProperties": {}
7050
+ }
7051
+ },
7052
+ "unevaluatedProperties": {
7053
+ "not": {}
7054
+ },
7055
+ "description": "Request to create an observed workflow run before appending journal events."
7056
+ },
7057
+ "Workflow.WorkflowRunId": {
7058
+ "type": "string",
7059
+ "minLength": 1,
7060
+ "maxLength": 128,
7061
+ "description": "Stable identifier of one observed Codex workflow run."
7062
+ },
7063
+ "Workflow.WorkflowRunPage": {
7064
+ "type": "object",
7065
+ "required": [
7066
+ "items",
7067
+ "has_more"
7068
+ ],
7069
+ "properties": {
7070
+ "items": {
7071
+ "type": "array",
7072
+ "items": {
7073
+ "$ref": "#/$defs/Workflow.WorkflowRun"
7074
+ }
7075
+ },
7076
+ "next_cursor": {
7077
+ "type": "string"
7078
+ },
7079
+ "has_more": {
7080
+ "type": "boolean"
7081
+ }
7082
+ },
7083
+ "unevaluatedProperties": {
7084
+ "not": {}
7085
+ },
7086
+ "description": "Cursor page of workflow runs."
7087
+ },
7088
+ "Workflow.WorkflowRunStatus": {
7089
+ "type": "string",
7090
+ "enum": [
7091
+ "active",
7092
+ "completed",
7093
+ "failed",
7094
+ "interrupted"
7095
+ ],
7096
+ "description": "Current lifecycle of a workflow run."
7097
+ },
7098
+ "Workflow.WorkflowSequence": {
7099
+ "type": "string",
7100
+ "format": "uint64",
7101
+ "description": "Unsigned source or collector journal sequence encoded without JavaScript precision loss.",
7102
+ "pattern": "^(0|[1-9][0-9]*)$",
7103
+ "maxLength": 20
7104
+ },
7105
+ "Workflow.WorkflowStreamEvents": {
7106
+ "anyOf": [
7107
+ {
7108
+ "$ref": "#/$defs/Workflow.WorkflowJournalEvent"
7109
+ },
7110
+ {
7111
+ "$ref": "#/$defs/Workflow.WorkflowHeartbeatEvent"
7112
+ },
7113
+ {
7114
+ "$ref": "#/$defs/Workflow.WorkflowCursorGapEvent"
7115
+ }
7116
+ ]
7117
+ },
7118
+ "Workflow.WorkflowToolCallId": {
7119
+ "type": "string",
7120
+ "minLength": 1,
7121
+ "maxLength": 128,
7122
+ "description": "Stable identifier of one tool call within a workflow run."
7123
+ },
7124
+ "Workflow.WorkflowToolCallStatus": {
7125
+ "type": "string",
7126
+ "enum": [
7127
+ "requested",
7128
+ "running",
7129
+ "succeeded",
7130
+ "failed",
7131
+ "rejected"
7132
+ ],
7133
+ "description": "Current lifecycle of an observed tool call."
7134
+ },
7135
+ "Operations.LogsApi_list.Response.200": {
7136
+ "type": "object",
7137
+ "required": [
7138
+ "items",
7139
+ "has_more"
7140
+ ],
7141
+ "properties": {
7142
+ "items": {
7143
+ "type": "array",
7144
+ "items": {
7145
+ "$ref": "#/$defs/OTel.Logs.LogRecord"
7146
+ },
7147
+ "description": "List of items in this page"
7148
+ },
7149
+ "next_cursor": {
7150
+ "type": "string",
7151
+ "description": "Cursor for the next page (null if no more pages)"
7152
+ },
7153
+ "prev_cursor": {
7154
+ "type": "string",
7155
+ "description": "Cursor for the previous page (null if first page)"
7156
+ },
7157
+ "has_more": {
7158
+ "type": "boolean",
7159
+ "description": "Whether there are more items available"
7160
+ }
7161
+ },
7162
+ "unevaluatedProperties": {
7163
+ "not": {}
7164
+ },
7165
+ "description": "Cursor-based paginated response wrapper"
7166
+ },
7167
+ "Operations.LogsApi_list.Response.400": {
7168
+ "$ref": "#/$defs/Common.Errors.ValidationError"
7169
+ },
7170
+ "Operations.LogsApi_list.Response.401": {
7171
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
5893
7172
  },
5894
7173
  "Operations.LogsApi_list.Response.500": {
5895
7174
  "$ref": "#/$defs/Common.Errors.InternalServerError"
@@ -7165,6 +8444,213 @@
7165
8444
  "Operations.WorkbenchWorkspacesApi_updatePreferences.Response.503": {
7166
8445
  "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
7167
8446
  },
8447
+ "Operations.WorkflowRunsApi_appendEvents.Request": {
8448
+ "$ref": "#/$defs/Workflow.WorkflowEventBatchAppendRequest"
8449
+ },
8450
+ "Operations.WorkflowRunsApi_appendEvents.Response.200": {
8451
+ "$ref": "#/$defs/Workflow.WorkflowEventBatchAppendResponse"
8452
+ },
8453
+ "Operations.WorkflowRunsApi_appendEvents.Response.400": {
8454
+ "$ref": "#/$defs/Common.Errors.ValidationError"
8455
+ },
8456
+ "Operations.WorkflowRunsApi_appendEvents.Response.401": {
8457
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
8458
+ },
8459
+ "Operations.WorkflowRunsApi_appendEvents.Response.404": {
8460
+ "$ref": "#/$defs/Common.Errors.NotFoundError"
8461
+ },
8462
+ "Operations.WorkflowRunsApi_appendEvents.Response.409": {
8463
+ "$ref": "#/$defs/Common.Errors.ConflictError"
8464
+ },
8465
+ "Operations.WorkflowRunsApi_appendEvents.Response.500": {
8466
+ "$ref": "#/$defs/Common.Errors.InternalServerError"
8467
+ },
8468
+ "Operations.WorkflowRunsApi_appendEvents.Response.503": {
8469
+ "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
8470
+ },
8471
+ "Operations.WorkflowRunsApi_create.Request": {
8472
+ "$ref": "#/$defs/Workflow.WorkflowRunCreateRequest"
8473
+ },
8474
+ "Operations.WorkflowRunsApi_create.Response.200": {
8475
+ "$ref": "#/$defs/Workflow.WorkflowRun"
8476
+ },
8477
+ "Operations.WorkflowRunsApi_create.Response.400": {
8478
+ "$ref": "#/$defs/Common.Errors.ValidationError"
8479
+ },
8480
+ "Operations.WorkflowRunsApi_create.Response.401": {
8481
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
8482
+ },
8483
+ "Operations.WorkflowRunsApi_create.Response.409": {
8484
+ "$ref": "#/$defs/Common.Errors.ConflictError"
8485
+ },
8486
+ "Operations.WorkflowRunsApi_create.Response.500": {
8487
+ "$ref": "#/$defs/Common.Errors.InternalServerError"
8488
+ },
8489
+ "Operations.WorkflowRunsApi_create.Response.503": {
8490
+ "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
8491
+ },
8492
+ "Operations.WorkflowRunsApi_get.Response.200": {
8493
+ "$ref": "#/$defs/Workflow.WorkflowRun"
8494
+ },
8495
+ "Operations.WorkflowRunsApi_get.Response.401": {
8496
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
8497
+ },
8498
+ "Operations.WorkflowRunsApi_get.Response.404": {
8499
+ "$ref": "#/$defs/Common.Errors.NotFoundError"
8500
+ },
8501
+ "Operations.WorkflowRunsApi_get.Response.500": {
8502
+ "$ref": "#/$defs/Common.Errors.InternalServerError"
8503
+ },
8504
+ "Operations.WorkflowRunsApi_get.Response.503": {
8505
+ "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
8506
+ },
8507
+ "Operations.WorkflowRunsApi_getContent.Response.200": {
8508
+ "$ref": "#/$defs/Workflow.WorkflowContent"
8509
+ },
8510
+ "Operations.WorkflowRunsApi_getContent.Response.401": {
8511
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
8512
+ },
8513
+ "Operations.WorkflowRunsApi_getContent.Response.404": {
8514
+ "$ref": "#/$defs/Common.Errors.NotFoundError"
8515
+ },
8516
+ "Operations.WorkflowRunsApi_getContent.Response.500": {
8517
+ "$ref": "#/$defs/Common.Errors.InternalServerError"
8518
+ },
8519
+ "Operations.WorkflowRunsApi_getContent.Response.503": {
8520
+ "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
8521
+ },
8522
+ "Operations.WorkflowRunsApi_getGraph.Response.200": {
8523
+ "$ref": "#/$defs/Workflow.WorkflowGraphSnapshot"
8524
+ },
8525
+ "Operations.WorkflowRunsApi_getGraph.Response.400": {
8526
+ "$ref": "#/$defs/Common.Errors.ValidationError"
8527
+ },
8528
+ "Operations.WorkflowRunsApi_getGraph.Response.401": {
8529
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
8530
+ },
8531
+ "Operations.WorkflowRunsApi_getGraph.Response.404": {
8532
+ "$ref": "#/$defs/Common.Errors.NotFoundError"
8533
+ },
8534
+ "Operations.WorkflowRunsApi_getGraph.Response.500": {
8535
+ "$ref": "#/$defs/Common.Errors.InternalServerError"
8536
+ },
8537
+ "Operations.WorkflowRunsApi_getGraph.Response.503": {
8538
+ "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
8539
+ },
8540
+ "Operations.WorkflowRunsApi_list.Response.200": {
8541
+ "$ref": "#/$defs/Workflow.WorkflowRunPage"
8542
+ },
8543
+ "Operations.WorkflowRunsApi_list.Response.400": {
8544
+ "$ref": "#/$defs/Common.Errors.ValidationError"
8545
+ },
8546
+ "Operations.WorkflowRunsApi_list.Response.401": {
8547
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
8548
+ },
8549
+ "Operations.WorkflowRunsApi_list.Response.500": {
8550
+ "$ref": "#/$defs/Common.Errors.InternalServerError"
8551
+ },
8552
+ "Operations.WorkflowRunsApi_list.Response.503": {
8553
+ "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
8554
+ },
8555
+ "Operations.WorkflowRunsApi_pollControls.Response.200": {
8556
+ "$ref": "#/$defs/Workflow.WorkflowControlCommandPage"
8557
+ },
8558
+ "Operations.WorkflowRunsApi_pollControls.Response.400": {
8559
+ "$ref": "#/$defs/Common.Errors.ValidationError"
8560
+ },
8561
+ "Operations.WorkflowRunsApi_pollControls.Response.401": {
8562
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
8563
+ },
8564
+ "Operations.WorkflowRunsApi_pollControls.Response.404": {
8565
+ "$ref": "#/$defs/Common.Errors.NotFoundError"
8566
+ },
8567
+ "Operations.WorkflowRunsApi_pollControls.Response.500": {
8568
+ "$ref": "#/$defs/Common.Errors.InternalServerError"
8569
+ },
8570
+ "Operations.WorkflowRunsApi_pollControls.Response.503": {
8571
+ "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
8572
+ },
8573
+ "Operations.WorkflowRunsApi_readEvents.Response.200": {
8574
+ "$ref": "#/$defs/Workflow.WorkflowEventPage"
8575
+ },
8576
+ "Operations.WorkflowRunsApi_readEvents.Response.400": {
8577
+ "$ref": "#/$defs/Common.Errors.ValidationError"
8578
+ },
8579
+ "Operations.WorkflowRunsApi_readEvents.Response.401": {
8580
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
8581
+ },
8582
+ "Operations.WorkflowRunsApi_readEvents.Response.404": {
8583
+ "$ref": "#/$defs/Common.Errors.NotFoundError"
8584
+ },
8585
+ "Operations.WorkflowRunsApi_readEvents.Response.500": {
8586
+ "$ref": "#/$defs/Common.Errors.InternalServerError"
8587
+ },
8588
+ "Operations.WorkflowRunsApi_readEvents.Response.503": {
8589
+ "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
8590
+ },
8591
+ "Operations.WorkflowRunsApi_stream.Response.400": {
8592
+ "$ref": "#/$defs/Common.Errors.ValidationError"
8593
+ },
8594
+ "Operations.WorkflowRunsApi_stream.Response.401": {
8595
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
8596
+ },
8597
+ "Operations.WorkflowRunsApi_stream.Response.404": {
8598
+ "$ref": "#/$defs/Common.Errors.NotFoundError"
8599
+ },
8600
+ "Operations.WorkflowRunsApi_stream.Response.500": {
8601
+ "$ref": "#/$defs/Common.Errors.InternalServerError"
8602
+ },
8603
+ "Operations.WorkflowRunsApi_stream.Response.503": {
8604
+ "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
8605
+ },
8606
+ "Operations.WorkflowRunsApi_submitControl.Request": {
8607
+ "$ref": "#/$defs/Workflow.WorkflowControlRequest"
8608
+ },
8609
+ "Operations.WorkflowRunsApi_submitControl.Response.200": {
8610
+ "$ref": "#/$defs/Workflow.WorkflowControlCommand"
8611
+ },
8612
+ "Operations.WorkflowRunsApi_submitControl.Response.400": {
8613
+ "$ref": "#/$defs/Common.Errors.ValidationError"
8614
+ },
8615
+ "Operations.WorkflowRunsApi_submitControl.Response.401": {
8616
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
8617
+ },
8618
+ "Operations.WorkflowRunsApi_submitControl.Response.404": {
8619
+ "$ref": "#/$defs/Common.Errors.NotFoundError"
8620
+ },
8621
+ "Operations.WorkflowRunsApi_submitControl.Response.409": {
8622
+ "$ref": "#/$defs/Common.Errors.ConflictError"
8623
+ },
8624
+ "Operations.WorkflowRunsApi_submitControl.Response.500": {
8625
+ "$ref": "#/$defs/Common.Errors.InternalServerError"
8626
+ },
8627
+ "Operations.WorkflowRunsApi_submitControl.Response.503": {
8628
+ "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
8629
+ },
8630
+ "Operations.WorkflowRunsApi_updateControl.Request": {
8631
+ "$ref": "#/$defs/Workflow.WorkflowControlStatusUpdateRequest"
8632
+ },
8633
+ "Operations.WorkflowRunsApi_updateControl.Response.200": {
8634
+ "$ref": "#/$defs/Workflow.WorkflowControlCommand"
8635
+ },
8636
+ "Operations.WorkflowRunsApi_updateControl.Response.400": {
8637
+ "$ref": "#/$defs/Common.Errors.ValidationError"
8638
+ },
8639
+ "Operations.WorkflowRunsApi_updateControl.Response.401": {
8640
+ "$ref": "#/$defs/Common.Errors.UnauthorizedError"
8641
+ },
8642
+ "Operations.WorkflowRunsApi_updateControl.Response.404": {
8643
+ "$ref": "#/$defs/Common.Errors.NotFoundError"
8644
+ },
8645
+ "Operations.WorkflowRunsApi_updateControl.Response.409": {
8646
+ "$ref": "#/$defs/Common.Errors.ConflictError"
8647
+ },
8648
+ "Operations.WorkflowRunsApi_updateControl.Response.500": {
8649
+ "$ref": "#/$defs/Common.Errors.InternalServerError"
8650
+ },
8651
+ "Operations.WorkflowRunsApi_updateControl.Response.503": {
8652
+ "$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
8653
+ },
7168
8654
  "Operations.health_alive.Response.200": {
7169
8655
  "$ref": "#/$defs/Health.HealthReport"
7170
8656
  },