# UltmtCdtr

Ultimate party to which an amount of money is due.

* Is optional
* Type: `object`


With the following properties:

| Property | Type | Required | Description | Defined in |
|  --- | --- | --- | --- | --- |
| [CtctDtls](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/contact_details) | Reference | Optional | Allows the contact of the Ultimate Creditor to be held. | `#/definitions/contact_details` |
| [Id](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/id_section) | Reference | Optional | Unique and unambiguous way to identify the Ultimate Creditor. | `#/definitions/id_section` |
| [CtryRes](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/country) | Reference | Optional | Allows the Country of Residence of the Utlimate Creditor to be held. | `#/definitions/country` |
| [Nm](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/fullname) | reference | Optional | Allows the name of the Ultimate Creditor to be held as a single value. | `#/definitions/fullname` |
| [PstlAdr](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/address) | Reference | Optional | Allows the address of the Ultimate Creditor to be held. | `#/definitions/address` |
| [StrdNm](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/name) | Reference | Optional | Allows the name of the Ultimate Creditor to be held in a structured format. | `#/definitions/name` |


## JSON schema extract


```json
"UltmtCdtr": {
    "type": "object",
    "description": "Ultimate party to which an amount of money is due.",
    "properties": {
        "Nm": {
            "type": "string",
            "description": "Allows the name of the Ultimate Creditor to be held as a single value.",
            "$ref": "#/definitions/fullname"
        },
        "StrdNm": {
            "type": "object",
            "description": "Allows the name of the Ultimate Creditor to be held in a structured format.",
            "$ref": "#/definitions/name"
        },
        "CtryOfRes": {
            "type": "object",
            "description": "Allows the Country of Residence of the Utlimate Creditor to be held.",
            "$ref": "#/definitions/country"
        },
        "PstlAdr": {
            "type": "object",
            "description": "Allows the address of the Ultimate Creditor to be held.",
            "$ref": "#/definitions/address"
        },
        "CtctDtls": {
            "type": "object",
            "description": "Allows the contact of the Ultimate Creditor to be held.",
            "$ref": "#/definitions/contact_details"
        },
        "Id": {
            "type": "object",
            "description": "Unique and unambiguous way to identify the Ultimate Creditor.",
            "$ref": "#/definitions/id_section"
        }
    }
}
```