{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ServiceUnavailableErrorResponse", "title": "ServiceUnavailableErrorResponse", "type": "object", "required": [ "meta", "error" ], "properties": { "meta": { "$ref": "#/components/schemas/Meta" }, "error": { "$ref": "#/components/schemas/BaseError" } }, "description": "Error response when a required service is temporarily unavailable. This indicates that the service exists but cannot be reached or is not responding.\n\nWhen you encounter this error:\n- The service is likely experiencing temporary issues\n- Retrying the request after a short delay may succeed\n- If the error persists, the service may be undergoing maintenance\n- Contact Unkey support if the issue continues" }