{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/Error.json", "title": "Error", "type": "object", "required": [ "success", "timestamp", "requestId" ], "properties": { "success": { "type": "boolean" }, "error": { "type": "object", "required": [ "code", "message" ], "properties": { "code": { "type": "string" }, "message": { "type": "string" }, "details": { "type": "string" }, "field": { "type": "string" }, "value": { "type": "string" } } }, "timestamp": { "type": "string", "format": "date-time" }, "requestId": { "type": "string" } } }