11 lines
207 B
Python
11 lines
207 B
Python
from typing import Any
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class HealthResponse(BaseModel):
|
|
"""Response schema for the health check endpoint"""
|
|
status: str
|
|
version: str
|
|
details: dict[str, Any]
|