Skip to content

Commit

Permalink
fix: add data
Browse files Browse the repository at this point in the history
  • Loading branch information
brokeyourbike committed Aug 29, 2023
1 parent f259071 commit 2f84313
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
6 changes: 6 additions & 0 deletions testdata/bad-request-validation-no-errors.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "https://tools.ietf.org/html/rfc7231#section-6.5.1",
"title": "One or more validation errors occurred.",
"status": 400,
"traceId": "1234"
}
14 changes: 14 additions & 0 deletions testdata/bad-request-validation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"type": "https://tools.ietf.org/html/rfc7231#section-6.5.1",
"title": "One or more validation errors occurred.",
"status": 400,
"traceId": "1234",
"errors": {
"DebitAccountIban": [
"Debit Account IBAN must be populated and should be in a valid IBAN format"
],
"CreditAccountIban": [
"Credit Account IBAN must be populated and should be in a valid IBAN format"
]
}
}

0 comments on commit 2f84313

Please sign in to comment.