{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/upvest/refs/heads/main/json-schema/investment-api-reference-account-schema.json", "title": "ReferenceAccount", "description": "A linked reference bank account for transfers.", "type": "object", "properties": { "id": { "type": "string", "format": "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" } } }