DbtrAcct
Unambiguous identification of the account of the debtor to which a debit entry will be made as a result of the transaction.
- Is optional
-
Type:
object
With the following properties:
Property | Type | Required | Description |
---|---|---|---|
Ccy | String | Optional | Currency for the Debtor Account. Defined in #/definitions/currency |
Id | Object | Required | Nature or use of the Debtor account. |
Nm | String | Optional | Name by which the account is known and which is usually used to identify the Debtor account. Defined in #/definitions/account_name |
Tp | Object | Optional | Nature or use of the Debtor account. Defined in #/definitions/account_type |
Id
Nature or use of the Debtor account.
The full list of Id properties is defined in #/definitions/account_id
. However, the following properties are required for DbtrAcct.Id
:
Property | Type | Required | Description |
---|---|---|---|
IBAN |
String | Required | Holds the Debtor account number in IBAN format. Usage Guidelines:
|
Othr.Id |
String | Required | Holds the Debtor account number in non-IBAN format. Usage Guidelines:
|
JSON schema extract
"DbtrAcct": {
"type": "object",
"description": "Unambiguous identification of the account of the debtor to which a debit entry will be made as a result of the transaction.",
"properties": {
"Nm": {
"type": "string",
"description": "Name by which the account is known and which is usually used to identify the Debtor account.",
"$ref": "#/definitions/account_name"
},
"Ccy": {
"type": "string",
"description": "Currency for the Debtor Account",
"$ref": "#/definitions/currency"
},
"Id": {
"type": "object",
"description": "Nature or use of the Debtor account.",
"$ref": "#/definitions/account_id"
},
"Tp": {
"type": "object",
"description": "Nature or use of the Debtor account.",
"$ref": "#/definitions/account_type"
}
}
}