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 Reference Optional Allows the contact of the Ultimate Debtor to be held. Defined in #/definitions/contact_details
Id Reference Optional Unique and unambiguous way to identify the Ultimate Debtor. Defined in #/definitions/id_section
CtryRes Reference Optional Allows the Country of Residence of the Utlimate Debtor to be held. Defined in #/definitions/country
Nm Reference Optional Allows the name of the Ultimate Debtor to be held as a single value. Defined in #/definitions/fullname
PstlAdr Reference Optional Allows the address of the Ultimate Debtor to be held. Defined in #/definitions/address
StrdNm Reference Optional Allows the name of the Ultimate Debtor to be held in a structured format. Defined in #/definitions/name

JSON schema extract

Copy
Copied!
"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"
        }
    }
}