Aider · Schema

FilePathRequest

FilePathRequest schema from Aider CLI

Artificial IntelligenceAI Pair ProgrammingDeveloper ToolsCLICommand LineCoding AssistantCode GenerationOpen-SourcePythonApache 2.0LLMGitBYO LLMTerminalPolyglotTree-sitterRepository MapPair Programming

Properties

Name Type Description
path string Filesystem path.
View JSON Schema on GitHub

JSON Schema

aider-cli-file-path-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aider/refs/heads/main/json-schema/aider-cli-file-path-request-schema.json",
  "title": "FilePathRequest",
  "description": "FilePathRequest schema from Aider CLI",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Filesystem path.",
      "example": ".aider/session-2026-05-30.txt"
    }
  },
  "required": [
    "path"
  ]
}