France (Flux 2 UBL EXT-CTC-FR): Buyer Agent Party

You can specify details about a buyer's agent.

CIUS-FR extends the usage of the Buyer Party group, by adding the possibility to add the Buyer Agent Party cac:AgentParty.

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

Elements

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

Example

<Invoice>
    <!-- code omitted for clarity -->
    <cac:AccountingCustomerParty>
        <cac:Party>
            <!-- code omitted for clarity -->
            <cac:AgentParty>
                <EndpointID schemeID="0225">100000009_STATUTS</EndpointID> Ⓐ
                <IndustryClassificationCode></IndustryClassificationCode> Ⓑ
                <cac:PartyIdentification>
                    <ID schemeID="0088">7300010000001</ID> Ⓒ
                </cac:PartyIdentification>
                <cac:PartyName>
                    <Name>Buyer Agent</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>Agent</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:AgentParty>
        </cac:Party>
    </cac:AccountingCustomerParty>
    <!-- code omitted for clarity -->
</Invoice>