# ChrgBr

Specifies which party or parties will bear the charges associated with the processing of the payment transaction. Use ISO ChargeBearerType1Code list, the value of this property **must** be equal to one of the [known values](#chrgbr-known-values) below.

* Is optional
* Type: `string`


##### `ChrgBr` known values

| Value | Description |
|  --- | --- |
| `DEBT` | Borne By Debtor |
| `CRED` | Borne By Creditor |
| `SHAR` | Shared |


## JSON schema extract


```json
"ChrgBr": {
    "description": "Specifies which party/parties will bear the charges associated with the processing of the payment transaction. Use ISO ChargeBearerType1Code list, supported values are CRED, DEBT & SHAR.",
    "type": "string",
    "enum": [
        "DEBT",
        "CRED",
        "SHAR"
    ]
}
```