{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorResponse", "title": "ErrorResponse", "type": "object", "description": "Error response returned when an inference or metadata request fails.", "required": [ "error" ], "properties": { "error": { "type": "string", "description": "Human-readable error message describing why the request failed.", "example": "model not found: bert-sentiment-classifier" } } }