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.
List all approvals for a branch.
| Field | Value |
|---|
| Name | list_branch_approvals |
| Group | Branches |
Playground
{
"type": "object",
"properties": {
"branch_id": {
"type": "string",
"format": "uuid",
"description": "Branch ID"
}
},
"required": [
"branch_id"
],
"additionalProperties": false,
"description": "Input schema for the list_branch_approvals tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"approvals": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the record."
},
"approved_by": {
"type": "string",
"description": "The approved by associated with this record."
},
"approved_at": {
"type": "string",
"description": "The approved at associated with this record."
},
"comment": {
"type": [
"string",
"null"
],
"description": "The comment associated with this record."
},
"is_dismissed": {
"type": "boolean",
"description": "The is dismissed associated with this record."
}
},
"required": [
"id",
"approved_by",
"approved_at",
"comment",
"is_dismissed"
],
"additionalProperties": false,
"description": "One approval item associated with this record."
},
"description": "List of approvals associated with this record."
}
},
"required": [
"approvals"
],
"additionalProperties": false,
"description": "Structured list approvals output schema for MCP tools.",
"$schema": "http://json-schema.org/draft-07/schema#"
}