{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aider/refs/heads/main/json-schema/aider-cli-ask-request-schema.json", "title": "AskRequest", "description": "AskRequest schema from Aider CLI", "type": "object", "properties": { "prompt": { "type": "string", "description": "Question to ask about the codebase.", "example": "How does the retry policy in the http client interact with the rate limiter?" } }, "required": [ "prompt" ] }