xml schema definition files and examples · tender 2015 - schema definition files - page 5 / 32...

32
Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111 EUROPEAN COMMISSION Directorate-General for Trade Directorate A - Resources, Information and Policy Coordination Information Technology and IT systems XML Schema Definition files and examples ANNEX 1D Note : all the files contained in this document are available for download in electronic format at this address : http://exporthelp.europa.eu/thdapp/Technical_Requirements/Schema_Definition_files.zip

Upload: others

Post on 15-Jun-2020

21 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111

EUROPEAN COMMISSION Directorate-General for Trade

Directorate A - Resources, Information and Policy Coordination Information Technology and IT systems

XML Schema Definition files and examples

ANNEX 1D

Note : all the files contained in this document are available for download in electronic format at this address : http://exporthelp.europa.eu/thdapp/Technical_Requirements/Schema_Definition_files.zip

Page 2: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Contents

LOT 1 – IMPORT REQUIREMENTS ....................................................................................................... 3

1.1. euMappingList.xsd .................................................................................................................................. 3

1.2. importRequirements.xsd .......................................................................................................................... 6

1.3. msMappingList.xsd ................................................................................................................................12

2. LOT 2 - INTERNAL TAXATION .........................................................................................................15

2.1. internalTaxes.xsd ....................................................................................................................................15

3. LOT 1-2 COMMON ................................................................................................................................18

3.1. types.xsd .................................................................................................................................................18

3.2. example.html ..........................................................................................................................................24

3.3. eh_styles.css ...........................................................................................................................................32

Note : all the files contained in this document are available for download in electronic

format at this address :

http://exporthelp.europa.eu/thdapp/Technical_Requirements/Schema_Definition_files.zip

Page 3: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 3 / 32 Document Version 0.00 dated 17/06/2015

LOT 1 – IMPORT REQUIREMENTS

1.1. euMappingList.xsd

<?xml version="1.0" encoding="UTF-8"?>

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:include schemaLocation="types.xsd"/>

<xs:element name="euMappingList">

<xs:annotation>

<xs:documentation>List of document mappings at the EU level</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="updateInfo"/>

<xs:element ref="euMapping" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="updateInfo">

<xs:annotation>

<xs:documentation>contains the charactheristics of the update file such as the provider identifier.</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:attribute name="countryId" type="COUNTRY_CODE" use="required">

<xs:annotation>

<xs:documentation>Concerned MS country or EU</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="countryLabel" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Country name (in English)</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="year" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Contract year to which the dataset is related. Example: If a dataset is uploaded in

december 2009 to cover contractual obligations for year 2010, then contract year must be set to 2010.</xs:documentation>

Page 4: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 4 / 32 Document Version 0.00 dated 17/06/2015

</xs:annotation>

</xs:attribute>

<xs:attribute name="revision" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>The revision number for that year, starting at '01'. A new revision number corresponds

to changes in the content (new document, modified document, modified applicability conditions...) </xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="date" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>This is the latest date the contractor has checked the validity of the data content. It

must not to be confused with the date of dataset upload : if a dataset is uploaded to correct a technical issue but the contractor does not

check that the data is current, then the date must remain untouched.

Format: yyyy-mm-dd format.

</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="updateFilename" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Name of the XML file built according to the naming conventions (cfr

text)</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="providerId" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Provider identifier that will be communicated by DG Trade</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="providerName" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Name of the provider</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="providerEmail" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Email address of the provider that will be used for sending confirmation message or for

notifying problems.</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="version" type="xs:string" use="required">

<xs:annotation>

Page 5: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015

<xs:documentation>Version number.</xs:documentation>

</xs:annotation>

</xs:attribute>

</xs:complexType>

</xs:element>

<xs:element name="euMapping">

<xs:annotation>

<xs:documentation>Defines the mapping between the unique document identifier and the document filename at EU

level</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="docId"/>

<xs:element ref="docType"/>

<xs:element ref="docOrder" minOccurs="0"/>

<xs:element ref="docLabelList"/>

<xs:element ref="docFileName"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="docId" type="xs:string">

<xs:annotation>

<xs:documentation>Unique document identifier to be used for referencing overview, general and specific requirements

documents. </xs:documentation>

</xs:annotation>

</xs:element>

<xs:element name="docType" type="xs:string">

<xs:annotation>

<xs:documentation>Specifies the document type: ("O"= overview, "G"=general requirement, "S"=specific

requirement)</xs:documentation>

</xs:annotation>

</xs:element>

<xs:element name="docOrder" type="xs:integer">

<xs:annotation>

<xs:documentation>Defines the order of the document when displayed. Required for the general requirement documents and

optional for other documents.</xs:documentation>

</xs:annotation>

</xs:element>

<xs:element name="docLabelList">

<xs:annotation>

<xs:documentation>List of document labels in the different languages (EN,ES,FR,PT, AR, RU)</xs:documentation>

Page 6: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 6 / 32 Document Version 0.00 dated 17/06/2015

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="docLabel" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="docLabel">

<xs:annotation>

<xs:documentation>Document label (in the specified language) used as document title and displayed on the EH web site in

the "Requirement List" page</xs:documentation>

</xs:annotation>

<xs:complexType mixed="true">

<xs:attribute name="lang" type="xs:string" use="required"/>

</xs:complexType>

</xs:element>

<xs:element name="docFileName" type="xs:string">

<xs:annotation>

<xs:documentation>document filename, if the page needs to be displayed in another language than English, a suffix must

be added accordingly : _es for Spanish, _fr for French and _pt for Portuguese. Example : gen_freidoc_eu_010_0612_es.htm</xs:documentation>

</xs:annotation>

</xs:element>

</xs:schema>

1.2. importRequirements.xsd

<?xml version="1.0" encoding="UTF-8"?>

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:include schemaLocation="types.xsd"/>

<xs:element name="importRequirements">

<xs:annotation>

<xs:documentation>Top level element.</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="updateInfo"/>

<xs:element ref="modifSummary"/>

Page 7: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 7 / 32 Document Version 0.00 dated 17/06/2015

<xs:element ref="overview"/>

<xs:element ref="generalRequirementList"/>

<xs:element ref="specificRequirementList"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="updateInfo">

<xs:annotation>

<xs:documentation>contains the characteristics of the update file such as the provider identifier</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:attribute name="countryId" type="COUNTRY_CODE" use="required">

<xs:annotation>

<xs:documentation>Concerned MS country or EU</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="countryLabel" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Country name (in English)</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="year" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Contract year to which the dataset is related. Example: If a dataset is uploaded in

december 2009 to cover contractual obligations for year 2010, then contract year must be set to 2010.</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="revision" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>The revision number for that year, starting at '01'. A new revision number corresponds

to changes in the content (new document, modified document, modified applicability conditions...) </xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="date" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>This is the latest date the contractor has checked the validity of the data content. It

must not to be confused with the date of dataset upload : if a dataset is uploaded to correct a technical issue but the contractor does not

check that the data is current, then the date must remain untouched.

Format: yyyy-mm-dd format.

</xs:documentation>

</xs:annotation>

Page 8: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 8 / 32 Document Version 0.00 dated 17/06/2015

</xs:attribute>

<xs:attribute name="updateFilename" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Name of the XML file built according to the naming conventions (cfr

text)</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="providerId" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Provider identifier that will be communicated by DG Trade</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="providerName" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Name of the provider</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="providerEmail" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Email address of the provider that will be used for sending confirmation message or for

notifying problems.</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="version" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Version number.</xs:documentation>

</xs:annotation>

</xs:attribute>

</xs:complexType>

</xs:element>

<xs:element name="modifSummary" type="xs:string">

<xs:annotation>

<xs:documentation>Summary of the modifications introduced in the current revision with comparison to the previous

revision. This info is for internal use only and is not displayed on the public web site</xs:documentation>

</xs:annotation>

</xs:element>

<xs:element name="overview">

<xs:annotation>

<xs:documentation>Unique document identifier referencing the overview document.</xs:documentation>

</xs:annotation>

<xs:complexType>

Page 9: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 9 / 32 Document Version 0.00 dated 17/06/2015

<xs:attribute name="docId" type="xs:string" use="required"/>

</xs:complexType>

</xs:element>

<xs:element name="generalRequirementList">

<xs:annotation>

<xs:documentation>List of general requirements.</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="generalRequirement" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="generalRequirement">

<xs:annotation>

<xs:documentation>Unique document identifier referencing general requirement documents.</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:attribute name="docId" type="xs:string" use="required"/>

</xs:complexType>

</xs:element>

<xs:element name="specificRequirementList">

<xs:annotation>

<xs:documentation>List of specific requirements.</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="specificRequirement" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="specificRequirement">

<xs:annotation>

<xs:documentation>Defines a specific requirement, the concerned product codes with possible exceptions and if required,

the concerned list of origins with possible exceptions at the country level.</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="productList"/>

</xs:sequence>

<xs:attribute name="docId" type="xs:string" use="required"/>

Page 10: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 10 / 32 Document Version 0.00 dated 17/06/2015

</xs:complexType>

</xs:element>

<xs:element name="productList">

<xs:annotation>

<xs:documentation>List of product codes concerned by the specific requirement</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="product" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="product">

<xs:annotation>

<xs:documentation>product identified by its 8-digit CN code</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="exceptionList" minOccurs="0"/>

<xs:element ref="originList" minOccurs="0"/>

</xs:sequence>

<xs:attribute name="cnCode" type="CN_CODE" use="required"/>

</xs:complexType>

</xs:element>

<xs:element name="exceptionList">

<xs:annotation>

<xs:documentation>List exceptions at the product level</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="exception" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="exception">

<xs:annotation>

<xs:documentation>Informal text for specifying exceptions at the product level. This element is used when the specif

requirement is not applicable to all products classified under the 8-digit CN code</xs:documentation>

</xs:annotation>

<xs:complexType mixed="true">

<xs:attribute name="lang" type="xs:string" use="required"/>

Page 11: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 11 / 32 Document Version 0.00 dated 17/06/2015

</xs:complexType>

</xs:element>

<xs:element name="originList">

<xs:annotation>

<xs:documentation>List of origin countries used for specifying countries concerned by the specific requirement OR for

excluding countries</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="origin" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="origin">

<xs:annotation>

<xs:documentation>Defines an origin country, the applicability of the specific requirement for the concerned product

code with possible exceptions</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="originCode"/>

<xs:element ref="excluded"/>

<xs:element ref="originExceptionList" minOccurs="0"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="originCode" type="COUNTRY_CODE">

<xs:annotation>

<xs:documentation>IS0 2A country code or "zz" for specifying all origins</xs:documentation>

</xs:annotation>

</xs:element>

<xs:element name="excluded" type="xs:boolean">

<xs:annotation>

<xs:documentation>flag = 0 means the specific requirement is applicable to this origin for the concerned product;

flag=1 means the specific requirement is NOT applicable to this origin for the concerned product.</xs:documentation>

</xs:annotation>

</xs:element>

<xs:element name="originExceptionList">

<xs:annotation>

<xs:documentation>List of exceptions at the product level. This element is used when the specif requirement is not

applicable to all products classified under the 8-digit CN code for the concerned origin.</xs:documentation>

Page 12: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 12 / 32 Document Version 0.00 dated 17/06/2015

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="originException" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="originException">

<xs:annotation>

<xs:documentation>Informal text for specifying exceptions at the product level. This element is used when the specif

requirement is not applicable to all products classified under the 8-digit CN code for the concerned origin.</xs:documentation>

</xs:annotation>

<xs:complexType mixed="true">

<xs:attribute name="lang" type="xs:string" use="required"/>

</xs:complexType>

</xs:element>

</xs:schema>

1.3. msMappingList.xsd

<?xml version="1.0" encoding="UTF-8"?>

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:include schemaLocation="types.xsd"/>

<xs:element name="msMappingList">

<xs:annotation>

<xs:documentation>List of document mappings at the MS level</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="updateInfo"/>

<xs:element ref="msMapping" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="updateInfo">

<xs:annotation>

<xs:documentation>contains the charactheristics of the update file such as the provider identifier</xs:documentation>

</xs:annotation>

<xs:complexType>

Page 13: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 13 / 32 Document Version 0.00 dated 17/06/2015

<xs:attribute name="countryId" type="COUNTRY_CODE" use="required">

<xs:annotation>

<xs:documentation>Concerned MS country or EU</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="countryLabel" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Country name (in English)</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="year" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Contract year to which the dataset is related. Example: If a dataset is uploaded in

december 2009 to cover contractual obligations for year 2010, then contract year must be set to 2010.</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="revision" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>The revision number for that year, starting at '01'. A new revision number corresponds

to changes in the content (new document, modified document, modified applicability conditions...) </xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="date" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>This is the latest date the contractor has checked the validity of the data content. It

must not to be confused with the date of dataset upload : if a dataset is uploaded to correct a technical issue but the contractor does not

check that the data is current, then the date must remain untouched.

Format: yyyy-mm-dd format.

</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="updateFilename" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Name of the XML file built according to the naming conventions (cfr

text)</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="providerId" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Provider identifier that will be communicated by DG Trade</xs:documentation>

</xs:annotation>

Page 14: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 14 / 32 Document Version 0.00 dated 17/06/2015

</xs:attribute>

<xs:attribute name="providerName" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Name of the provider</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="providerEmail" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Email address of the provider that will be used for sending confirmation message or for

notifying problems.</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="version" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Version number.</xs:documentation>

</xs:annotation>

</xs:attribute>

</xs:complexType>

</xs:element>

<xs:element name="msMapping">

<xs:annotation>

<xs:documentation>Defines the mapping between the unique document identifier and the document filename at EU

level</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="docId"/>

<xs:element ref="docFileName"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="docId" type="xs:string">

<xs:annotation>

<xs:documentation>Unique document identifier to be used for referencing overview, general and specific requirements

documents. </xs:documentation>

</xs:annotation>

</xs:element>

<xs:element name="docFileName" type="xs:string">

<xs:annotation>

<xs:documentation>document filename</xs:documentation>

</xs:annotation>

Page 15: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 15 / 32 Document Version 0.00 dated 17/06/2015

</xs:element>

</xs:schema>

2. LOT 2 - INTERNAL TAXATION

2.1. internalTaxes.xsd

<?xml version="1.0" encoding="UTF-8"?>

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:include schemaLocation="types.xsd"/>

<xs:element name="internalTaxes">

<xs:annotation>

<xs:documentation>The list of internal taxes</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="updateInfo"/>

<xs:element ref="taxType"/>

<xs:element ref="modifSummary"/>

<xs:element ref="overviewFile"/>

<xs:element ref="taxList" minOccurs="0"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="updateInfo">

<xs:annotation>

<xs:documentation>contains the charactheristics of the update file such as the provider identifier and the member

state concerned.</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:attribute name="countryId" type="COUNTRY_CODE" use="required">

<xs:annotation>

<xs:documentation>Concerned MS country or EU</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="countryLabel" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Country name (in English)</xs:documentation>

Page 16: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 16 / 32 Document Version 0.00 dated 17/06/2015

</xs:annotation>

</xs:attribute>

<xs:attribute name="year" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Contract year to which the dataset is related. Example: If a dataset is uploaded in

December 2013 to cover contractual obligations for year 2014, then contract year must be set to 2014.</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="revision" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>The revision number for that year, starting at '01'. A new revision number corresponds

to changes in the content (new document, modified document, modified applicability conditions...) </xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="date" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>This is the latest date the contractor has checked the validity of the data content. It

must not to be confused with the date of dataset upload : if a dataset is uploaded to correct a technical issue but the contractor does not

check that the data is current, then the date must remain untouched.

Format: yyyy-mm-dd format.

</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="updateFilename" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Name of the XML file built according to the naming conventions (cfr

text)</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="providerId" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Provider identifier that will be communicated by DG Trade</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="providerName" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Name of the provider</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="providerEmail" type="xs:string" use="required">

<xs:annotation>

Page 17: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 17 / 32 Document Version 0.00 dated 17/06/2015

<xs:documentation>Email address of the provider that will be used for sending confirmation message or for

notifying problems.</xs:documentation>

</xs:annotation>

</xs:attribute>

<xs:attribute name="version" type="xs:string" use="required">

<xs:annotation>

<xs:documentation>Version number.</xs:documentation>

</xs:annotation>

</xs:attribute>

</xs:complexType>

</xs:element>

<xs:element name="modifSummary" type="xs:string">

<xs:annotation>

<xs:documentation>Summary of the modifications introduced in the current revision with comparison to the previous

revision. This info is for internal use only and is not displayed on the public web site</xs:documentation>

</xs:annotation>

</xs:element>

<xs:element name="taxType" type="xs:string">

<xs:annotation>

<xs:documentation>The type of tax listed in this file (ex: VAT/EXC).</xs:documentation>

</xs:annotation>

</xs:element>

<xs:element name="overviewFile" type="xs:string">

<xs:annotation>

<xs:documentation>Overview filename for the concern country (eu/ms) and the concerned tax type

(vat/excises)</xs:documentation>

</xs:annotation>

</xs:element>

<xs:element name="taxList">

<xs:annotation>

<xs:documentation>The list of taxes</xs:documentation>

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="tax" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="tax">

<xs:annotation>

<xs:documentation>Link a product code to the concerned tax</xs:documentation>

Page 18: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 18 / 32 Document Version 0.00 dated 17/06/2015

</xs:annotation>

<xs:complexType>

<xs:sequence>

<xs:element ref="taxRate"/>

<xs:element ref="noteFile" minOccurs="0"/>

</xs:sequence>

<xs:attribute name="cnCode" type="CN_CODE" use="required"/>

</xs:complexType>

</xs:element>

<xs:element name="taxRate" type="xs:string">

<xs:annotation>

<xs:documentation>The tax rate</xs:documentation>

</xs:annotation>

</xs:element>

<xs:element name="noteFile" type="xs:string">

<xs:annotation>

<xs:documentation>filename for additional information (note). If the page needs to be displayed in another language

than English, a suffix must be added accordingly : _es for Spanish, _fr for French and _pt for Portuguese. Example :

note_vat_at_001_0704_es.htm</xs:documentation>

</xs:annotation>

</xs:element>

</xs:schema>

3. LOT 1-2 COMMON

3.1. types.xsd

a {

color:#4D90AF;

text-decoration:none;

font-weight:bold;

}

body {

font-family: Arial;

font-size: 12px

}

Page 19: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 19 / 32 Document Version 0.00 dated 17/06/2015

p.eh_DocTitle {

font-size: 16pt;

font-family: Arial;

font-weight:bold

}

p.eh_Title1 {

font-size: 16pt;

font-family: Arial;

font-weight:bold

}

p.eh_Title2 {

font-size: 14pt;

font-family: Arial;

font-weight:bold

}

p.eh_Title3 {

font-size: 12pt;

font-family: Arial;

font-weight:bold

}

p.eh_ListTitle {

font-size: 12pt;

font-family: Arial;

text-decoration:underline

}

.eh_Italic {

font-style:italic

}

.eh_Bold {

font-weight:bold

}

p.eh_Indented1 {

font-size: 10pt;

font-family: Arial;

margin-left:4

}

p.eh_Indented2 {

font-size: 10pt;

font-family: Arial;

margin-left:15

Page 20: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 20 / 32 Document Version 0.00 dated 17/06/2015

}

p {

font-size: 10pt;

font-family: Arial;

}

th.eh_TableTitle {

font-size: 10pt;

font-family: Arial;

font-weight:bold

}

td.eh_TableContent {

font-family: Arial;

font-size: 12px;

list-style-type:disc

}

p.eh_Footnote {

font-size: 10pt;

font-family: Arial;

}

li.eh_Abbreviations {

font-size: 10pt;

font-family: Arial;

list-style-type:square

}

p.eh_AbbreviationsTitle {

font-size: 10pt;

font-family: Arial;

color:#000080

}

li.eh_TocItem {

font-size: 10pt;

font-family: Arial;

}

li {

font-size: 10pt;

font-family: Arial;

}

p.eh_TocTitle

{

font-size: 10pt;

font-family: Arial;

Page 21: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 21 / 32 Document Version 0.00 dated 17/06/2015

font-weight:bold

}

p.eh_ChangesTitle {

font-size: 10pt;

font-family: Arial;

text-transform:capitalize;

font-style:oblique;

font-weight:bold

}

.eh_OJReference {

font-size: 10pt;

font-family: Arial;

color:#000080

}

.eh_LegalReference {

font-size: 10pt;

font-family: Arial;

color:#000080

}

.eh_RevDate {

font-size: 10pt;

font-family: Arial;

font-weight:bold

}

#eh_tax_footnote p {

font-size: 70%;

margin-left: 1em;

margin-top: 6px;

}

#eh_tax_footnote li {

font-size: 70%;

margin-left: 1em;

}

#eh_tax_footnote li ul li {

font-size: 100%;

margin-left: 1em;

list-style-type: circle;

}

#eh_tax_footnote ul {

margin-left: 2em;

Page 22: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 22 / 32 Document Version 0.00 dated 17/06/2015

margin-top: 0px;

margin-bottom: 0px;

}

#eh_tax_footnote p.eh_DocTitle {

font-size: 85%;

font-weight: bold;

font-style: oblique;

margin-top: 20px;

margin-bottom: 6px;

}

#eh_tax_footnote p.eh_Title1 {

font-size: 80%;

font-weight: bold;

margin-top: 12px;

margin-bottom: 6px;

}

#eh_tax_footnote p.eh_Title2 {

font-size: 80%;

font-weight: bold;

margin-top: 12px;

margin-bottom: 6px;

}

#eh_tax_footnote p.eh_Title3 {

font-size: 70%;

font-weight: bold;

margin-top: 12px;

margin-bottom: 6px;

}

#eh_tax_footnote p.eh_ListTitle {

text-decoration: underline;

}

#eh_tax_footnote .eh_Italic {

font-style: italic;

}

#eh_tax_footnote .eh_Bold {

font-weight: bold;

}

#eh_tax_footnote p.eh_Indented1 {

margin-left: 1em;

margin-bottom: 0px;

}

Page 23: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 23 / 32 Document Version 0.00 dated 17/06/2015

#eh_tax_footnote p.eh_Indented2 {

margin-left: 2em;

margin-bottom: 0px;

}

#eh_tax_footnote th.eh_TableTitle {

font-weight: bold;

}

#eh_tax_footnote td.eh_TableContent {

list-style-type: disc;

}

#eh_tax_footnote p.eh_Footnote {

}

#eh_tax_footnote li.eh_Abbreviations {

list-style-type: square;

}

#eh_tax_footnote p.eh_AbbreviationsTitle {

color: #000080;

}

#eh_tax_footnote li.eh_TocItem {

}

#eh_tax_footnote p.eh_TocTitle {

font-weight: bold;

}

#eh_tax_footnote p.eh_ChangesTitle {

text-transform: capitalize;

font-style: oblique;

font-weight: bold;

}

#eh_tax_footnote .eh_OJReference {

font-size: 100%;

color:#000080;

}

#eh_tax_footnote .eh_LegalReference {

font-size: 100%;

color:#000080;

}

#eh_tax_footnote .eh_RevDate {

font-weight:bold;

}

Page 24: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 24 / 32 Document Version 0.00 dated 17/06/2015

3.2. example.html

<span>

<!-- <p class="eh_DocTitle">Portugal - Overview of Import Procedures</p> -->

<p class="eh_RevDate">Latest Revision Date (dd/mm/yyyy): 01/03/2009</p><br/>

<p class="eh_Title1">Additional information for Portugal</p>

<p class="eh_Title2">Table of contents:</p>

<table width="36%" border="0">

<tr>

<td height="205"> <ol>

<li><a href="#IntegrationintotheEU">Integration into the EU</a></li>

<li><a href="#Currency">Currency</a></li>

<li><a href="#CustomsAdministration"> Customs Administration</a></li>

<li><a href="#ImportProcedure">Import Procedure</a></li>

<li><a href="#Traderegimeandimportlicences">Trade Regime and Import Licences</a></li>

<li><a href="#AnimalHealth">Animal Health</a></li>

<li><a href="#PlantHealth">Plant Health</a></li>

<li><a href="#FoodandFeedSafety">Food and Feed Safety and Marketing Standards</a></li>

<li><a href="#EnvironmentProtection"> Environment Protection</a></li>

<li><a href="#TechnicalStandardisation"> Technical Standardisation</a></li>

<li><a href="#Packaging">Packaging</a></li>

<li><a href="#Labelling"> Labelling </a></li>

</ol></td>

</tr>

</table>

<p class="eh_Title1">1. Integration into the EU<a name="IntegrationintotheEU" id="IntegrationintotheEU"></a></p>

<p class="eh_Indented1"> Portugal has been a member of the EU since 1986. After

a transitional period, it fully integrated into the EU in 1993. Portugal comprises

the territory on the Continent of Europe as is historically defined and the

archipelagos of the Azores and Madeira.</p>

<p class="eh_Title1">2. Currency<a name="Currency" id="Currency"></a></p>

<p class="eh_Indented1">Since 1 January 2002 the euro (EUR) is the official currency.</p>

<p class="eh_Title1">3. Customs Administration<a name="CustomsAdministration" id="CustomsAdministration"></a></p>

<p class="eh_Indented1">The administrative body in charge of controlling products

imported from third countries is:</p>

<p class="eh_Indented2"><span class="eh_Italic">Direc&ccedil;&atilde;o-Geral das

Alf&acirc;ndegas e dos Impostos Especiais sobre o Consumo &#8211; DGAIEC </span>(Directorate-General

Page 25: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 25 / 32 Document Version 0.00 dated 17/06/2015

of Customs and Excise Duties)</p>

<p class="eh_Indented2">Rua da Alf&acirc;ndega, n&ordm; 5, r/c<br />

P-1149-006 Lisboa<br />

Tel: (+351) 21 881 37 00<br />

Fax: (+351) 21 881 38 18<br />

Website: <a href="http://www.dgaiec.min-financas.pt" onClick="NewTaxesWindow('http://www.dgaiec.min-financas.pt');return

false;">http://www.dgaiec.min-financas.pt</a></p>

<p class="eh_Title1">4. Import Procedure<a name="ImportProcedure" id="ImportProcedure"></a></p>

<p class="eh_Indented1">The Single Administrative Document - SAD (<span class="eh_Italic">Documento

Administrativo &Uacute;nico - DAU</span>) must be drawn up in Portuguese and

may be submitted to the Customs authorities either by the importer or his representative.

The representation may be:</p>

<ul>

<li><span class="eh_Bold">direct representation</span>: representatives act

in the name of, and on behalf of, another person. According to the Portuguese

legislation only custom brokers can act as direct representatives and they

have subsidiary responsibility;</li>

<li><span class="eh_Bold">indirect representation</span>: representatives

act in their own name but on behalf of another person. Customs brokers, freight

forwarders, and carriers can act as indirect representatives and they have

joint responsibility.</li>

</ul>

<p class="eh_Title3">Free zones </p>

<p class="eh_Indented1">In Portugal the only free zone is the Free Zone of Madeira.</p>

<p class="eh_Italic">Gabinete da Zona Franca da Madeira</p>

<p class="eh_Indented2">Edif&iacute;cio do Governo Regional<br />

P-9004-527 Funchal<br />

Madeira - Portugal<br />

Tel: (+351) 291 212100<br />

Fax: (+351) 291 237260<br />

E-mail:<a href="mailto:[email protected]"> [email protected]<br />

</a>Website: <a href="http://srpf.gov-madeira.pt/gzfm/" onClick="NewTaxesWindow('http://srpf.gov-madeira.pt/gzfm/');return

false;">http://srpf.gov-madeira.pt/gzfm/</a></p>

<p class="eh_Title1">5. Trade Regime and Import Licences<a name="Traderegimeandimportlicences" id="Traderegimeandimportlicences"></a></p>

<p class="eh_Indented1">The body in charge of issuing import licences for products

subject to trade regimes is:</p>

<p class="eh_Indented2"><span class="eh_Italic">Minist&eacute;rio das Finan&ccedil;as</span>

Page 26: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 26 / 32 Document Version 0.00 dated 17/06/2015

(Ministry of Finance)<br />

<span class="eh_Italic">Direc&ccedil;&atilde;o Geral das Alf&acirc;ndegas

e dos Impostos Especiais sobre o Consumo</span> - <span class="eh_Italic">DGAIEC</span>

(Directorate General of Customs and Excise)<br />

<span class="eh_Italic">Direc&ccedil;&atilde;o de Servi&ccedil;os de Licenciamiento

</span> - (Directorate of Trade Licenses)<br />

<br />

Rua Terreiro do Trigo, Edificio da Alf&acirc;ndega<br />

P-1149-006 Lisboa<br />

Tel: (+351) 21 881 41 63<br />

Fax: (+351) 21 881 42 61<br />

E-mail: <a href="mailto:[email protected]">[email protected]</a>

<br />

Website:<a href="http://www.dgaiec.min-financas.pt" onClick="NewTaxesWindow('http://www.dgaiec.min-financas.pt');return

false;">http://www.dgaiec.min-financas.pt</a></p>

<p class="eh_Title1">6. Animal Health<a name="AnimalHealth" id="AnimalHealth"></a></p>

<p class="eh_Indented1">Inspections of live animals and products of animal origin

are carried out at the designated Border Inspections Posts (BIPs). The authority

in charge of these inspections is:</p>

<p class="eh_Indented2"><span class="eh_Italic">Minist&eacute;rio da Agricultura,

do Desenvolvimento Rural e das Pescas</span> (Ministry of Agriculture, Rural

Development and Fisheries)<br />

<span class="eh_Italic"> Direc&ccedil;&atilde;o-Geral de Veterin&aacute;ria

- DGV </span>(Directorate-General of Veterinary Services)</p>

<p class="eh_Indented2"> Largo da Academia Nacional de Belas Artes, 2<br />

P-1249-105 Lisboa<br />

Tel: (+351) 21 323 95 00<br />

Fax: (+351) 21 21 346 35 18<br />

E-mail: <a href="mailto:[email protected]">[email protected]</a><br />

Website: <a href="http://www.dgv.min-agricultura.pt/" onClick="NewTaxesWindow('http://www.dgv.min-agricultura.pt/');return

false;">http://www.dgv.min-agricultura.pt/</a></p>

<p class="eh_Title1">7. Plant Health<a name="PlantHealth" id="PlantHealth"></a></p>

<p class="eh_Indented1">The competent authority for phytosanitary inspections is:</p>

<p class="eh_Indented2"><span class="eh_Italic">Minist&eacute;rio da Agricultura,

do Desenvolvimento Rural e das Pescas</span> (Ministry of Agriculture, Rural

Development and Fisheries)<br />

Page 27: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 27 / 32 Document Version 0.00 dated 17/06/2015

<span class="eh_Italic"></span><span class="eh_Italic">Direc&ccedil;&atilde;o-Geral

de Agricultura e Desenvolvimento Rural - DGADR</span> (Directorate-General for

Agriculture and Rural Development) <br />

<span class="eh_Italic">Direc&ccedil;&atilde;o de Servi&ccedil;os de Fitossanidade

e de Materiais de Multiplica&ccedil;&atilde;o de Plantas</span> (Directorate

for Phytosanitary and Plant Propagation Materials Services)</p>

<p class="eh_Indented2"> Edif&iacute;cio 1-Tapada da Ajuda<br />

<span class="eh_Italic"></span>P-1349-018 Lisboa <br />

Tel: (+351) 21 361 32 53<br />

Fax: (+351) 21 361 32 77<br />

E-mail: <a href="mailto:[email protected]">[email protected]</a><br />

Website: <a href="http://www.dgadr.min-agricultura.pt/" onClick="NewTaxesWindow('http://www.dgadr.min-agricultura.pt/');return

false;">http://www.dgadr.min-agricultura.pt</a></p>

<p class="eh_Title1">8. Food and Feed Safety and Marketing Standards<a name="FoodandFeedSafety" id="FoodandFeedSafety"></a></p>

<p class="eh_Indented1">Health controls on <span class="eh_Bold">foodstuffs of

non-animal origin </span>are carried out at the designated Border Inspection

Posts and other control points situated along the border. Customs authorities

cannot release the goods unless they are accompanied by a Health Certificate

issued by the competent authority with a favourable opinion.</p>

<p class="eh_Indented1">The Direc&ccedil;&atilde;o-Geral de Veterin&aacute;ria -

DGV is the competent authority for official inspections in the field of animal

nutrition and food safety. The responsibility for the implementation of the

control is also devolved to the Direc&ccedil;&otilde;es Regionais de Agricultura

e Pescas (Regional Agricultural and Fishery Directorates):<br />

<a href="http://portal.min-

agricultura.pt/portal/page/portal/MADRP/PT/servicos/ministerio/Contactos/adm_directa_estado_servicos_perifericos"

onClick="NewTaxesWindow('http://portal.min-

agricultura.pt/portal/page/portal/MADRP/PT/servicos/ministerio/Contactos/adm_directa_estado_servicos_perifericos');return

false;">http://portal.min-

agricultura.pt/portal/page/portal/MADRP/PT/servicos/ministerio/Contactos/adm_directa_estado_servicos_perifericos</a></p>

<p class="eh_Indented1"> The competent authority for <span class="eh_Bold">marketing

standards </span>on agricultural and fishery products is:</p>

<p class="eh_Indented2"> <span class="eh_Italic">Minist&eacute;rio da Agricultura,

do Desenvolvimento Rural e das Pescas</span> (Ministry of Agriculture, Rural

Development and Fisheries)<br />

<span class="eh_Italic">Direc&ccedil;&atilde;o-Geral de Veterin&aacute;ria</span>-

DGV (Directorate General of Veterinary Services)</p>

<p class="eh_Indented2"> Largo da Academia Nacional de Belas Artes, 2<br />

Page 28: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 28 / 32 Document Version 0.00 dated 17/06/2015

P-1249-105 Lisboa<br />

Tel: (+351) 21 323 95 00<br />

Fax: (+351) 21 346 35 18<br />

E-mail: <a href="mailto:[email protected]">[email protected]</a><br />

Website: <a href="http://www.dgv.min-agricultura.pt" onClick="NewTaxesWindow('http://www.dgv.min-agricultura.pt');return

false;">http://www.dgv.min-agricultura.pt</a></p>

<p class="eh_Indented1">This certificate guarantees that the goods conform to the

respective quality standards. Inspections are carried out either at their own

premises or at the designated Border Inspection Posts.</p>

<p class="eh_Title1">9. Environment Protection<a name="EnvironmentProtection" id="EnvironmentProtection"></a></p>

<p class="eh_Title3">A. Ozone-depleting substances and products and control of

chemical products</p>

<p class="eh_Indented1">The authority responsible for controlling imports of ozone-depleting

substances (ODS), as well as for the control of imports of chemical products

is:</p>

<p class="eh_Indented2"> <span class="eh_Italic">Minist&eacute;rio do Ambiente,

do Ordenamento do Territ&oacute;rio e do Desenvolvimento Regional</span> (Ministry

for the Environment, Spatial Planning and Regional Development)<br />

<span class="eh_Italic">Ag&ecirc;ncia Portuguesa do Ambiente</span> (Portuguese

Environment Agency)</p>

<p class="eh_Indented2"> Rua da Murgueira 9/9A<br />

P-2611-865 Amadora<br />

Tel: (+351) 21 472 82 00 <br />

Fax: (+351) 21 471 90 74 <br />

E-mail: <a href="mailto:[email protected]"></a><a href="mailto:[email protected]">[email protected]</a>

<br />

Website: <a href="http://www.apambiente.pt/" onClick="NewTaxesWindow('http://www.apambiente.pt/');return

false;">http://www.apambiente.pt/</a></p>

<p class="eh_Title3">B. Imports of endangered species (CITES)</p>

<p class="eh_Indented1">The imports of endangered species of fauna and flora under

the Washington Convention are controlled by:</p>

<p class="eh_Indented2"><span class="eh_Italic">Minist&eacute;rio do Ambiente,

Ordenamento do Territ&oacute;rio e do Desenvolvimento Regional</span> (Ministry

for the Environment, Spatial Planning and Regional Development)<br />

<span class="eh_Italic">Instituto de Conserva&ccedil;&atilde;o da Natureza

e da Biodiversidade- </span><span class="eh_Italic">ICNB </span>(Institute

of Nature Conservation and Biodiversity)<br />

Page 29: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 29 / 32 Document Version 0.00 dated 17/06/2015

<span class="eh_Italic">Divis&atilde;o de Aplica&ccedil;&atilde;o de Conven&ccedil;&otilde;es</span>

(Division for the implementation of International Conventions)</p>

<p class="eh_Indented2">Rua de Santa Marta, 55<br />

P-1150-294 Lisboa<br />

Tel: (+351) 21 350 79 00<br />

Fax: (+351) 21 350 79 86<br />

E-mail: <a href="mailto:[email protected]">[email protected]</a> <br />

Website:<a href="http://portal.icnb.pt/ICNPortal/vPT/" onClick="NewTaxesWindow('http://portal.icnb.pt/ICNPortal/vPT/');return false;">

http://portal.icnb.pt/ICNPortal/vPT/</a></p>

<p class="eh_Title3">C. Control of trade in chemical products </p>

<p class="eh_Indented2">The competent authority for the control of imports of <span class="eh_Bold">dangerous

chemicals </span>is:</p>

<p class="eh_Indented2"><span class="eh_Italic">Minist&eacute;rio do Ambiente,

do Ordenamento do Territ&oacute;rio e do Desenvolvimento Regional</span> (Ministry

for the Environment, Spatial Planning and Regional Development)<br />

<span class="eh_Italic">Ag&ecirc;ncia Portuguesa do Ambiente</span> (Portuguese

Environment Agency)</p>

<p class="eh_Indented2"> Rua da Murgueira 9/9A<br />

P-2611-865 Amadora<br />

Tel: (+351) 21 472 82 34<br />

Fax: (+351) 21 472 82 31<br />

E-mail: <a href="mailto:[email protected]"></a><a href="mailto:[email protected]">[email protected]</a>

<br />

Website: <a href="http://www.apambiente.pt/Paginas/default.aspx"

onClick="NewTaxesWindow('http://www.apambiente.pt/Paginas/default.aspx');return false;">http://www.apambiente.pt/</a></p>

<p class="eh_Indented2">In addition, the Environment Agency has responsibilities

regarding imports of <span class="eh_Bold">persistent organic pollutants</span>.</p>

<p class="eh_Indented2">In the field of <span class="eh_Bold">detergents</span>

and <span class="eh_Bold">fertilisers</span>, the competent authority is:</p>

<p class="eh_Indented2"><span class="eh_Italic">Minist&eacute;rio da Economia

e da Inova&ccedil;&atilde;o </span>(Ministry of Economy and Innovation) <br />

<span class="eh_Italic">Direc&ccedil;&atilde;o-Geral das Actividades Econ&oacute;micas</span>

(Directorate General of Economic Affairs) </p>

<p class="eh_Indented2">Avenida Visconde Valmor, 72<br />

PT-1069-041 Lisboa<br />

Page 30: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 30 / 32 Document Version 0.00 dated 17/06/2015

Tel: (+351) 21 791 91 00<br />

Fax: (+351) 21 796 51 58<br />

E-mail: <a href="mailto:[email protected]">[email protected]</a>&nbsp;&nbsp;<br />

Website: <a href="http://www.dgae.min-economia.pt" onClick="NewTaxesWindow('http://www.dgae.min-economia.pt');return

false;">http://www.dgae.min-economia.pt</a><strong>&nbsp;</strong></p>

<p class="eh_Title3">D. Control and management of waste</p>

<p class="eh_Indented2"><span class="eh_Italic">Minist&eacute;rio do Ambiente,

Ordenamento do Territ&oacute;rio e Desenvolvimento Regional</span> (Ministry

for the Environment, Territorial Planning and Regional Development)<br />

<span class="eh_Italic">Ag&ecirc;ncia Portuguesa do Ambiente</span> (Portuguese

Environment Agency) </p>

<p class="eh_Indented2">Rua de Murgueira,9 &#8211; 9A<br />

PT-264411-865 Amadora<br />

Tel: (+351) 21 472 82 00<br />

Fax: (+351) 21 471 90 74<br />

E-mail: <a href="mailto:[email protected]">[email protected]</a><br />

Website: <a href="http://www.iambiente.pt/APA/index.htm" onClick="NewTaxesWindow('http://www.iambiente.pt/APA/index.htm');return

false;">http://www.iambiente.pt/APA/index.htm</a></p>

<p class="eh_Indented2"><span class="eh_Bold">Packaging waste</span> </p>

<p class="eh_Indented2">The competent body for <span class="eh_Bold">standards

</span>is:</p>

<p class="eh_Indented2"><span class="eh_Italic">Instituto Portugu&ecirc;s da Qualidade

- IPQ</span> (Portuguese Institute of Quality)</p>

<p class="eh_Indented2"> Rua Ant&oacute;nio Gi&atilde;o, 2<br />

PT-2829-513 Caparica<br />

Tel: (+351) 21 294 81 00 / 21 294 81 02<br />

Fax: (+351) 21 294 81 01 / 21 294 82 23<br />

E-mail: <a href="mailto:[email protected]">[email protected]</a> / <a href="mailto:[email protected]">[email protected]</a><br />

Website: <a href="http://www.ipq.pt/" onClick="NewTaxesWindow('http://www.ipq.pt/');return false;">http://www.ipq.pt</a></p>

<p class="eh_Title1">10. Technical Standardisation <a name="TechnicalStandardisation" id="TechnicalStandardisation"></a></p>

<p class="eh_Title3">A. National standardisation body</p>

<p class="eh_Indented2">There are several authorities responsible for checking that

technical products (such as industrial products, medical devices, radio and

telecommunications terminal equipment, vehicles, etc) placed on the Portuguese

market meet the standardisation requirements.</p>

<p class="eh_Indented2">Identification and contact details of these authorities

Page 31: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 31 / 32 Document Version 0.00 dated 17/06/2015

are listed for the group of products analysed in the respective Specific Requirement.</p>

<p class="eh_Title3">B. Standardisation body</p>

<p class="eh_Indented2"><span class="eh_Italic">Instituto Portugu&ecirc;s da Qualidade

- IPQ</span> (Portuguese Institute of Quality)<br />

<br />

Rua Ant&oacute;nio Gi&atilde;o, 2<br />

P-2829-513 Caparica<br />

Tel: (+351) 21 294 81 00<br />

Fax: (+351) 21 294 81 01<br />

E-mail: <a href="mailto:[email protected]">[email protected]<br />

</a>Website: <a href="http://www.ipq.pt/" onClick="NewTaxesWindow('http://www.ipq.pt/');return false;">http://www.ipq.pt/</a></p>

<p class="eh_Title3">C. Notified bodies </p>

<p class="eh_Indented2">There are several notified bodies in charge of the attestation

of compliance of products with the technical standards (conformity assessment),

each body is responsible of certain groups of products under a specific directive.</p>

<p class="eh_Title1">11. Packaging<a name="Packaging" id="Packaging"></a></p>

<p class="eh_Indented1">The competent authority in relation with <span class="eh_Bold">package

sizing</span> is: </p>

<p class="eh_Indented2"><span class="eh_Italic">Instituto Portugu&ecirc;s da Qualidade

- IPQ</span> (Portuguese Institute of Quality)<br />

<span class="eh_Italic">Servi&ccedil;o de Metrologia </span>(Metrology Department)</p>

<p class="eh_Indented2"> Rua Ant&oacute;nio Gi&atilde;o, 2<br />

P-2829-513 Caparica<br />

Tel: (+351) 21 294 81 00 / 21 294 81 02<br />

Fax: (+351) 21 294 81 01 / 21 294 82 23<br />

E-mail: <a href="mailto:[email protected]">[email protected]</a> / <a href="mailto:[email protected]">[email protected]</a><br />

Website: <a href="http://www.ipq.pt/" onClick="NewTaxesWindow('http://www.ipq.pt/');return false;">http://www.ipq.pt</a></p>

<p class="eh_Indented1">Competent authority in relation with <span class="eh_Bold">materials

and articles intended to come into contact with foodstuffs</span>:</p>

<p class="eh_Indented2"><span class="eh_Italic">Minist&eacute;rio da Agricultura,

do Desenvolvimento Rural e das Pescas </span>(Ministry of Agriculture, Rural

Development and Fisheries)<br />

<span class="eh_Italic">Gabinete de Planeamento e Pol&iacute;ticas &#8211;

GPP</span> (Planning and Policy Office)</p>

<p class="eh_Indented2"> Rua Padre Ant&oacute;nio Vieira, 1 - 8&ordm; <br />

PT-1099-073 Lisboa<br />

Page 32: XML Schema Definition files and examples · Tender 2015 - Schema definition files - Page 5 / 32 Document Version 0.00 dated 17/06/2015 Version number

Tender 2015 - Schema definition files - Page 32 / 32 Document Version 0.00 dated 17/06/2015

Tel: (+351) 21 381 93 00 <br />

Fax: (+351) 213 876 635<br />

E-mail: <a href="mailto:[email protected]">[email protected]</a><br />

Website: <a href="http://www.gpp.pt" onClick="NewTaxesWindow('http://www.gpp.pt');return false;">http://www.gpp.pt</a></p>

<p class="eh_Title1">12. Labelling<a name="Labelling" id="Labelling"></a></p>

<p class="eh_Indented1">The contents of the labelling must be at least in Portuguese.

In line with the EU legislation, there are specific provisions for the different

types of products (foodstuffs, textiles, cosmetic products, medical devices,

etc.)</p>

</span>

3.3. eh_styles.css

<?xml version="1.0"?>

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:simpleType name="CN_CODE">

<xs:restriction base="xs:string">

<xs:pattern value="[0-9]{8}"/>

</xs:restriction>

</xs:simpleType>

<xs:simpleType name="COUNTRY_CODE">

<xs:restriction base="xs:string">

<xs:length value="2"/>

<xs:pattern value="([a-z]){2}"/>

</xs:restriction>

</xs:simpleType>

</xs:schema>