France (CII(INV)): Delivery Details

You can model delivery information on the line level.

Elements

Use the following sub-elements of the Delivery element to model this information:

Name (Path)CardinalityDescription
Delivery (Invoice/InvoiceLine/Delivery)0..nGroups information about a delivery that is associated with this Document.
Actual Delivery Date
Actual Delivery Date (Invoice/InvoiceLine/Delivery/ ActualDeliveryDate)0..1The date that the delivery was made in the YYYY-MM-DD format, for example, 2018-10-22.
Delivery Location ID
Delivery Location ID (Invoice/InvoiceLine/Delivery/ DeliveryLocation/ID)0..1The delivery location's identifier.
Delivery Location ID (Invoice/InvoiceLine/Delivery/ DeliveryLocation/ID @schemeID)0..1The scheme that the identifier belongs to. Use a value from the ISO6532 list.
Deliver To Address
Delivery To Address (Invoice/InvoiceLine/Delivery/ DeliveryLocation/Address/)0..1Groups information about the delivery address.
Delivery To Street Name (Invoice/InvoiceLine/Delivery/DeliveryLocation/ Address/StreetName)0..1The name of the street in the party's address.
Delivery To Additional Street Name (Invoice/InvoiceLine/Delivery/DeliveryLocation/ Address/AdditionalStreetName)0..1Any additional street names in the party's address.
Delivery To City Name (Invoice/InvoiceLine/Delivery/DeliveryLocation/ Address/CityName)0..1The name of the city in the party's address.
Delivery To Postal Zone (Invoice/InvoiceLine/Delivery/DeliveryLocation/ Address/PostalZone)0..1The postal zone, if any, in the party's address.
Delivery To Country Subentity (Invoice/InvoiceLine/Delivery/DeliveryLocation/ Address/CountrySubentity)0..1The country subdivision code, usually representing a State or Province.
Delivery To Additional Address Line (Invoice/InvoiceLine/Delivery/DeliveryLocation/ Address/AddressLine/Line)0..1Additional address line.
Delivery To Country (Invoice/InvoiceLine/Delivery/ DeliveryLocation/Address/ Country/IdentificationCode)1..1The ISO code for the country where the party's address is.
Deliver To Party
Delivery Party Group (Invoice/InvoiceLine/Delivery/ DeliveryParty/PartyName/)0..1Groups information about the party who received the delivery.
Delivery Party Name (Invoice/InvoiceLine/Delivery/ DeliveryParty/PartyName/Name)1..1The name of the party to whom the goods are delivered.
Delivery Party Company ID (Invoice/InvoiceLine/Delivery/ DeliveryParty/PartyTaxScheme/CompanyID)1..1The company ID of the party who delivered the goods.
Delivery Party Tax Scheme ID (Invoice/InvoiceLine/Delivery/ DeliveryParty/PartyTaxScheme/TaxScheme/ID)1..1The Tax Scheme ID of the deliverer.
Delivery Party Legal Entity's Registered Name (Invoice/InvoiceLine/Delivery/ DeliveryParty/PartyLegalEntity/RegistrationName)1..1The deliverer's registered legal entity name.
Delivery Party Legal Entity's Company ID (Invoice/InvoiceLine/Delivery/ DeliveryParty/PartyLegalEntity/CompanyID)0..1The company ID of the registered legal entity name.

Example

<ubl:Invoice>
    <!-- code omitted for clarity -->
    <cac:InvoiceLine>
        <cac:Delivery>
            <cbc:ActualDeliveryDate>2026-01-20</cbc:ActualDeliveryDate> Ⓐ
            <cac:DeliveryLocation>
                <cbc:ID schemeID="0088">9483759475923478</cbc:ID> Ⓑ
                <cac:Address> Ⓒ
                    <cbc:StreetName>MON ADRESSE LIGNE 1</cbc:StreetName>
                    <cbc:AdditionalStreetName>ligne 2</cbc:AdditionalStreetName>
                    <cbc:CityName>MA VILLE</cbc:CityName>
                    <cbc:PostalZone>06000</cbc:PostalZone>
                    <cac:Country>
                        <cbc:IdentificationCode>FR</cbc:IdentificationCode>  
                    </cac:Country>
                </cac:Address>
            </cac:DeliveryLocation>
            <cac:DeliveryParty>
                <cac:PartyName> Ⓓ
                    <cbc:Name>Delivery party Name</cbc:Name> 
                </cac:PartyName>
            </cac:DeliveryParty>
        </cac:Delivery>
    </cac:InvoiceLine>
    <!-- code omitted for clarity -->
</ubl:Invoice>