{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VeilCLI Custom Models",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "models": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "description": { "type": "string" },
          "context_length": { "type": "integer", "minimum": 1 },
          "max_completion_tokens": { "type": "integer", "minimum": 1 },
          "pricing": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "prompt": { "type": "number", "minimum": 0 },
              "completion": { "type": "number", "minimum": 0 },
              "cache_read": { "type": "number", "minimum": 0 },
              "cache_write": { "type": "number", "minimum": 0 }
            }
          },
          "input_modalities": { "type": "array", "items": { "type": "string" } },
          "output_modalities": { "type": "array", "items": { "type": "string" } }
        }
      }
    }
  }
}
