{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BadRequestError", "title": "BadRequestError", "type": "object", "required": [ "code", "message" ], "properties": { "code": { "type": "integer", "enum": [ 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1010 ], "description": "Mandatory field missing - Source should not be empty", "example": 1001 }, "message": { "type": "string", "description": "A detailed error message explaining what went wrong with the request.", "example": "Invalid phone number format. Phone numbers must be in E.164 format." }, "trackingId": { "type": "string", "description": "A unique identifier for this error that can be used for debugging purposes.", "example": "GTWY_e6763c9a-71b2-4515-ad5b-89260f7f594b" } }, "example": { "code": 1001, "message": "Mandatory field missing - Source should not be empty", "trackingId": "GTWY_e6763c9a-71b2-4515-ad5b-89260f7f594b" } }