{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ServerReadyResponse",
"title": "ServerReadyResponse",
"type": "object",
"description": "Response from the server readiness endpoint.",
"required": [
"ready"
],
"properties": {
"ready": {
"type": "boolean",
"description": "Indicates if the server is ready for inference."
}
}
}