| { | |
| "name": "delete_status_update", | |
| "description": "Delete (archive) a project or initiative status update.", | |
| "inputSchema": { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "type": "object", | |
| "properties": { | |
| "type": { | |
| "type": "string", | |
| "enum": [ | |
| "project", | |
| "initiative" | |
| ], | |
| "description": "Type of status update" | |
| }, | |
| "id": { | |
| "type": "string", | |
| "description": "Status update ID" | |
| } | |
| }, | |
| "required": [ | |
| "type", | |
| "id" | |
| ], | |
| "additionalProperties": false | |
| } | |
| } |