Aider · JSON Structure

Aider Cli Model Catalog Structure

ModelCatalog schema from Aider CLI

Type: object Properties: 1
AIAI Pair ProgrammingDeveloper ToolsCLICommand LineCoding AssistantCode GenerationOpen SourcePythonApache 2.0LLMGitBYO LLMTerminalPolyglotTree SitterRepository MapPair Programming

ModelCatalog is a JSON Structure definition published by Aider, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

models

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aider/refs/heads/main/json-structure/aider-cli-model-catalog-structure.json",
  "name": "ModelCatalog",
  "description": "ModelCatalog schema from Aider CLI",
  "type": "object",
  "properties": {
    "models": {
      "type": "array",
      "description": "Model identifiers matching the search query.",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "example": "anthropic/claude-opus-4"
          },
          "provider": {
            "type": "string",
            "example": "anthropic"
          },
          "context_window": {
            "type": "int32",
            "example": 200000
          },
          "supports_edit_format": {
            "type": "array",
            "items": {
              "type": "string",
              "example": "diff"
            },
            "example": [
              "diff",
              "udiff"
            ]
          }
        }
      },
      "example": [
        {
          "id": "anthropic/claude-opus-4",
          "provider": "anthropic",
          "context_window": 200000,
          "supports_edit_format": [
            "diff",
            "udiff"
          ]
        }
      ]
    }
  }
}