{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/CashAccountCreationStatusResponse.json", "title": "CashAccountCreationStatusResponse", "type": "object", "required": [ "requestReferenceId", "status" ], "properties": { "requestReferenceId": { "type": "string", "format": "uuid" }, "status": { "type": "string", "enum": [ "Pending", "Success", "Failure" ] }, "updatedAt": { "type": "string", "format": "date-time", "nullable": true }, "account": { "$ref": "#/components/schemas/CashAccount", "nullable": true, "description": "Present only when status is Success" } } }