Skip to content

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:

PropertyTypeRequiredDescription
CtctDtlsReferenceOptionalAllows the contact of the Ultimate Debtor to be held. Defined in #/definitions/contact_details
IdReferenceOptionalUnique and unambiguous way to identify the Ultimate Debtor. Defined in #/definitions/id_section
CtryResReferenceOptionalAllows the Country of Residence of the Utlimate Debtor to be held. Defined in #/definitions/country
NmReferenceOptionalAllows the name of the Ultimate Debtor to be held as a single value. Defined in #/definitions/fullname
PstlAdrReferenceOptionalAllows the address of the Ultimate Debtor to be held. Defined in #/definitions/address
StrdNmReferenceOptionalAllows the name of the Ultimate Debtor to be held in a structured format. Defined in #/definitions/name

JSON schema extract

"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"
        }
    }
}