validate_form_logic_flow
Analyze and validate the logical flow of a form to detect issues or dead ends, ensuring proper navigation and functionality within structured forms.
Instructions
Analyze and validate the logical flow of a form to identify potential issues or dead ends
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blocks | Yes | Array of form blocks to analyze for logic flow |
Input Schema (JSON Schema)
{
"properties": {
"blocks": {
"description": "Array of form blocks to analyze for logic flow",
"items": {
"properties": {
"payload": {
"type": "object"
},
"type": {
"type": "string"
},
"uuid": {
"type": "string"
}
},
"required": [
"uuid",
"type"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"blocks"
],
"type": "object"
}