goalstory_read_one_story
Retrieve a specific story to revisit visualizations and mental imagery created for goal achievement, helping users stay motivated and focused on their objectives.
Instructions
Retrieve a specific story to revisit the visualization and mental imagery created for goal achievement.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Unique identifier of the story to retrieve. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Unique identifier of the story to retrieve.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}