Bifrost · Schema

HealthResponse

Gateway health status response.

AI GatewayLLMLoad BalancingOpen SourceOpenAI CompatibleMCP

Properties

Name Type Description
status string Overall gateway status.
version string Gateway version.
providers array Status of configured providers.
View JSON Schema on GitHub

JSON Schema

bifrost-health-response-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "HealthResponse",
  "type": "object",
  "description": "Gateway health status response.",
  "properties": {
    "status": {
      "type": "string",
      "description": "Overall gateway status.",
      "example": "ok"
    },
    "version": {
      "type": "string",
      "description": "Gateway version.",
      "example": "v1.0.0"
    },
    "providers": {
      "type": "array",
      "description": "Status of configured providers.",
      "items": {
        "$ref": "#/components/schemas/ProviderStatus"
      }
    }
  }
}