goalstory_destroy_step
Permanently delete a specific step from a goal's action plan to streamline progress and maintain focus on achieving objectives.
Instructions
Remove a specific step from a goal's action plan.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Unique identifier of the step to be permanently removed. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Unique identifier of the step to be permanently removed.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}