ErrorsWe structure all errors which occur in our application into a JSON object with keys:code (integer) - the HTTP status codedescription (string or dict) - a longer description of what went wrongname (string) - the error nameExamples#404#{ "code": 404, "description": "Transaction not found", "name": "Not Found"}Copy422#{ "code": 422, "description": { "json": { "merchant": { "_schema": [ "one of 'heron_id' or 'name' is required for merchant feedback" ] } } }, "name": "Unprocessable Entity"}Copy429#{ "code": 429, "description": "100 per 1 minute", "name": "Too Many Requests"}Copy500#{ "code": 500, "description": "Something went wrong - sorry about that! If you continue having issues please email help@herondata.io", "name": "Internal Server Error"}Copy