Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Dismiss an approval from a branch.
| Field | Value |
|---|
| Name | delete_branch_approval |
| Group | Branches |
Playground
{
"type": "object",
"properties": {
"approval_id": {
"type": "string",
"format": "uuid",
"description": "Approval ID to dismiss"
},
"reason": {
"type": "string",
"description": "Reason for dismissal"
}
},
"required": [
"approval_id"
],
"additionalProperties": false,
"description": "Input schema for the delete_branch_approval tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the record."
},
"deleted": {
"type": "boolean",
"description": "The deleted associated with this record."
}
},
"required": [
"id",
"deleted"
],
"additionalProperties": false,
"description": "Structured dismiss approval output schema for MCP tools.",
"$schema": "http://json-schema.org/draft-07/schema#"
}