{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aider/refs/heads/main/json-schema/aider-cli-drop-files-request-schema.json", "title": "DropFilesRequest", "description": "DropFilesRequest schema from Aider CLI", "type": "object", "properties": { "files": { "type": "array", "description": "List of file paths to remove from chat context. Omit to drop all files.", "items": { "type": "string", "example": "src/legacy.py" }, "example": [ "src/legacy.py" ] } } }