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