Montran · Schema

AccountStructure

Account hierarchy structure

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
structureId string
name string
physicalAccountId string
type string
virtualAccounts array
createdAt string
View JSON Schema on GitHub

JSON Schema

montran-accountstructure-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountStructure",
  "title": "AccountStructure",
  "type": "object",
  "description": "Account hierarchy structure",
  "properties": {
    "structureId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "physicalAccountId": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "virtualAccounts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VirtualAccount"
      }
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}