start_workflow
Initiate a multi-step workflow to manage complex operations in Kafka Schema Registry, ensuring structured and efficient handling of schema-related tasks.
Instructions
Start a multi-step workflow for complex Schema Registry operations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
initial_context | No | ||
workflow_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"initial_context": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Initial Context"
},
"workflow_id": {
"title": "Workflow Id",
"type": "string"
}
},
"required": [
"workflow_id"
],
"type": "object"
}