goalstory_read_stories
Retrieve personalized stories for a specific goal and step to enhance reflection and motivation, supporting achievement through structured storytelling.
Instructions
Access the collection of personalized stories created for a specific goal/step pair, supporting reflection and motivation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
goal_id | Yes | Unique identifier of the goal whose stories to retrieve. | |
limit | No | Maximum number of stories to return per page. | |
page | No | Page number for viewing subsets of stories (starts at 1). | |
step_id | Yes | Unique identifier of the step whose stories to retrieve. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"goal_id": {
"description": "Unique identifier of the goal whose stories to retrieve.",
"type": "string"
},
"limit": {
"description": "Maximum number of stories to return per page.",
"type": "number"
},
"page": {
"description": "Page number for viewing subsets of stories (starts at 1).",
"type": "number"
},
"step_id": {
"description": "Unique identifier of the step whose stories to retrieve.",
"type": "string"
}
},
"required": [
"goal_id",
"step_id"
],
"type": "object"
}