# DbtrAgt Financial institution servicing an account for the debtor. * Is optional * Type: `object` With the following properties: | Property | Type | Required | Description | | --- | --- | --- | --- | | [BrnchId](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/branch_id) | Object | Optional | Allows the details of the Debtor Agent Branch to be held. Defined in `#/definitions/branch_id` | | [FinInstnId](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/financial_institution) | Object | Optional | Allows the details of the Debtor Agent to be held. Defined in `#/definitions/financial_institution` | ## JSON schema extract ```json "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" } } } ```