/ubl:Invoice/cac:Delivery/cac:Despatch/cac:DespatchParty/cac:PostalAddress

Dispatch Party Address Group

Context ID INV0718
Cardinality 0..1
Usage M

Description

The party's postal address.

A group providing the postal address of the Despatch Party.

For outbound AR invoices use Despatch Party Streetname cbc:StreetName, Despatch Party City Name cbc:CityName and Despatch Party Postal Zone cbc:PostalZone. Only in case this data cannot be provided in a structured way it can be provided in at most two Despatch Party Address Lines cbc:AddressLine.

Child elements

Cardinality Usage Description Element
0..1 - Dispatch Party Street Name
The name of the street, road, avenue, way, etc. to which the number of the building is attached.
cbc:StreetName
0..1 - Dispatch Party City Name
The name of a city, town, or village.
cbc:CityName
0..1 - Dispatch Party Postal Zone
The postal identifier for this address according to the relevant national postal service, such as a ZIP code or Post Code.
cbc:PostalZone
0..1 M Dispatch Party Country Group
The country in which this address is situated.
cac:Country

Details

vrbl-invoice-pl-b2b-3p0

Example of expected Despatch Party address for outbound AR invoices:

<ubl:Invoice>
    <!-- code omitted for clarity -->
    <cac:Delivery>
        <!-- code omitted for clarity -->
        <cac:Despatch>
            <cac:DespatchParty>
                <cac:PostalAddress>
                    <cbc:StreetName>Sadowa 1 lok. 2</cbc:StreetName>
                    <cbc:CityName>Warszawa</cbc:CityName>
                    <cbc:PostalZone>00-001</cbc:PostalZone>
                </cac:PostalAddress>
                <cac:Country>
                    <cbc:IdentificationCode>PL</cbc:IdentificationCode>
                </cac:Country>
            </cac:DespatchParty>
        </cac:Despatch>
        <!-- code omitted for clarity -->
    </cac:Delivery>
</ubl:Invoice>

Example of despatch party address for inbound AR invoices:

<ubl:Invoice>
    <!-- code omitted for clarity -->
    <cac:Delivery>
        <!-- code omitted for clarity -->
        <cac:Despatch>
            <cac:DespatchParty>
                <AddressLine>
                    <cbc:Line>Sadowa 1 lok. 2</cbc:Line>
                </AddressLine>
                <AddressLine>
                    <cbc:Line>00-001 Warszawa</cbc:Line>
                </AddressLine>
                <cac:Country>
                    <cbc:IdentificationCode>PL</cbc:IdentificationCode>
                </cac:Country>
            </cac:DespatchParty>
        </cac:Despatch>
        <!-- code omitted for clarity -->
    </cac:Delivery>
</ubl:Invoice>