{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ResponseStatus", "title": "ResponseStatus", "type": "object", "required": [ "code", "type", "summaryEnglish", "detail", "trackingId" ], "properties": { "code": { "type": "number", "example": 25013, "description": "Error Code. 25013 for error retrieving the outbound proxy. 25014 for error retrieving the status" }, "type": { "$ref": "#/components/schemas/ResponseStatusType", "description": "Status type." }, "summaryEnglish": { "type": "string", "example": "CPAPI: Error retrieving outboundproxy.", "description": "Error summary in English." }, "detail": { "type": "array", "items": { "type": "string", "example": "OCI-P GroupOutboundProxyGetRequest: [Error 26088] Cloud PBX Console is not configured properly., OCI-P Error code: [Error 26088] Cloud PBX Console is not configured properly." }, "description": "Error Details." }, "trackingId": { "type": "string", "example": "CPAPI_2da34568-1e72-4196-b613-905ce45ec592_0", "description": "Error Tracking ID." } } }