account_type

Nature or use of the account.

  • Is optional
  • Type: object

With the following properties:

Property Type Required Description
Cd Reference Optional Defined in #/definitions/externalcashaccount. List based on ISO20022 ExternalCashAccountType1Code List 27-Aug-2021.
Prtry String Optional Field to support proprietary value. Maximum length: 35 characters

JSON schema extract

Copy
Copied!
"account_type": {
	"type": "object",
    "description": "Nature or use of the account.",
    "properties": {
        "Cd": {
    	    "type": "string",
            "description": "List based on ISO20022 ExternalCashAccountType1Code List 29May2020",
            "$ref": "#/definitions/externalcashaccount"
        },
        "Prtry": {
            "type": "string",
            "description": "Field to support proprietary value",
            "maxLength": 35
        }
    }
}