{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorResponse", "title": "ErrorResponse", "type": "object", "properties": { "code": { "type": "string", "description": "Error status code." }, "description": { "type": "string", "description": "Human-readable description of the error." }, "errors": { "type": "array", "description": "List of specific error details.", "items": { "type": "string" } } } }