> For the complete documentation index, see [llms.txt](https://docs.apolo.us/index/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.apolo.us/index/apolo-mcp/capabilities/tools/flow.md).

# Flow

[Back to the MCP tool reference](/index/apolo-mcp/capabilities/tools.md).

## `flow_live_list`

List Flow live jobs within explicit context and local path scope.

**Operation type:** read-only

**Annotations:** read-only `true`, destructive `false`, idempotent `true`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "limit": {
      "default": 20,
      "title": "Limit",
      "type": "integer"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_live_listArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_live_listDictOutput",
  "type": "object"
}
```

## `flow_live_get`

Resolve one logical Flow job, with a bounded multi-job result.

**Operation type:** read-only

**Annotations:** read-only `true`, destructive `false`, idempotent `true`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "job_id": {
      "title": "Job Id",
      "type": "string"
    },
    "limit": {
      "default": 20,
      "title": "Limit",
      "type": "integer"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "suffix": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Suffix"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "job_id",
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_live_getArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_live_getDictOutput",
  "type": "object"
}
```

## `flow_live_run`

Start a configured Flow live job after explicit approval and policy.

**Operation type:** write

**Annotations:** read-only `false`, destructive `false`, idempotent `false`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "approved": {
      "default": false,
      "title": "Approved",
      "type": "boolean"
    },
    "args": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Args"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "job_id": {
      "title": "Job Id",
      "type": "string"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "params": {
      "anyOf": [
        {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Params"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "suffix": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Suffix"
    },
    "timeout_seconds": {
      "default": 300,
      "title": "Timeout Seconds",
      "type": "number"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "job_id",
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_live_runArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_live_runDictOutput",
  "type": "object"
}
```

## `flow_live_logs`

Read bounded Flow live logs with MCP-side credential redaction.

**Operation type:** read-only

**Annotations:** read-only `true`, destructive `false`, idempotent `true`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "job_id": {
      "title": "Job Id",
      "type": "string"
    },
    "max_bytes": {
      "default": 100000,
      "title": "Max Bytes",
      "type": "integer"
    },
    "max_chunks": {
      "default": 100,
      "title": "Max Chunks",
      "type": "integer"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "suffix": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Suffix"
    },
    "timeout_seconds": {
      "default": 60,
      "title": "Timeout Seconds",
      "type": "number"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "job_id",
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_live_logsArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_live_logsDictOutput",
  "type": "object"
}
```

## `flow_live_wait`

Wait a bounded time for a Flow live job to terminate.

**Operation type:** read-only

**Annotations:** read-only `true`, destructive `false`, idempotent `true`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "job_id": {
      "title": "Job Id",
      "type": "string"
    },
    "limit": {
      "default": 20,
      "title": "Limit",
      "type": "integer"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "poll_interval_seconds": {
      "default": 2,
      "title": "Poll Interval Seconds",
      "type": "number"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "suffix": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Suffix"
    },
    "timeout_seconds": {
      "default": 300,
      "title": "Timeout Seconds",
      "type": "number"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "job_id",
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_live_waitArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_live_waitDictOutput",
  "type": "object"
}
```

## `flow_live_kill`

Kill a Flow live job after explicit approval and policy.

**Operation type:** destructive

**Annotations:** read-only `false`, destructive `true`, idempotent `false`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "approved": {
      "default": false,
      "title": "Approved",
      "type": "boolean"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "job_id": {
      "title": "Job Id",
      "type": "string"
    },
    "limit": {
      "default": 20,
      "title": "Limit",
      "type": "integer"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "suffix": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Suffix"
    },
    "timeout_seconds": {
      "default": 300,
      "title": "Timeout Seconds",
      "type": "number"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "job_id",
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_live_killArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_live_killDictOutput",
  "type": "object"
}
```

## `flow_live_kill_all`

Kill all jobs in exactly one explicit Flow context.

**Operation type:** destructive

**Annotations:** read-only `false`, destructive `true`, idempotent `false`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "approved": {
      "default": false,
      "title": "Approved",
      "type": "boolean"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "limit": {
      "default": 20,
      "title": "Limit",
      "type": "integer"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "timeout_seconds": {
      "default": 300,
      "title": "Timeout Seconds",
      "type": "number"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_live_kill_allArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_live_kill_allDictOutput",
  "type": "object"
}
```

## `flow_bake_start`

Start a bake only through FlowAPI BatchRunner orchestration.

**Operation type:** write

**Annotations:** read-only `false`, destructive `false`, idempotent `false`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "approved": {
      "default": false,
      "title": "Approved",
      "type": "boolean"
    },
    "batch": {
      "title": "Batch",
      "type": "string"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "local_executor": {
      "default": false,
      "title": "Local Executor",
      "type": "boolean"
    },
    "name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Name"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "params": {
      "anyOf": [
        {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Params"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "tags": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Tags"
    },
    "task_limit": {
      "default": 100,
      "title": "Task Limit",
      "type": "integer"
    },
    "timeout_seconds": {
      "default": 300,
      "title": "Timeout Seconds",
      "type": "number"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "batch",
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_bake_startArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_bake_startDictOutput",
  "type": "object"
}
```

## `flow_bake_list`

List bakes and bounded task state in one explicit context.

**Operation type:** read-only

**Annotations:** read-only `true`, destructive `false`, idempotent `true`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "limit": {
      "default": 20,
      "title": "Limit",
      "type": "integer"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "tags": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Tags"
    },
    "task_limit": {
      "default": 100,
      "title": "Task Limit",
      "type": "integer"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_bake_listArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_bake_listDictOutput",
  "type": "object"
}
```

## `flow_bake_get`

Get structured bake, attempt, and bounded task state.

**Operation type:** read-only

**Annotations:** read-only `true`, destructive `false`, idempotent `true`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "attempt_no": {
      "default": -1,
      "title": "Attempt No",
      "type": "integer"
    },
    "bake_id_or_name": {
      "title": "Bake Id Or Name",
      "type": "string"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "task_limit": {
      "default": 100,
      "title": "Task Limit",
      "type": "integer"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "bake_id_or_name",
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_bake_getArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_bake_getDictOutput",
  "type": "object"
}
```

## `flow_bake_logs`

Read bounded bake task logs with MCP-side credential redaction.

**Operation type:** read-only

**Annotations:** read-only `true`, destructive `false`, idempotent `true`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "attempt_no": {
      "default": -1,
      "title": "Attempt No",
      "type": "integer"
    },
    "bake_id_or_name": {
      "title": "Bake Id Or Name",
      "type": "string"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "max_bytes": {
      "default": 100000,
      "title": "Max Bytes",
      "type": "integer"
    },
    "max_chunks": {
      "default": 100,
      "title": "Max Chunks",
      "type": "integer"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "task_id": {
      "title": "Task Id",
      "type": "string"
    },
    "timeout_seconds": {
      "default": 60,
      "title": "Timeout Seconds",
      "type": "number"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "bake_id_or_name",
    "task_id",
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_bake_logsArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_bake_logsDictOutput",
  "type": "object"
}
```

## `flow_bake_wait`

Wait a bounded time for a bake attempt to terminate.

**Operation type:** read-only

**Annotations:** read-only `true`, destructive `false`, idempotent `true`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "attempt_no": {
      "default": -1,
      "title": "Attempt No",
      "type": "integer"
    },
    "bake_id_or_name": {
      "title": "Bake Id Or Name",
      "type": "string"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "poll_interval_seconds": {
      "default": 2,
      "title": "Poll Interval Seconds",
      "type": "number"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "task_limit": {
      "default": 100,
      "title": "Task Limit",
      "type": "integer"
    },
    "timeout_seconds": {
      "default": 300,
      "title": "Timeout Seconds",
      "type": "number"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "bake_id_or_name",
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_bake_waitArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_bake_waitDictOutput",
  "type": "object"
}
```

## `flow_bake_cancel`

Cancel a bake attempt after explicit approval and policy.

**Operation type:** destructive

**Annotations:** read-only `false`, destructive `true`, idempotent `false`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "approved": {
      "default": false,
      "title": "Approved",
      "type": "boolean"
    },
    "attempt_no": {
      "default": -1,
      "title": "Attempt No",
      "type": "integer"
    },
    "bake_id_or_name": {
      "title": "Bake Id Or Name",
      "type": "string"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "task_limit": {
      "default": 100,
      "title": "Task Limit",
      "type": "integer"
    },
    "timeout_seconds": {
      "default": 300,
      "title": "Timeout Seconds",
      "type": "number"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "bake_id_or_name",
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_bake_cancelArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_bake_cancelDictOutput",
  "type": "object"
}
```

## `flow_bake_restart`

Restart a bake through BatchRunner after approval and policy.

**Operation type:** destructive

**Annotations:** read-only `false`, destructive `true`, idempotent `false`, open-world `true`

**Input schema:**

```json
{
  "properties": {
    "allowed_workspace_root": {
      "title": "Allowed Workspace Root",
      "type": "string"
    },
    "approved": {
      "default": false,
      "title": "Approved",
      "type": "boolean"
    },
    "attempt_no": {
      "default": -1,
      "title": "Attempt No",
      "type": "integer"
    },
    "bake_id_or_name": {
      "title": "Bake Id Or Name",
      "type": "string"
    },
    "cluster": {
      "title": "Cluster",
      "type": "string"
    },
    "config_path": {
      "title": "Config Path",
      "type": "string"
    },
    "from_failed": {
      "default": true,
      "title": "From Failed",
      "type": "boolean"
    },
    "local_executor": {
      "default": false,
      "title": "Local Executor",
      "type": "boolean"
    },
    "org": {
      "title": "Org",
      "type": "string"
    },
    "project": {
      "title": "Project",
      "type": "string"
    },
    "project_path": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project Path"
    },
    "task_limit": {
      "default": 100,
      "title": "Task Limit",
      "type": "integer"
    },
    "timeout_seconds": {
      "default": 300,
      "title": "Timeout Seconds",
      "type": "number"
    },
    "workspace_path": {
      "title": "Workspace Path",
      "type": "string"
    }
  },
  "required": [
    "bake_id_or_name",
    "cluster",
    "org",
    "project",
    "allowed_workspace_root",
    "workspace_path",
    "config_path"
  ],
  "title": "flow_bake_restartArguments",
  "type": "object"
}
```

**Output schema:**

```json
{
  "additionalProperties": true,
  "title": "flow_bake_restartDictOutput",
  "type": "object"
}
```
