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.
Remove a project from the current user’s favorites
| Field | Value |
|---|
| Name | delete_favorite |
| Group | Favorites |
Playground
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"confirm": {
"type": "boolean",
"description": "Must be true to confirm removal"
}
},
"required": [
"project_reference",
"confirm"
],
"additionalProperties": false,
"description": "Input schema for the delete_favorite tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the returned record."
},
"deleted": {
"type": "boolean",
"description": "The deleted associated with this tool result."
},
"project_name": {
"type": "string",
"description": "The project name associated with this tool result."
},
"project_slug": {
"type": "string",
"description": "The project slug associated with this tool result."
}
},
"required": [
"id",
"deleted",
"project_name",
"project_slug"
],
"additionalProperties": false,
"description": "Structured result returned by the delete_favorite tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}