# Readiness probe Checks if the API service is ready to serve traffic by verifying database connectivity. Returns 200 if healthy, 503 if the database is unavailable. Endpoint: GET /health/ready Version: 0.1.0 ## Response 200 fields (application/json): - `status` (string, required) Example: "ok" - `database` (string, required) Example: "connected" ## Response 503 fields (application/json): - `status` (string, required) Example: "error" - `database` (string, required) Example: "disconnected" - `error` (string) Error message describing the database connection issue