Bifrost · Schema

ProviderStatus

Status of a configured AI provider.

AI GatewayLLMLoad BalancingOpen SourceOpenAI CompatibleMCP

Properties

Name Type Description
name string Provider name.
status string Provider health status.
View JSON Schema on GitHub

JSON Schema

bifrost-provider-status-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ProviderStatus",
  "type": "object",
  "description": "Status of a configured AI provider.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Provider name.",
      "example": "openai"
    },
    "status": {
      "type": "string",
      "description": "Provider health status.",
      "enum": [
        "healthy",
        "degraded",
        "unavailable"
      ],
      "example": "healthy"
    }
  }
}