AdditionalParty (Extn)

You can model additional parties.

You can model additional parties such as third parties who are not suppliers, buyers, payees or the supplier's tax representative.

Some examples of these third parties are:

  • Payer or recipient of goods
  • Factor
  • Original entity. For example, if a company is acquired in a merger.

Elements

Name (Path)CardinalityDescription
Additional Party group (Invoice/UBLExtensions/UBLExtension/ ExtensionContent/InvoiceExtension/AdditionalParty)0..nA group of elements providing information about third parties not represented in VRBL core.
Additional Party Code (Invoice/UBLExtensions/UBLExtension/ ExtensionContent/InvoiceExtension/AdditionalParty @code)1..1A code specifying the party role.
Additional Party Description (Invoice/UBLExtensions/UBLExtension/ ExtensionContent/InvoiceExtension/AdditionalParty @description)0..1A description of the party role.
Additional Purchaser Share (Invoice/UBLExtensions/UBLExtension/ ExtensionContent/InvoiceExtension/AdditionalParty/ AdditionalPurchaserSharePercent)0..1A group of elements providing information about third parties not represented in VRBL core.
Party Information (Invoice/UBLExtensions/UBLExtension/ ExtensionContent/InvoiceExtension/AdditionalParty/Party)1..1A group containing information regarding a party such as IDs, address, legal entity, contact information.

Country-Specific configuration

Example

<Invoice>
    <!-- code omitted for clarity -->
    <ext:UBLExtensions>
        <ext:UBLExtension>
            <ext:ExtensionContent>
                <vrbl:InvoiceExtension>
                    <!-- code omitted for clarity -->
                    <vrbl:AdditionalParty code="VRBL:PL:4">
                        <vrbl:AdditionalPurchaserSharePercent>50</AdditionalPurchaserSharePercent>
                        <cac:Party>
                            <cac:PartyIdentification>
                                <cbc:ID schemeID="VRBL:PL:TAX">3333333333</cbc:ID>
                            </cac:PartyIdentification>
                            <cac:PostalAddress>
                                <cac:AddressLine>
                                    <cbc:Line>ul. Polna 1</cbc:Line>
                                </cac:AddressLine>
                                <cac:AddressLine>
                                    <cbc:Line>00-001 Warszawa</cbc:Line>
                                </cac:AddressLine>
                                <cac:Country>
                                    <cbc:IdentificationCode>PL</cbc:IdentificationCode>
                                </cac:Country>
                            </cac:PostalAddress>
                            <cac:PartyLegalEntity>
                                <cbc:RegistrationName>F.H.U. Grażyna Kowalska</cbc:RegistrationName>
                            </cac:PartyLegalEntity>
                            <cac:Contact>
                                <cbc:Telephone>555777999</cbc:Telephone>
                                <cbc:ElectronicMail>[email protected]</cbc:ElectronicMail>
                            </cac:Contact>
                        </cac:Party>
                    </vrbl:AdditionalParty>
                    <!-- code omitted for clarity -->
                </vrbl:InvoiceExtension>
            </ext:ExtensionContent>
        </ext:UBLExtension>
    </ext:UBLExtensions>
    <!-- code omitted for clarity -->
</Invoice>