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.
Check if a project is in the current user’s favorites
| Field | Value |
|---|
| Name | is_favorite |
| Group | Favorites |
Playground
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
}
},
"required": [
"project_reference"
],
"additionalProperties": false,
"description": "Input schema for the is_favorite tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"is_favorite": {
"type": "boolean",
"description": "The is favorite associated with this tool result."
},
"project_id": {
"type": "string",
"description": "Project identifier associated with this result."
}
},
"required": [
"is_favorite",
"project_id"
],
"additionalProperties": false,
"description": "Structured result returned by the is_favorite tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}