{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/upvest/refs/heads/main/json-structure/investment-api-reference-account-structure.json", "name": "ReferenceAccount", "description": "A linked reference bank account for transfers.", "type": "object", "properties": { "id": { "type": "uuid", "description": "The reference account identifier.", "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890" }, "iban": { "type": "string", "description": "The IBAN of the reference bank account.", "example": "example-value" }, "bic": { "type": "string", "description": "The BIC/SWIFT code.", "example": "example-value" }, "account_holder": { "type": "string", "description": "The name of the account holder.", "example": "example-value" }, "status": { "type": "string", "enum": [ "ACTIVE", "INACTIVE" ], "description": "The reference account status.", "example": "ACTIVE" } } }