DbtrAgt

Financial institution servicing an account for the debtor.

  • Is optional
  • Type: object

With the following properties:

Property Type Required Description
BrnchId Object Optional Allows the details of the Debtor Agent Branch to be held. Defined in #/definitions/branch_id
FinInstnId Object Optional Allows the details of the Debtor Agent to be held. Defined in #/definitions/financial_institution

JSON schema extract

Copy
Copied!
"DbtrAgt": {
    "type": "object",
    "description": "Financial institution servicing an account for the debtor.",
    "properties": {
        "FinInstnId": {
            "type": "object",
            "description": "Allows the details of the Debtor Agent to be held",
            "$ref": "#/definitions/financial_institution"
        },
        "BrnchId": {
            "type": "object",
            "description": "Allows the details of the Debtor Agent Branch to be held",
            "$ref": "#/definitions/branch_id"
        }
    }
}