France (Flux 2 UBL EXT-CTC-FR): Buyer's Service Provider

You can model information about a buyer's service provider.

CIUS-FR extends the usage of the Buyer Party group, by adding the possibility to add the Buyer Service Provider Party cac:ServiceProviderParty.

The Service Provider is structured the same way as other party types in UBL 2.4 and provides the following sections.

Elements

Name (Path)CardinalityDescription
Buyer Service Provider Party (/Invoice/AccountingCustomerParty/Party/ServiceProviderParty)1..1A group of elements providing information regarding the Buyer Service Provider Party.
Ⓐ Buyer Service Provider Electronic Address
Buyer Service Provider Electronic Address (Party/EndpointID)0..1The Electronic Address (Peppol ID) of the Buyer Service Provider.
Scheme Identifier (Party/EndpointID/@schemeID)1..1Scheme identifier. Use codes from the EAS code list.
Ⓑ Buyer Service Provider Industry Classification Code
Buyer Service Provider Industry Classification Code (Party/IndustryClassificationCode)1..1A code providing the Industry Classification Code of the Buyer Service Provider. Use codes from the UNCL 3035 code list.
Ⓒ Buyer Service Provider Identifier
Party Identification (Party/PartyIdentification)0..nA group to provide identifiers for the Buyer Service Provider.
Buyer Service Provider Identifier (Party/PartyIdentification/ID)1..1An identification of the Buyer Service Provider.
Scheme Identifier (Party/PartyIdentification/ID/@schemeID)1..1Scheme identifier. When used, it is chosen from the entries of the list published by the ISO/IEC 6523 maintenance agency. When omitted, the ID element contains the Buyer Number.
Ⓓ Buyer Service Provider Trading Name
Party Name (Party/PartyName)0..1A group to hold the Buyer Service Provider trading name.
Buyer Service Provider Trading Name (Party/PartyName/Name)1..1The trading name of the Buyer Service Provider.
Ⓔ Buyer Service Provider Postal Address
Buyer Service Provider Postal Address (Party/PostalAddress)1..1A group to provide the Buyer Service Provider address.
Buyer Service Provider Address Line 1 (Party/PostalAddress/StreetName)1..1The main address line in an address.
Buyer Service Provider Address Line 2 (Party/PostalAddress/AdditionalStreetName)0..1An additional address line in an address that can be used to give further details supplementing the main line.
Buyer Service Provider City (Party/PostalAddress/CityName)1..1The common name of the city, town, or village where the Buyer Service Provider address is located.
Buyer Service Provider Post Code (Party/PostalAddress/PostalZone)1..1The identifier for an addressable group of properties according to the relevant postal service.
Buyer Service Provider Country Subdivision (Party/PostalAddress/CountrySubentity)0..1The subdivision of a country, such as a region, a county, a state, a province, and so on.
Buyer Service Provider Additional Address Line (Party/PostalAddress/AddressLine/Line)0..1Additional address line.
Buyer Service Provider Country (Party/PostalAddress/Country/IdentificationCode)1..1Country Code. Use codes from the ISO3166-1:Alpha2 list.
Ⓕ Buyer Service Provider Tax Registration
Party Tax (Party/PartyTaxScheme)0..1A group to provide Buyer Service Provider tax registration data.
Buyer Service Provider Tax Registration Identifier (Party/PartyTaxScheme/CompanyID)1..1The Buyer Service Provider Tax Identifier.
Buyer Service Provider Tax Scheme (Party/PartyTaxScheme/TaxScheme/ID)1..1To provide tax scheme ID. Use VAT.
Ⓖ Buyer Service Provider Legal Registration
Party Legal Entity (Party/PartyLegalEntity)1..1A group to provide Buyer Service Provider legal registration data.
Buyer Service Provider Name (Party/PartyLegalEntity/RegistrationName)1..1The full formal name by which the Buyer Service Provider is registered in the national registry of legal entities or as a Taxable person or otherwise trades as a person or persons.
Buyer Service Provider Legal Registration Identifier (Party/PartyLegalEntity/CompanyID)0..1An identifier issued by an official registrar that identifies the Buyer Service Provider as a legal entity or person. Use the SIREN Number.
Ⓗ Buyer Service Provider Contact Details
Buyer Service Provider Contact (Party/Contact)0..1A group to provide Buyer Service Provider contact details.
Buyer Service Provider Contact Point (Party/Contact/Name)0..1A contact point for a legal entity or person.
Buyer Service Provider Contact Telephone Number (Party/Contact/Telephone)0..1A phone number for the contact point.
Buyer Service Provider Contact Email Address (Party/Contact/ElectronicMail)0..1An email address for the contact point.

Restrictions

  • You must use a value from the EAS code list in the Scheme Identifier attribute.
  • You must use a value from the UNCL 3035 code list in the Buyer Service Provider Industry Classification Code.

Example

<Invoice>
    <!-- code omitted for clarity -->
    <cac:AccountingCustomerParty>
        <cac:Party>
            <!-- code omitted for clarity -->
            <cac:ServiceProviderParty>
                <cac:Party>
                    <EndpointID schemeID="0225">100000009_STATUTS</EndpointID> Ⓐ
                    <IndustryClassificationCode></IndustryClassificationCode> Ⓑ
                    <cac:PartyIdentification>
                        <ID schemeID="0088">7300010000001</ID> Ⓒ
                    </cac:PartyIdentification>
                    <cac:PartyName>
                        <Name>Buyer Service Provider</Name> Ⓓ
                    </cac:PartyName>
                    <cac:PostalAddress> Ⓔ
                        <StreetName>MON ADRESSE LIGNE 1</StreetName>
                        <AdditionalStreetName>ligne 2</AdditionalStreetName>
                        <CityName>MA VILLE</CityName>
                        <PostalZone>06000</PostalZone>
                        <CountrySubentity>Ma province</CountrySubentity>
                        <cac:AddressLine>
                            <Line>ligne 3</Line>
                        </cac:AddressLine>
                        <cac:Country>
                            <IdentificationCode>FR</IdentificationCode>  
                        </cac:Country>
                    </cac:PostalAddress>
                    <cac:PartyTaxScheme> Ⓕ
                        <CompanyID>FR88100000009</CompanyID>
                        <cac:TaxScheme>
                            <ID>VAT</ID>  
                        </cac:TaxScheme>
                    </cac:PartyTaxScheme>
                    <cac:PartyLegalEntity> Ⓖ
                        <RegistrationName>Prestataire de services</RegistrationName>
                        <CompanyID schemeID="0002">100000009</CompanyID>
                    </cac:PartyLegalEntity>
                    <cac:Contact> Ⓗ
                        <Name>MME CONTACT</Name>
                        <Telephone>01 02 03 54 87</Telephone>
                        <ElectronicMail>[email protected]</ElectronicMail>
                    </cac:Contact>
                </cac:Party>
            </cac:ServiceProviderParty>
        </cac:Party>
    </cac:AccountingCustomerParty>
    <!-- code omitted for clarity -->
</Invoice>