{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://vibebase.me/contracts/capability/error/0.1.0",
  "title": "CapabilityError",
  "description": "Model Gateway 오류 응답 봉투. code가 taxonomy, retryable이 소비자 재시도 계약이다.",
  "type": "object",
  "additionalProperties": false,
  "required": ["error"],
  "properties": {
    "error": {
      "type": "object",
      "additionalProperties": false,
      "required": ["code", "message", "retryable"],
      "properties": {
        "code": {
          "enum": [
            "contract_violation",
            "task_not_implemented",
            "provider_unconfigured",
            "provider_unavailable",
            "provider_timeout",
            "rate_limited"
          ]
        },
        "message": { "type": "string", "minLength": 1 },
        "retryable": { "type": "boolean" },
        "retryAfterSeconds": { "type": "integer", "minimum": 0 },
        "violations": {
          "type": "array",
          "items": { "type": "string", "minLength": 1 },
          "minItems": 1
        }
      }
    }
  }
}
