# Invcr

Identification of the organization issuing the invoice, when it is different from the creditor or ultimate creditor.

With the following properties:

| Property | Type | Required | Description |
|  --- | --- | --- | --- |
| [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. Defined in `#/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. Defined in `#/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. Defined in `#/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. Defined in `#/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. Defined in `#/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. Defined in `#/definitions/name` |


## JSON schema extract


```json
"Invcr": {
    "type": "object",
    "description": "Identification of the organization issuing the invoice, when it is different from the creditor or ultimate creditor.",
    "properties": {
        "Nm": {
            "$ref": "#/definitions/fullname"
        },
        "StrdNm": {
            "$ref": "#/definitions/name"
        },
        "CtryOfRes": {
            "$ref": "#/definitions/country"
        },
        "PstlAdr": {
            "$ref": "#/definitions/address"
        },
        "Id": {
            "$ref": "#/definitions/id_section"
        },
        "CtctDtls": {
            "$ref": "#/definitions/contact_details"
        }
    }
}
```