16 lines
352 B
YAML
16 lines
352 B
YAML
# Health API schemas
|
|
|
|
HealthResponse:
|
|
type: object
|
|
description: Health check response
|
|
properties:
|
|
status:
|
|
type: string
|
|
enum: [ok]
|
|
example: ok
|
|
components:
|
|
type: object
|
|
description: Health status of individual components (config_store, log_store, vector_store)
|
|
additionalProperties:
|
|
type: string
|