# Invcee Identification of the party to whom an invoice is issued, when it is different from the debtor or ultimate debtor. 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 Debtor 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 Debtor. 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 Debtor 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 Debtor 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 Debtor 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 Debtor to be held in a structured format. Defined in `#/definitions/name` | ## JSON schema extract ```json "Invcee": { "type": "object", "description": "Identification of the party to whom an invoice is issued, when it is different from the debtor or ultimate debtor.", "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" } } } ```