# branch_id

Identifies a specific branch of a financial institution.

* Is optional
* Type: `object`


With the following properties:

| Property | Type | Required | Description |
|  --- | --- | --- | --- |
| `Id` | Object | Optional | Unique and unambiguous identification of a branch of a financial institution. Maximum length: 35 characters |
| [Nm](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/fullname) | String | Optional | Name for the Branch. Defined in `#/definitions/fullname` |
| [PstlAdr](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/address) | Object | Optional | Address for the Branch. Defined in `#/definitions/address` |


## JSON schema extract


```json
"branch_id": {
    "type": "object",
    "description": "Identifies a specific branch of a financial institution.",
    "properties": {
        "Id": {
            "type": "string",
            "description": "Unique and unambiguous identification of a branch of a financial institution.",
            "maxLength": 35
        },
        "Nm": {
            "type": "string",
            "description": "Name for the Branch",
            "$ref": "#/definitions/fullname"
        },
        "PstlAdr": {
	        "type": "object",
            "description": "Address for the Branch",
            "$ref": "#/definitions/address"
        }
    }
}
```