playground_command_validate
Validate playground commands for the Kafka Docker CLI and receive correction suggestions to ensure proper syntax and execution.
Instructions
Validate a complete playground command and suggest corrections
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Complete playground command to validate |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Complete playground command to validate",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}