| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "properties": { | |
| "grantRoot": { | |
| "description": "[UNSTABLE] When set, the agent is asking the user to allow writes under this root for the remainder of the session (unclear if this is honored today).", | |
| "type": [ | |
| "string", | |
| "null" | |
| ] | |
| }, | |
| "itemId": { | |
| "type": "string" | |
| }, | |
| "reason": { | |
| "description": "Optional explanatory reason (e.g. request for extra write access).", | |
| "type": [ | |
| "string", | |
| "null" | |
| ] | |
| }, | |
| "startedAtMs": { | |
| "description": "Unix timestamp (in milliseconds) when this approval request started.", | |
| "format": "int64", | |
| "type": "integer" | |
| }, | |
| "threadId": { | |
| "type": "string" | |
| }, | |
| "turnId": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "itemId", | |
| "startedAtMs", | |
| "threadId", | |
| "turnId" | |
| ], | |
| "title": "FileChangeRequestApprovalParams", | |
| "type": "object" | |
| } |