Files
Beyhan Oğur 880f412e2c first commit
2026-04-26 21:52:23 +03:00

35 lines
712 B
YAML

# Common schemas used across management APIs
SuccessResponse:
type: object
description: Generic success response
properties:
status:
type: string
example: success
message:
type: string
example: Operation completed successfully
ErrorResponse:
type: object
description: Error response
$ref: '../../schemas/inference/common.yaml#/BifrostError'
MessageResponse:
type: object
description: Simple message response
properties:
message:
type: string
EnvVar:
type: object
description: Environment variable configuration
properties:
value:
type: string
env_var:
type: string
from_env:
type: boolean