aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/relayer_api_error_response_schema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/json-schemas/schemas/relayer_api_error_response_schema.ts')
-rw-r--r--packages/json-schemas/schemas/relayer_api_error_response_schema.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/json-schemas/schemas/relayer_api_error_response_schema.ts b/packages/json-schemas/schemas/relayer_api_error_response_schema.ts
index eacbb2bce..27fdb166f 100644
--- a/packages/json-schemas/schemas/relayer_api_error_response_schema.ts
+++ b/packages/json-schemas/schemas/relayer_api_error_response_schema.ts
@@ -2,16 +2,16 @@ export const relayerApiErrorResponseSchema = {
id: '/RelayerApiErrorResponse',
type: 'object',
properties: {
- code: {type: 'number'},
- reason: {type: 'string'},
+ code: { type: 'number' },
+ reason: { type: 'string' },
validationErrors: {
type: 'array',
items: {
type: 'object',
properties: {
- field: {type: 'string'},
- code: {type: 'number'},
- reason: {type: 'string'},
+ field: { type: 'string' },
+ code: { type: 'number' },
+ reason: { type: 'string' },
},
required: ['field', 'code', 'reason'],
},