Montran · Schema

AccountStructureCreate

Account structure creation request

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
name string Structure name
physicalAccountId string Root physical account
type string
description string
View JSON Schema on GitHub

JSON Schema

montran-accountstructurecreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountStructureCreate",
  "title": "AccountStructureCreate",
  "type": "object",
  "description": "Account structure creation request",
  "required": [
    "name",
    "physicalAccountId"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Structure name"
    },
    "physicalAccountId": {
      "type": "string",
      "description": "Root physical account"
    },
    "type": {
      "type": "string",
      "enum": [
        "POBO",
        "COBO",
        "IN_HOUSE_BANK",
        "ESCROW",
        "GENERAL"
      ]
    },
    "description": {
      "type": "string"
    }
  }
}