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 | String | Optional | Name for the Branch. Defined in #/definitions/fullname |
PstlAdr | Object | Optional | Address for the Branch. Defined in #/definitions/address |
JSON schema extract
"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"
}
}
}