Plain text · sha256 65963fdf9a16
The description, rendered
This renders the markdown inside the description, so it isn’t quite the description itself.The raw view and the plain text are the bytes as they were sent.
Cancel a cron job previously scheduled with CronCreate. Removes it from .claude/scheduled_tasks.json (durable jobs) or the in-memory session store (session-only jobs).
What it accepts
1 parameter The JSON parameter schema sent beside this description, 246 characters of it. Name, type, then whether the client marked it required.id
string
required
Job ID returned by CronCreate.
sha256 f5eb456c6a4d · the schema as the client sent it:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"id": {
"description": "Job ID returned by CronCreate.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}