aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/relayer_api_error_response_schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/json-schemas/schemas/relayer_api_error_response_schema.json')
-rw-r--r--packages/json-schemas/schemas/relayer_api_error_response_schema.json21
1 files changed, 0 insertions, 21 deletions
diff --git a/packages/json-schemas/schemas/relayer_api_error_response_schema.json b/packages/json-schemas/schemas/relayer_api_error_response_schema.json
deleted file mode 100644
index be4659b0b..000000000
--- a/packages/json-schemas/schemas/relayer_api_error_response_schema.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "id": "/relayerApiErrorResponseSchema",
- "type": "object",
- "properties": {
- "code": { "type": "integer", "minimum": 100, "maximum": 103 },
- "reason": { "type": "string" },
- "validationErrors": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "field": { "type": "string" },
- "code": { "type": "integer", "minimum": 1000, "maximum": 1006 },
- "reason": { "type": "string" }
- },
- "required": ["field", "code", "reason"]
- }
- }
- },
- "required": ["code", "reason"]
-}