first commit

This commit is contained in:
root
2026-03-14 09:42:12 +00:00
commit 0adbd20c2c
10991 changed files with 1646955 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.

View File

@@ -0,0 +1,22 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.model import fields
from trytond.pool import PoolMeta
class InvoiceEdocumentStart(metaclass=PoolMeta):
__name__ = 'account.invoice.edocument.start'
@classmethod
def __setup__(cls):
super().__setup__()
cls.format.selection.append(
('edocument.uncefact.invoice', "UN/CEFACT"))
@fields.depends('format')
def get_templates(self):
templates = super().get_templates()
if self.format == 'edocument.uncefact.invoice':
templates.append(('16B-CII', '16B-CII'))
return templates

View File

@@ -0,0 +1,10 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data depends="account_invoice">
<record model="ir.action.wizard" id="account_invoice.edocument">
<field name="active" eval="True"/>
</record>
</data>
</tryton>

View File

@@ -0,0 +1,218 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import functools
import os
from decimal import Decimal
import genshi
import genshi.template
# XXX fix: https://genshi.edgewall.org/ticket/582
from genshi.template.astutil import ASTCodeGenerator, ASTTransformer
from trytond.model import Model
from trytond.pool import Pool
from trytond.rpc import RPC
from trytond.tools import cached_property, slugify
from trytond.transaction import Transaction
if not hasattr(ASTCodeGenerator, 'visit_NameConstant'):
def visit_NameConstant(self, node):
if node.value is None:
self._write('None')
elif node.value is True:
self._write('True')
elif node.value is False:
self._write('False')
else:
raise Exception("Unknown NameConstant %r" % (node.value,))
ASTCodeGenerator.visit_NameConstant = visit_NameConstant
if not hasattr(ASTTransformer, 'visit_NameConstant'):
# Re-use visit_Name because _clone is deleted
ASTTransformer.visit_NameConstant = ASTTransformer.visit_Name
loader = genshi.template.TemplateLoader(
os.path.join(os.path.dirname(__file__), 'template'),
auto_reload=True)
def has_goods_assets(func):
@functools.wraps(func)
def wrapper(self):
if any(l.product.type in {'goods', 'assets'}
for l in self.invoice.lines if l.product):
return func(self)
return wrapper
def remove_comment(stream):
for kind, data, pos in stream:
if kind is genshi.core.COMMENT:
continue
yield kind, data, pos
class Invoice(Model):
__name__ = 'edocument.uncefact.invoice'
__slots__ = ('invoice',)
@classmethod
def __setup__(cls):
super().__setup__()
cls.__rpc__.update({
'render': RPC(instantiate=0),
})
def __init__(self, invoice):
pool = Pool()
Invoice = pool.get('account.invoice')
super().__init__()
if int(invoice) >= 0:
invoice = Invoice(int(invoice))
with Transaction().set_context(language=invoice.party_lang):
self.invoice = invoice.__class__(int(invoice))
else:
self.invoice = invoice
def render(self, template):
if self.invoice.state not in {'posted', 'paid'}:
raise ValueError("Invoice must be posted")
tmpl = self._get_template(template)
if not tmpl:
raise NotImplementedError
return (tmpl.generate(
this=self,
Decimal=Decimal)
.filter(remove_comment)
.render()
.encode('utf-8'))
def _get_template(self, version):
return loader.load(os.path.join(version, 'CrossIndustryInvoice.xml'))
@property
def filename(self):
return f'{slugify(self.invoice.rec_name)}.xml'
@cached_property
def type_code(self):
if self.invoice.type == 'out':
if all(l.amount < 0 for l in self.lines):
return '381'
else:
return '380'
else:
if all(l.amount < 0 for l in self.lines):
return '261'
else:
return '389'
@cached_property
def type_sign(self):
"The sign of the quantity depending of the type code"
if self.type_code in {'381', '261'}:
return -1
return 1
@cached_property
def lines(self):
return [l for l in self.invoice.lines if l.type == 'line']
@cached_property
def seller_trade_party(self):
if self.invoice.type == 'out':
return self.invoice.company.party
else:
return self.invoice.party
@cached_property
def seller_trade_address(self):
if self.invoice.type == 'out':
return self.invoice.company.party.address_get('invoice')
else:
return self.invoice.invoice_address
@cached_property
def seller_trade_tax_identifier(self):
if self.invoice.type == 'out':
return self.invoice.tax_identifier
else:
return self.invoice.party_tax_identifier
@cached_property
def buyer_trade_party(self):
if self.invoice.type == 'out':
return self.invoice.party
else:
return self.invoice.company.party
@cached_property
def buyer_trade_address(self):
if self.invoice.type == 'out':
return self.invoice.invoice_address
else:
return None
@cached_property
def buyer_trade_tax_identifier(self):
if self.invoice.type == 'out':
return self.invoice.party_tax_identifier
else:
return self.invoice.tax_identifier
@cached_property
@has_goods_assets
def ship_to_trade_party(self):
if self.invoice.type == 'out':
if getattr(self.invoice, 'sales', None):
sale = self.invoice.sales[0] # XXX
if sale.shipment_party != self.buyer_trade_party:
return sale.shipment_party
else:
if getattr(self.invoice, 'purchases', None):
purchase = self.invoice.purchases[0] # XXX
address = purchase.warehouse.address
if (address and address.party != self.buyer_trade_party):
return address.party
@cached_property
@has_goods_assets
def ship_to_trade_address(self):
if self.invoice.type == 'out':
if getattr(self.invoice, 'sales', None):
sale = self.invoice.sales[0] # XXX
if sale.shipment_party != self.buyer_trade_party:
return sale.shipment_address
else:
if getattr(self.invoice, 'purchases', None):
purchase = self.invoice.purchases[0] # XXX
address = purchase.warehouse.address
if (address and address.party != self.buyer_trade_party):
return address
@cached_property
@has_goods_assets
def ship_from_trade_party(self):
if self.invoice.type == 'out':
if getattr(self.invoice, 'sales', None):
sale = self.invoice.sales[0] # XXX
address = sale.warehouse.address
if address and address.party != self.seller_trade_party:
return address.shipment_party
@cached_property
@has_goods_assets
def ship_from_trade_address(self):
if self.invoice.type == 'out':
if getattr(self.invoice, 'sales', None):
sale = self.invoice.sales[0] # XXX
address = sale.warehouse.address
if address and address.party != self.seller_trade_party:
return address
@cached_property
def payment_reference(self):
return self.invoice.number
@classmethod
def party_legal_ids(cls, party, address):
return []

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr "Factura digital UN/CEFACT"
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr "UN/CEFACT"

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr "E-Dokument UN/CEFACT Rechnung"
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr "UN/CEFACT"

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr "Factura digital UN/CEFACT"
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr "UN/CEFACT"

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,12 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
#, fuzzy
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr "E-dokument UN/CEFACT arve"
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,12 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
#, fuzzy
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr "واحد سندالکترونیکی/ صورتحساب CEFACT"
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr "Facture e-document UN/CEFACT"
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr "UN/CEFACT"

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,12 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
#, fuzzy
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr "Fattura elettronica UN/CEFACT"
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,12 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
#, fuzzy
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr "EDocument UN/CEFACT sąskaita faktūra"
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr "EDocument Uncefact factuur"
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr "VN/CEFACT"

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr "Factura Edocument Uncefact"
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,12 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
#, fuzzy
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr "eDokument UN/CEFACT Račun"
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,11 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "model:edocument.uncefact.invoice,string:"
msgid "Edocument Uncefact Invoice"
msgstr ""
msgctxt "selection:account.invoice.edocument.start,format:"
msgid "UN/CEFACT"
msgstr ""

View File

@@ -0,0 +1,140 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<rsm:CrossIndustryInvoice
xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100"
xmlns:qdt="urn:un:unece:uncefact:data:standard:QualifiedDataType:100"
xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100"
xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<py:def function="DateTime(value)">
<udt:DateTimeString>${value.strftime('%Y%m%d')}</udt:DateTimeString>
</py:def>
<py:def function="TradeParty(party, address=None, tax_identifier=None)">
<ram:Name>${party.name}</ram:Name>
<ram:SpecifiedLegalOrganization>
<py:for each="id, attrs in this.party_legal_ids(party, address)">
<ram:ID py:attrs="attrs">${id}</ram:ID>
</py:for>
</ram:SpecifiedLegalOrganization>
<ram:PostalTradeAddress py:if="address">${TradeAddress(address)}</ram:PostalTradeAddress>
<ram:SpecifiedTaxRegistration py:if="tax_identifier and tax_identifier.type == 'eu_vat'">
<ram:ID schemeID='VA'>${tax_identifier.code}</ram:ID>
</ram:SpecifiedTaxRegistration>
</py:def>
<py:def function="TradeAddress(address)">
<ram:PostcodeCode py:if="address.postal_code">${address.postal_code}</ram:PostcodeCode>
<ram:BuildingName py:if="address.building_name">${address.building_name}</ram:BuildingName>
<py:with vars="lines = (address.street_unstructured or '').splitlines()">
<ram:LineOne py:if="len(lines) > 0">${lines[0]}</ram:LineOne>
<ram:LineTwo py:if="len(lines) > 1">${lines[1]}</ram:LineTwo>
<ram:LineThree py:if="len(lines) > 2">${lines[2]}</ram:LineThree>
<ram:LineFour py:if="len(lines) > 3">${lines[3]}</ram:LineFour>
<ram:LineFive py:if="len(lines) > 4">${lines[4]}</ram:LineFive>
</py:with>
<ram:StreetName py:if="address.street_name">${address.street_name}</ram:StreetName>
<ram:CityName py:if="address.city">${address.city}</ram:CityName>
<ram:CountryID py:if="address.country">${address.country.code}</ram:CountryID>
<ram:CountryName py:if="address.country">${address.country.name}</ram:CountryName>
<ram:CountrySubDivisionID py:if="address.subdivision">${address.subdivision.code}</ram:CountrySubDivisionID>
<ram:CountrySubDivisionName py:if="address.subdivision">${address.subdivision.name}</ram:CountrySubDivisionName>
<ram:BuildingNumber py:if="address.building_number">${address.building_number}</ram:BuildingNumber>
</py:def>
<py:def function="TradeTax(tax, amount=None, base=None)">
<ram:ApplicableTradeTax>
<ram:CalculatedAmount py:if="amount" py:attrs="{'currencyID': this.invoice.currency.code}">${amount * this.type_sign}</ram:CalculatedAmount>
<ram:TypeCode py:if="tax.unece_code">${tax.unece_code}</ram:TypeCode>
<ram:ExemptionReason py:if="tax.legal_notice">${tax.legal_notice}</ram:ExemptionReason>
<ram:BasisAmount py:if="base">${base * this.type_sign}</ram:BasisAmount>
<ram:CategoryCode py:if="tax.unece_category_code">${tax.unece_category_code}</ram:CategoryCode>
<ram:RateApplicablePercent py:if="tax.type == 'percentage'">${format((tax.rate * 100).normalize(), 'f')}</ram:RateApplicablePercent>
</ram:ApplicableTradeTax>
</py:def>
<rsm:ExchangedDocumentContext>
</rsm:ExchangedDocumentContext>
<rsm:ExchangedDocument>
<ram:ID>${this.invoice.number}</ram:ID>
<ram:TypeCode>${this.type_code}</ram:TypeCode>
<ram:IssueDateTime>
${DateTime(this.invoice.invoice_date)}
</ram:IssueDateTime>
</rsm:ExchangedDocument>
<rsm:SupplyChainTradeTransaction>
<ram:IncludedSupplyChainTradeLineItem py:for="line_id, line in enumerate(this.lines, 1)">
<ram:AssociatedDocumentLineDocument>
<ram:LineID>${line_id}</ram:LineID>
</ram:AssociatedDocumentLineDocument>
<ram:SpecifiedTradeProduct py:if="line.product">
<ram:ID py:if="line.product.code">${line.product.code}</ram:ID>
<ram:Name>${line.product.name}</ram:Name>
<ram:Description py:if="line.description">${line.description}</ram:Description>
</ram:SpecifiedTradeProduct>
<ram:SpecifiedLineTradeAgreement>
<ram:NetPriceProductTradePrice>
<ram:ChargeAmount py:attrs="{'currencyID': this.invoice.currency.code}">${this.invoice.currency.round(line.unit_price)}</ram:ChargeAmount>
</ram:NetPriceProductTradePrice>
</ram:SpecifiedLineTradeAgreement>
<ram:SpecifiedLineTradeDelivery>
<ram:BilledQuantity py:attrs="{'unitCode': line.unit.unece_code} if line.unit and line.unit.unece_code else {}">${format(Decimal(str(line.quantity * this.type_sign)), 'f')}</ram:BilledQuantity>
</ram:SpecifiedLineTradeDelivery>
<ram:SpecifiedLineTradeSettlement>
<py:for each="tax in line.invoice_taxes">
${TradeTax(tax.tax)}
</py:for>
<ram:SpecifiedTradeSettlementLineMonetarySummation>
<ram:LineTotalAmount py:attrs="{'currencyID': this.invoice.currency.code}">${line.amount}</ram:LineTotalAmount>
</ram:SpecifiedTradeSettlementLineMonetarySummation>
</ram:SpecifiedLineTradeSettlement>
</ram:IncludedSupplyChainTradeLineItem>
<ram:ApplicableHeaderTradeAgreement>
<ram:SellerTradeParty>
${TradeParty(this.seller_trade_party, this.seller_trade_address, this.seller_trade_tax_identifier)}
</ram:SellerTradeParty>
<ram:BuyerTradeParty>
${TradeParty(this.buyer_trade_party, this.buyer_trade_address, this.buyer_trade_tax_identifier)}
</ram:BuyerTradeParty>
<ram:SellerOrderReferencedDocument py:if="this.invoice.type == 'in'">
<ram:IssuerAssignedID>${this.invoice.reference}</ram:IssuerAssignedID>
</ram:SellerOrderReferencedDocument>
<ram:BuyerOrderReferencedDocument py:if="this.invoice.type == 'out'">
<ram:IssuerAssignedID>${this.invoice.reference}</ram:IssuerAssignedID>
</ram:BuyerOrderReferencedDocument>
</ram:ApplicableHeaderTradeAgreement>
<ram:ApplicableHeaderTradeDelivery>
<ram:ShipToTradeParty py:if="this.ship_to_trade_party">
${TradeParty(this.ship_to_trade_party, this.ship_to_trade_address)}
</ram:ShipToTradeParty>
<ram:ShipFromTradeParty py:if="this.ship_from_trade_party">
${TradeParty(this.ship_from_trade_party, this.ship_from_trade_address)}
</ram:ShipFromTradeParty>
</ram:ApplicableHeaderTradeDelivery>
<ram:ApplicableHeaderTradeSettlement>
<ram:PaymentReference>${this.payment_reference}</ram:PaymentReference>
<ram:InvoiceCurrencyCode>${this.invoice.currency.code}</ram:InvoiceCurrencyCode>
<ram:InvoiceDateTime>
${DateTime(this.invoice.invoice_date)}
</ram:InvoiceDateTime>
<ram:SpecifiedTradeSettlementPaymentMeans>
<ram:TypeCode>1</ram:TypeCode> <!-- Instrument not defined -->
</ram:SpecifiedTradeSettlementPaymentMeans>
<py:for each="tax in this.invoice.taxes">
${TradeTax(tax.tax, tax.amount, tax.base)}
</py:for>
<ram:SpecifiedTradePaymentTerms py:for="line in this.invoice.lines_to_pay">
<ram:Description py:if="this.invoice.payment_term and this.invoice.payment_term.description">${this.invoice.payment_term.description}</ram:Description>
<ram:DueDateDateTime>
${DateTime(line.maturity_date)}
</ram:DueDateDateTime>
<ram:PartialPaymentAmount py:attrs="{'currencyID': this.invoice.currency.code}">${(line.amount_second_currency or (line.debit - line.credit)) * this.type_sign}</ram:PartialPaymentAmount>
</ram:SpecifiedTradePaymentTerms>
<ram:SpecifiedTradeSettlementHeaderMonetarySummation>
<ram:LineTotalAmount py:attrs="{'currencyID': this.invoice.currency.code}">${this.invoice.untaxed_amount * this.type_sign}</ram:LineTotalAmount>
<ram:TaxBasisTotalAmount py:attrs="{'currencyID': this.invoice.currency.code}">${this.invoice.untaxed_amount * this.type_sign}</ram:TaxBasisTotalAmount>
<ram:TaxTotalAmount py:attrs="{'currencyID': this.invoice.currency.code}">${this.invoice.tax_amount * this.type_sign}</ram:TaxTotalAmount>
<ram:GrandTotalAmount py:attrs="{'currencyID': this.invoice.currency.code}">${this.invoice.total_amount * this.type_sign}</ram:GrandTotalAmount>
<ram:DuePayableAmount py:attrs="{'currencyID': this.invoice.currency.code}">${this.invoice.amount_to_pay * this.type_sign}</ram:DuePayableAmount>
</ram:SpecifiedTradeSettlementHeaderMonetarySummation>
</ram:ApplicableHeaderTradeSettlement>
</rsm:SupplyChainTradeTransaction>
</rsm:CrossIndustryInvoice>

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2016 sp1 (x64) (http://www.altova.com) by Gerhard Heemskerk (Gerhard Heemskerk Consultancy) -->
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm210AccountingE501="urn:un:unece:uncefact:codelist:standard:EDIFICAS-EU:AccountingAccountType:D11A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:EDIFICAS-EU:AccountingAccountType:D11A" elementFormDefault="qualified" version="1.0">
<xsd:simpleType name="AccountingAccountTypeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm210AccountingE601="urn:un:unece:uncefact:codelist:standard:EDIFICAS-EU:AccountingAmountType:D11A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:EDIFICAS-EU:AccountingAmountType:D11A" elementFormDefault="qualified" version="1.0">
<xsd:simpleType name="AccountingAmountTypeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,198 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm5ISO42173A="urn:un:unece:uncefact:codelist:standard:ISO:ISO3AlphaCurrencyCode:2012-08-31" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:ISO:ISO3AlphaCurrencyCode:2012-08-31" elementFormDefault="qualified" version="9.7">
<xsd:simpleType name="ISO3AlphaCurrencyCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="AED"/>
<xsd:enumeration value="AFN"/>
<xsd:enumeration value="ALL"/>
<xsd:enumeration value="AMD"/>
<xsd:enumeration value="ANG"/>
<xsd:enumeration value="AOA"/>
<xsd:enumeration value="ARS"/>
<xsd:enumeration value="AUD"/>
<xsd:enumeration value="AWG"/>
<xsd:enumeration value="AZN"/>
<xsd:enumeration value="BAM"/>
<xsd:enumeration value="BBD"/>
<xsd:enumeration value="BDT"/>
<xsd:enumeration value="BGN"/>
<xsd:enumeration value="BHD"/>
<xsd:enumeration value="BIF"/>
<xsd:enumeration value="BMD"/>
<xsd:enumeration value="BND"/>
<xsd:enumeration value="BOB"/>
<xsd:enumeration value="BOV"/>
<xsd:enumeration value="BRL"/>
<xsd:enumeration value="BSD"/>
<xsd:enumeration value="BTN"/>
<xsd:enumeration value="BWP"/>
<xsd:enumeration value="BYN"/>
<xsd:enumeration value="BZD"/>
<xsd:enumeration value="CAD"/>
<xsd:enumeration value="CDF"/>
<xsd:enumeration value="CHE"/>
<xsd:enumeration value="CHF"/>
<xsd:enumeration value="CHW"/>
<xsd:enumeration value="CLF"/>
<xsd:enumeration value="CLP"/>
<xsd:enumeration value="CNY"/>
<xsd:enumeration value="COP"/>
<xsd:enumeration value="COU"/>
<xsd:enumeration value="CRC"/>
<xsd:enumeration value="CUC"/>
<xsd:enumeration value="CUP"/>
<xsd:enumeration value="CVE"/>
<xsd:enumeration value="CZK"/>
<xsd:enumeration value="DJF"/>
<xsd:enumeration value="DKK"/>
<xsd:enumeration value="DOP"/>
<xsd:enumeration value="DZD"/>
<xsd:enumeration value="EGP"/>
<xsd:enumeration value="ERN"/>
<xsd:enumeration value="ETB"/>
<xsd:enumeration value="EUR"/>
<xsd:enumeration value="FJD"/>
<xsd:enumeration value="FKP"/>
<xsd:enumeration value="GBP"/>
<xsd:enumeration value="GEL"/>
<xsd:enumeration value="GHS"/>
<xsd:enumeration value="GIP"/>
<xsd:enumeration value="GMD"/>
<xsd:enumeration value="GNF"/>
<xsd:enumeration value="GTQ"/>
<xsd:enumeration value="GYD"/>
<xsd:enumeration value="HKD"/>
<xsd:enumeration value="HNL"/>
<xsd:enumeration value="HRK"/>
<xsd:enumeration value="HTG"/>
<xsd:enumeration value="HUF"/>
<xsd:enumeration value="IDR"/>
<xsd:enumeration value="ILS"/>
<xsd:enumeration value="INR"/>
<xsd:enumeration value="IQD"/>
<xsd:enumeration value="IRR"/>
<xsd:enumeration value="ISK"/>
<xsd:enumeration value="JMD"/>
<xsd:enumeration value="JOD"/>
<xsd:enumeration value="JPY"/>
<xsd:enumeration value="KES"/>
<xsd:enumeration value="KGS"/>
<xsd:enumeration value="KHR"/>
<xsd:enumeration value="KMF"/>
<xsd:enumeration value="KPW"/>
<xsd:enumeration value="KRW"/>
<xsd:enumeration value="KWD"/>
<xsd:enumeration value="KYD"/>
<xsd:enumeration value="KZT"/>
<xsd:enumeration value="LAK"/>
<xsd:enumeration value="LBP"/>
<xsd:enumeration value="LKR"/>
<xsd:enumeration value="LRD"/>
<xsd:enumeration value="LSL"/>
<xsd:enumeration value="LYD"/>
<xsd:enumeration value="MAD"/>
<xsd:enumeration value="MDL"/>
<xsd:enumeration value="MGA"/>
<xsd:enumeration value="MKD"/>
<xsd:enumeration value="MMK"/>
<xsd:enumeration value="MNT"/>
<xsd:enumeration value="MOP"/>
<xsd:enumeration value="MRO"/>
<xsd:enumeration value="MUR"/>
<xsd:enumeration value="MVR"/>
<xsd:enumeration value="MWK"/>
<xsd:enumeration value="MXN"/>
<xsd:enumeration value="MXV"/>
<xsd:enumeration value="MYR"/>
<xsd:enumeration value="MZN"/>
<xsd:enumeration value="NAD"/>
<xsd:enumeration value="NGN"/>
<xsd:enumeration value="NIO"/>
<xsd:enumeration value="NOK"/>
<xsd:enumeration value="NPR"/>
<xsd:enumeration value="NZD"/>
<xsd:enumeration value="OMR"/>
<xsd:enumeration value="PAB"/>
<xsd:enumeration value="PEN"/>
<xsd:enumeration value="PGK"/>
<xsd:enumeration value="PHP"/>
<xsd:enumeration value="PKR"/>
<xsd:enumeration value="PLN"/>
<xsd:enumeration value="PYG"/>
<xsd:enumeration value="QAR"/>
<xsd:enumeration value="RON"/>
<xsd:enumeration value="RSD"/>
<xsd:enumeration value="RUB"/>
<xsd:enumeration value="RWF"/>
<xsd:enumeration value="SAR"/>
<xsd:enumeration value="SBD"/>
<xsd:enumeration value="SCR"/>
<xsd:enumeration value="SDG"/>
<xsd:enumeration value="SEK"/>
<xsd:enumeration value="SGD"/>
<xsd:enumeration value="SHP"/>
<xsd:enumeration value="SLL"/>
<xsd:enumeration value="SOS"/>
<xsd:enumeration value="SRD"/>
<xsd:enumeration value="SSP"/>
<xsd:enumeration value="STD"/>
<xsd:enumeration value="SVC"/>
<xsd:enumeration value="SYP"/>
<xsd:enumeration value="SZL"/>
<xsd:enumeration value="THB"/>
<xsd:enumeration value="TJS"/>
<xsd:enumeration value="TMT"/>
<xsd:enumeration value="TND"/>
<xsd:enumeration value="TOP"/>
<xsd:enumeration value="TRY"/>
<xsd:enumeration value="TTD"/>
<xsd:enumeration value="TWD"/>
<xsd:enumeration value="TZS"/>
<xsd:enumeration value="UAH"/>
<xsd:enumeration value="UGX"/>
<xsd:enumeration value="USD"/>
<xsd:enumeration value="USN"/>
<xsd:enumeration value="UYI"/>
<xsd:enumeration value="UYU"/>
<xsd:enumeration value="UZS"/>
<xsd:enumeration value="VEF"/>
<xsd:enumeration value="VND"/>
<xsd:enumeration value="VUV"/>
<xsd:enumeration value="WST"/>
<xsd:enumeration value="XAF"/>
<xsd:enumeration value="XAG"/>
<xsd:enumeration value="XAU"/>
<xsd:enumeration value="XBA"/>
<xsd:enumeration value="XBB"/>
<xsd:enumeration value="XBC"/>
<xsd:enumeration value="XBD"/>
<xsd:enumeration value="XCD"/>
<xsd:enumeration value="XDR"/>
<xsd:enumeration value="XOF"/>
<xsd:enumeration value="XPD"/>
<xsd:enumeration value="XPF"/>
<xsd:enumeration value="XPT"/>
<xsd:enumeration value="XSU"/>
<xsd:enumeration value="XTS"/>
<xsd:enumeration value="XUA"/>
<xsd:enumeration value="XXX"/>
<xsd:enumeration value="YER"/>
<xsd:enumeration value="ZAR"/>
<xsd:enumeration value="ZMW"/>
<xsd:enumeration value="ZWL"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,138 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm61229LineStatusCode="urn:un:unece:uncefact:codelist:standard:UNECE:ActionCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:ActionCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="ActionCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="30"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
<xsd:enumeration value="40"/>
<xsd:enumeration value="41"/>
<xsd:enumeration value="42"/>
<xsd:enumeration value="43"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="46"/>
<xsd:enumeration value="47"/>
<xsd:enumeration value="48"/>
<xsd:enumeration value="49"/>
<xsd:enumeration value="50"/>
<xsd:enumeration value="51"/>
<xsd:enumeration value="52"/>
<xsd:enumeration value="53"/>
<xsd:enumeration value="54"/>
<xsd:enumeration value="55"/>
<xsd:enumeration value="56"/>
<xsd:enumeration value="57"/>
<xsd:enumeration value="58"/>
<xsd:enumeration value="59"/>
<xsd:enumeration value="60"/>
<xsd:enumeration value="61"/>
<xsd:enumeration value="62"/>
<xsd:enumeration value="63"/>
<xsd:enumeration value="64"/>
<xsd:enumeration value="65"/>
<xsd:enumeration value="66"/>
<xsd:enumeration value="67"/>
<xsd:enumeration value="68"/>
<xsd:enumeration value="69"/>
<xsd:enumeration value="70"/>
<xsd:enumeration value="71"/>
<xsd:enumeration value="72"/>
<xsd:enumeration value="73"/>
<xsd:enumeration value="74"/>
<xsd:enumeration value="75"/>
<xsd:enumeration value="76"/>
<xsd:enumeration value="77"/>
<xsd:enumeration value="78"/>
<xsd:enumeration value="79"/>
<xsd:enumeration value="80"/>
<xsd:enumeration value="81"/>
<xsd:enumeration value="82"/>
<xsd:enumeration value="83"/>
<xsd:enumeration value="84"/>
<xsd:enumeration value="85"/>
<xsd:enumeration value="86"/>
<xsd:enumeration value="87"/>
<xsd:enumeration value="88"/>
<xsd:enumeration value="89"/>
<xsd:enumeration value="90"/>
<xsd:enumeration value="91"/>
<xsd:enumeration value="92"/>
<xsd:enumeration value="93"/>
<xsd:enumeration value="94"/>
<xsd:enumeration value="95"/>
<xsd:enumeration value="96"/>
<xsd:enumeration value="97"/>
<xsd:enumeration value="98"/>
<xsd:enumeration value="99"/>
<xsd:enumeration value="100"/>
<xsd:enumeration value="101"/>
<xsd:enumeration value="102"/>
<xsd:enumeration value="103"/>
<xsd:enumeration value="104"/>
<xsd:enumeration value="105"/>
<xsd:enumeration value="106"/>
<xsd:enumeration value="107"/>
<xsd:enumeration value="108"/>
<xsd:enumeration value="109"/>
<xsd:enumeration value="110"/>
<xsd:enumeration value="111"/>
<xsd:enumeration value="112"/>
<xsd:enumeration value="113"/>
<xsd:enumeration value="114"/>
<xsd:enumeration value="115"/>
<xsd:enumeration value="116"/>
<xsd:enumeration value="117"/>
<xsd:enumeration value="118"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2016 sp1 (x64) (http://www.altova.com) by Gerhard Heemskerk (Gerhard Heemskerk Consultancy) -->
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm64465="urn:un:unece:uncefact:codelist:standard:UNECE:AdjustmentReasonDescriptionCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:AdjustmentReasonDescriptionCode:D16A" elementFormDefault="qualified" version="1.3">
<xsd:simpleType name="AdjustmentReasonDescriptionCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="30"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
<xsd:enumeration value="40"/>
<xsd:enumeration value="41"/>
<xsd:enumeration value="42"/>
<xsd:enumeration value="43"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="46"/>
<xsd:enumeration value="47"/>
<xsd:enumeration value="48"/>
<xsd:enumeration value="49"/>
<xsd:enumeration value="50"/>
<xsd:enumeration value="51"/>
<xsd:enumeration value="52"/>
<xsd:enumeration value="53"/>
<xsd:enumeration value="54"/>
<xsd:enumeration value="55"/>
<xsd:enumeration value="56"/>
<xsd:enumeration value="57"/>
<xsd:enumeration value="58"/>
<xsd:enumeration value="59"/>
<xsd:enumeration value="60"/>
<xsd:enumeration value="61"/>
<xsd:enumeration value="62"/>
<xsd:enumeration value="63"/>
<xsd:enumeration value="64"/>
<xsd:enumeration value="65"/>
<xsd:enumeration value="66"/>
<xsd:enumeration value="67"/>
<xsd:enumeration value="68"/>
<xsd:enumeration value="69"/>
<xsd:enumeration value="70"/>
<xsd:enumeration value="71"/>
<xsd:enumeration value="72"/>
<xsd:enumeration value="73"/>
<xsd:enumeration value="74"/>
<xsd:enumeration value="75"/>
<xsd:enumeration value="76"/>
<xsd:enumeration value="77"/>
<xsd:enumeration value="78"/>
<xsd:enumeration value="79"/>
<xsd:enumeration value="80"/>
<xsd:enumeration value="81"/>
<xsd:enumeration value="82"/>
<xsd:enumeration value="83"/>
<xsd:enumeration value="84"/>
<xsd:enumeration value="85"/>
<xsd:enumeration value="86"/>
<xsd:enumeration value="87"/>
<xsd:enumeration value="88"/>
<xsd:enumeration value="89"/>
<xsd:enumeration value="90"/>
<xsd:enumeration value="91"/>
<xsd:enumeration value="92"/>
<xsd:enumeration value="93"/>
<xsd:enumeration value="94"/>
<xsd:enumeration value="95"/>
<xsd:enumeration value="96"/>
<xsd:enumeration value="97"/>
<xsd:enumeration value="98"/>
<xsd:enumeration value="99"/>
<xsd:enumeration value="100"/>
<xsd:enumeration value="101"/>
<xsd:enumeration value="102"/>
<xsd:enumeration value="103"/>
<xsd:enumeration value="104"/>
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,124 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm65189AllowanceChargeID="urn:un:unece:uncefact:codelist:standard:UNECE:AllowanceChargeIdentificationCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:AllowanceChargeIdentificationCode:D16A" elementFormDefault="qualified" version="1.3">
<xsd:simpleType name="AllowanceChargeIdentificationCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="30"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
<xsd:enumeration value="40"/>
<xsd:enumeration value="41"/>
<xsd:enumeration value="42"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="46"/>
<xsd:enumeration value="47"/>
<xsd:enumeration value="48"/>
<xsd:enumeration value="49"/>
<xsd:enumeration value="50"/>
<xsd:enumeration value="51"/>
<xsd:enumeration value="52"/>
<xsd:enumeration value="53"/>
<xsd:enumeration value="54"/>
<xsd:enumeration value="55"/>
<xsd:enumeration value="56"/>
<xsd:enumeration value="57"/>
<xsd:enumeration value="58"/>
<xsd:enumeration value="59"/>
<xsd:enumeration value="60"/>
<xsd:enumeration value="61"/>
<xsd:enumeration value="62"/>
<xsd:enumeration value="63"/>
<xsd:enumeration value="64"/>
<xsd:enumeration value="65"/>
<xsd:enumeration value="66"/>
<xsd:enumeration value="67"/>
<xsd:enumeration value="68"/>
<xsd:enumeration value="69"/>
<xsd:enumeration value="70"/>
<xsd:enumeration value="71"/>
<xsd:enumeration value="72"/>
<xsd:enumeration value="73"/>
<xsd:enumeration value="74"/>
<xsd:enumeration value="75"/>
<xsd:enumeration value="76"/>
<xsd:enumeration value="77"/>
<xsd:enumeration value="78"/>
<xsd:enumeration value="79"/>
<xsd:enumeration value="80"/>
<xsd:enumeration value="81"/>
<xsd:enumeration value="82"/>
<xsd:enumeration value="83"/>
<xsd:enumeration value="84"/>
<xsd:enumeration value="85"/>
<xsd:enumeration value="86"/>
<xsd:enumeration value="87"/>
<xsd:enumeration value="88"/>
<xsd:enumeration value="89"/>
<xsd:enumeration value="90"/>
<xsd:enumeration value="91"/>
<xsd:enumeration value="92"/>
<xsd:enumeration value="93"/>
<xsd:enumeration value="94"/>
<xsd:enumeration value="95"/>
<xsd:enumeration value="96"/>
<xsd:enumeration value="97"/>
<xsd:enumeration value="98"/>
<xsd:enumeration value="99"/>
<xsd:enumeration value="100"/>
<xsd:enumeration value="101"/>
<xsd:enumeration value="102"/>
<xsd:enumeration value="103"/>
<xsd:enumeration value="104"/>
<xsd:enumeration value="105"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,125 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm64465AllowanceChargeReasonCode="urn:un:unece:uncefact:codelist:standard:UNECE:AllowanceChargeReasonCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:AllowanceChargeReasonCode:D16A" elementFormDefault="qualified" version="1.3">
<xsd:simpleType name="AllowanceChargeReasonCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="30"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
<xsd:enumeration value="40"/>
<xsd:enumeration value="41"/>
<xsd:enumeration value="42"/>
<xsd:enumeration value="43"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="46"/>
<xsd:enumeration value="47"/>
<xsd:enumeration value="48"/>
<xsd:enumeration value="49"/>
<xsd:enumeration value="50"/>
<xsd:enumeration value="51"/>
<xsd:enumeration value="52"/>
<xsd:enumeration value="53"/>
<xsd:enumeration value="54"/>
<xsd:enumeration value="55"/>
<xsd:enumeration value="56"/>
<xsd:enumeration value="57"/>
<xsd:enumeration value="58"/>
<xsd:enumeration value="59"/>
<xsd:enumeration value="60"/>
<xsd:enumeration value="61"/>
<xsd:enumeration value="62"/>
<xsd:enumeration value="63"/>
<xsd:enumeration value="64"/>
<xsd:enumeration value="65"/>
<xsd:enumeration value="66"/>
<xsd:enumeration value="67"/>
<xsd:enumeration value="68"/>
<xsd:enumeration value="69"/>
<xsd:enumeration value="70"/>
<xsd:enumeration value="71"/>
<xsd:enumeration value="72"/>
<xsd:enumeration value="73"/>
<xsd:enumeration value="74"/>
<xsd:enumeration value="75"/>
<xsd:enumeration value="76"/>
<xsd:enumeration value="77"/>
<xsd:enumeration value="78"/>
<xsd:enumeration value="79"/>
<xsd:enumeration value="80"/>
<xsd:enumeration value="81"/>
<xsd:enumeration value="82"/>
<xsd:enumeration value="83"/>
<xsd:enumeration value="84"/>
<xsd:enumeration value="85"/>
<xsd:enumeration value="86"/>
<xsd:enumeration value="87"/>
<xsd:enumeration value="88"/>
<xsd:enumeration value="89"/>
<xsd:enumeration value="90"/>
<xsd:enumeration value="91"/>
<xsd:enumeration value="92"/>
<xsd:enumeration value="93"/>
<xsd:enumeration value="94"/>
<xsd:enumeration value="95"/>
<xsd:enumeration value="96"/>
<xsd:enumeration value="97"/>
<xsd:enumeration value="98"/>
<xsd:enumeration value="99"/>
<xsd:enumeration value="100"/>
<xsd:enumeration value="101"/>
<xsd:enumeration value="102"/>
<xsd:enumeration value="103"/>
<xsd:enumeration value="104"/>
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm67233AutomaticDataCaptureMethodCode="urn:un:unece:uncefact:codelist:standard:UNECE:AutomaticDataCaptureMethodCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:AutomaticDataCaptureMethodCode:D16A" elementFormDefault="qualified" version="1.2">
<xsd:simpleType name="AutomaticDataCaptureMethodCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="50"/>
<xsd:enumeration value="51"/>
<xsd:enumeration value="52"/>
<xsd:enumeration value="64"/>
<xsd:enumeration value="65"/>
<xsd:enumeration value="67"/>
<xsd:enumeration value="78"/>
<xsd:enumeration value="79"/>
<xsd:enumeration value="81"/>
<xsd:enumeration value="82"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm67085b="urn:un:unece:uncefact:codelist:standard:UNECE:CargoOperationalCategoryCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:CargoOperationalCategoryCode:D16A" elementFormDefault="qualified" version="1.2">
<xsd:simpleType name="CargoOperationalCategoryCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm6Recommendation21AnnexI="urn:un:unece:uncefact:codelist:standard:UNECE:CargoTypeCode:1996Rev2Final" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:CargoTypeCode:1996Rev2Final" elementFormDefault="qualified" version="1.0">
<xsd:simpleType name="CargoTypeCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="0"/>
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="9"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm67357="urn:un:unece:uncefact:codelist:standard:UNECE:CommodityIdentificationCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:CommodityIdentificationCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="CommodityIdentificationCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm63155CommunicationChannelCode="urn:un:unece:uncefact:codelist:standard:UNECE:CommunicationMeansTypeCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:CommunicationMeansTypeCode:D16A" elementFormDefault="qualified" version="1.3">
<xsd:simpleType name="CommunicationMeansTypeCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="AA"/>
<xsd:enumeration value="AB"/>
<xsd:enumeration value="AC"/>
<xsd:enumeration value="AD"/>
<xsd:enumeration value="AE"/>
<xsd:enumeration value="AF"/>
<xsd:enumeration value="AG"/>
<xsd:enumeration value="AH"/>
<xsd:enumeration value="AI"/>
<xsd:enumeration value="AJ"/>
<xsd:enumeration value="AK"/>
<xsd:enumeration value="AL"/>
<xsd:enumeration value="AM"/>
<xsd:enumeration value="AN"/>
<xsd:enumeration value="AO"/>
<xsd:enumeration value="AP"/>
<xsd:enumeration value="AQ"/>
<xsd:enumeration value="AR"/>
<xsd:enumeration value="AS"/>
<xsd:enumeration value="AT"/>
<xsd:enumeration value="AU"/>
<xsd:enumeration value="AV"/>
<xsd:enumeration value="AW"/>
<xsd:enumeration value="CA"/>
<xsd:enumeration value="EI"/>
<xsd:enumeration value="EM"/>
<xsd:enumeration value="EX"/>
<xsd:enumeration value="FT"/>
<xsd:enumeration value="FX"/>
<xsd:enumeration value="GM"/>
<xsd:enumeration value="IE"/>
<xsd:enumeration value="IM"/>
<xsd:enumeration value="MA"/>
<xsd:enumeration value="PB"/>
<xsd:enumeration value="PS"/>
<xsd:enumeration value="SW"/>
<xsd:enumeration value="TE"/>
<xsd:enumeration value="TG"/>
<xsd:enumeration value="TL"/>
<xsd:enumeration value="TM"/>
<xsd:enumeration value="TT"/>
<xsd:enumeration value="TX"/>
<xsd:enumeration value="XF"/>
<xsd:enumeration value="XG"/>
<xsd:enumeration value="XH"/>
<xsd:enumeration value="XI"/>
<xsd:enumeration value="XJ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,121 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm63139ContactTypeCode="urn:un:unece:uncefact:codelist:standard:UNECE:ContactFunctionCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:ContactFunctionCode:D16A" elementFormDefault="qualified" version="1.4">
<xsd:simpleType name="ContactFunctionCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="AA"/>
<xsd:enumeration value="AB"/>
<xsd:enumeration value="AC"/>
<xsd:enumeration value="AD"/>
<xsd:enumeration value="AE"/>
<xsd:enumeration value="AF"/>
<xsd:enumeration value="AG"/>
<xsd:enumeration value="AH"/>
<xsd:enumeration value="AI"/>
<xsd:enumeration value="AJ"/>
<xsd:enumeration value="AK"/>
<xsd:enumeration value="AL"/>
<xsd:enumeration value="AM"/>
<xsd:enumeration value="AN"/>
<xsd:enumeration value="AO"/>
<xsd:enumeration value="AP"/>
<xsd:enumeration value="AQ"/>
<xsd:enumeration value="AR"/>
<xsd:enumeration value="AS"/>
<xsd:enumeration value="AT"/>
<xsd:enumeration value="AU"/>
<xsd:enumeration value="AV"/>
<xsd:enumeration value="AW"/>
<xsd:enumeration value="AX"/>
<xsd:enumeration value="AY"/>
<xsd:enumeration value="AZ"/>
<xsd:enumeration value="BA"/>
<xsd:enumeration value="BB"/>
<xsd:enumeration value="BC"/>
<xsd:enumeration value="BD"/>
<xsd:enumeration value="BE"/>
<xsd:enumeration value="BF"/>
<xsd:enumeration value="BG"/>
<xsd:enumeration value="BH"/>
<xsd:enumeration value="BI"/>
<xsd:enumeration value="BJ"/>
<xsd:enumeration value="BK"/>
<xsd:enumeration value="BL"/>
<xsd:enumeration value="BM"/>
<xsd:enumeration value="BN"/>
<xsd:enumeration value="BO"/>
<xsd:enumeration value="BP"/>
<xsd:enumeration value="BQ"/>
<xsd:enumeration value="BR"/>
<xsd:enumeration value="BU"/>
<xsd:enumeration value="CA"/>
<xsd:enumeration value="CB"/>
<xsd:enumeration value="CC"/>
<xsd:enumeration value="CD"/>
<xsd:enumeration value="CE"/>
<xsd:enumeration value="CF"/>
<xsd:enumeration value="CG"/>
<xsd:enumeration value="CN"/>
<xsd:enumeration value="CO"/>
<xsd:enumeration value="CP"/>
<xsd:enumeration value="CR"/>
<xsd:enumeration value="CW"/>
<xsd:enumeration value="DE"/>
<xsd:enumeration value="DI"/>
<xsd:enumeration value="DL"/>
<xsd:enumeration value="EB"/>
<xsd:enumeration value="EC"/>
<xsd:enumeration value="ED"/>
<xsd:enumeration value="EX"/>
<xsd:enumeration value="GR"/>
<xsd:enumeration value="HE"/>
<xsd:enumeration value="HG"/>
<xsd:enumeration value="HM"/>
<xsd:enumeration value="IC"/>
<xsd:enumeration value="IN"/>
<xsd:enumeration value="LB"/>
<xsd:enumeration value="LO"/>
<xsd:enumeration value="MC"/>
<xsd:enumeration value="MD"/>
<xsd:enumeration value="MH"/>
<xsd:enumeration value="MR"/>
<xsd:enumeration value="MS"/>
<xsd:enumeration value="NT"/>
<xsd:enumeration value="OC"/>
<xsd:enumeration value="PA"/>
<xsd:enumeration value="PD"/>
<xsd:enumeration value="PE"/>
<xsd:enumeration value="PM"/>
<xsd:enumeration value="QA"/>
<xsd:enumeration value="QC"/>
<xsd:enumeration value="RD"/>
<xsd:enumeration value="RP"/>
<xsd:enumeration value="SA"/>
<xsd:enumeration value="SC"/>
<xsd:enumeration value="SD"/>
<xsd:enumeration value="SR"/>
<xsd:enumeration value="SU"/>
<xsd:enumeration value="TA"/>
<xsd:enumeration value="TD"/>
<xsd:enumeration value="TI"/>
<xsd:enumeration value="TR"/>
<xsd:enumeration value="WH"/>
<xsd:enumeration value="WI"/>
<xsd:enumeration value="WJ"/>
<xsd:enumeration value="WK"/>
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm64053="urn:un:unece:uncefact:codelist:standard:UNECE:DeliveryTermsCode:2010" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:DeliveryTermsCode:2010" elementFormDefault="qualified" version="1.0">
<xsd:simpleType name="DeliveryTermsCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="CFR"/>
<xsd:enumeration value="CIF"/>
<xsd:enumeration value="CIP"/>
<xsd:enumeration value="CPT"/>
<xsd:enumeration value="DAP"/>
<xsd:enumeration value="DAT"/>
<xsd:enumeration value="DDP"/>
<xsd:enumeration value="EXW"/>
<xsd:enumeration value="FAS"/>
<xsd:enumeration value="FCA"/>
<xsd:enumeration value="FOB"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm66145="urn:un:unece:uncefact:codelist:standard:UNECE:DimensionTypeCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:DimensionTypeCode:D16A" elementFormDefault="qualified" version="1.2">
<xsd:simpleType name="DimensionTypeCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm61001Accounting="urn:un:unece:uncefact:codelist:standard:UNECE:DocumentNameCode_Accounting:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:DocumentNameCode_Accounting:D16A" elementFormDefault="qualified" version="1.2">
<xsd:simpleType name="DocumentNameCodeAccountingContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="105"/>
<xsd:enumeration value="220"/>
<xsd:enumeration value="223"/>
<xsd:enumeration value="224"/>
<xsd:enumeration value="245"/>
<xsd:enumeration value="315"/>
<xsd:enumeration value="320"/>
<xsd:enumeration value="325"/>
<xsd:enumeration value="326"/>
<xsd:enumeration value="380"/>
<xsd:enumeration value="389"/>
<xsd:enumeration value="393"/>
<xsd:enumeration value="394"/>
<xsd:enumeration value="395"/>
<xsd:enumeration value="398"/>
<xsd:enumeration value="399"/>
<xsd:enumeration value="455"/>
<xsd:enumeration value="481"/>
<xsd:enumeration value="533"/>
<xsd:enumeration value="534"/>
<xsd:enumeration value="640"/>
<xsd:enumeration value="719"/>
<xsd:enumeration value="731"/>
<xsd:enumeration value="747"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,747 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm61001="urn:un:unece:uncefact:codelist:standard:UNECE:DocumentNameCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:DocumentNameCode:D16A" elementFormDefault="qualified" version="1.9">
<xsd:simpleType name="DocumentNameCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="30"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
<xsd:enumeration value="40"/>
<xsd:enumeration value="41"/>
<xsd:enumeration value="42"/>
<xsd:enumeration value="43"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="46"/>
<xsd:enumeration value="47"/>
<xsd:enumeration value="48"/>
<xsd:enumeration value="49"/>
<xsd:enumeration value="50"/>
<xsd:enumeration value="51"/>
<xsd:enumeration value="52"/>
<xsd:enumeration value="53"/>
<xsd:enumeration value="54"/>
<xsd:enumeration value="55"/>
<xsd:enumeration value="56"/>
<xsd:enumeration value="57"/>
<xsd:enumeration value="58"/>
<xsd:enumeration value="59"/>
<xsd:enumeration value="60"/>
<xsd:enumeration value="61"/>
<xsd:enumeration value="62"/>
<xsd:enumeration value="63"/>
<xsd:enumeration value="64"/>
<xsd:enumeration value="65"/>
<xsd:enumeration value="66"/>
<xsd:enumeration value="67"/>
<xsd:enumeration value="68"/>
<xsd:enumeration value="69"/>
<xsd:enumeration value="70"/>
<xsd:enumeration value="71"/>
<xsd:enumeration value="72"/>
<xsd:enumeration value="73"/>
<xsd:enumeration value="74"/>
<xsd:enumeration value="75"/>
<xsd:enumeration value="76"/>
<xsd:enumeration value="77"/>
<xsd:enumeration value="78"/>
<xsd:enumeration value="79"/>
<xsd:enumeration value="80"/>
<xsd:enumeration value="81"/>
<xsd:enumeration value="82"/>
<xsd:enumeration value="83"/>
<xsd:enumeration value="84"/>
<xsd:enumeration value="85"/>
<xsd:enumeration value="86"/>
<xsd:enumeration value="87"/>
<xsd:enumeration value="88"/>
<xsd:enumeration value="89"/>
<xsd:enumeration value="90"/>
<xsd:enumeration value="91"/>
<xsd:enumeration value="92"/>
<xsd:enumeration value="93"/>
<xsd:enumeration value="94"/>
<xsd:enumeration value="95"/>
<xsd:enumeration value="96"/>
<xsd:enumeration value="97"/>
<xsd:enumeration value="98"/>
<xsd:enumeration value="99"/>
<xsd:enumeration value="100"/>
<xsd:enumeration value="101"/>
<xsd:enumeration value="102"/>
<xsd:enumeration value="103"/>
<xsd:enumeration value="104"/>
<xsd:enumeration value="105"/>
<xsd:enumeration value="106"/>
<xsd:enumeration value="107"/>
<xsd:enumeration value="108"/>
<xsd:enumeration value="109"/>
<xsd:enumeration value="110"/>
<xsd:enumeration value="111"/>
<xsd:enumeration value="112"/>
<xsd:enumeration value="113"/>
<xsd:enumeration value="114"/>
<xsd:enumeration value="115"/>
<xsd:enumeration value="116"/>
<xsd:enumeration value="117"/>
<xsd:enumeration value="118"/>
<xsd:enumeration value="119"/>
<xsd:enumeration value="120"/>
<xsd:enumeration value="121"/>
<xsd:enumeration value="122"/>
<xsd:enumeration value="123"/>
<xsd:enumeration value="124"/>
<xsd:enumeration value="125"/>
<xsd:enumeration value="126"/>
<xsd:enumeration value="127"/>
<xsd:enumeration value="128"/>
<xsd:enumeration value="129"/>
<xsd:enumeration value="130"/>
<xsd:enumeration value="131"/>
<xsd:enumeration value="132"/>
<xsd:enumeration value="133"/>
<xsd:enumeration value="134"/>
<xsd:enumeration value="135"/>
<xsd:enumeration value="136"/>
<xsd:enumeration value="137"/>
<xsd:enumeration value="138"/>
<xsd:enumeration value="139"/>
<xsd:enumeration value="140"/>
<xsd:enumeration value="141"/>
<xsd:enumeration value="142"/>
<xsd:enumeration value="143"/>
<xsd:enumeration value="144"/>
<xsd:enumeration value="145"/>
<xsd:enumeration value="146"/>
<xsd:enumeration value="147"/>
<xsd:enumeration value="148"/>
<xsd:enumeration value="149"/>
<xsd:enumeration value="150"/>
<xsd:enumeration value="151"/>
<xsd:enumeration value="152"/>
<xsd:enumeration value="153"/>
<xsd:enumeration value="154"/>
<xsd:enumeration value="155"/>
<xsd:enumeration value="156"/>
<xsd:enumeration value="157"/>
<xsd:enumeration value="158"/>
<xsd:enumeration value="159"/>
<xsd:enumeration value="160"/>
<xsd:enumeration value="161"/>
<xsd:enumeration value="162"/>
<xsd:enumeration value="163"/>
<xsd:enumeration value="164"/>
<xsd:enumeration value="165"/>
<xsd:enumeration value="166"/>
<xsd:enumeration value="167"/>
<xsd:enumeration value="168"/>
<xsd:enumeration value="169"/>
<xsd:enumeration value="170"/>
<xsd:enumeration value="171"/>
<xsd:enumeration value="172"/>
<xsd:enumeration value="173"/>
<xsd:enumeration value="174"/>
<xsd:enumeration value="175"/>
<xsd:enumeration value="176"/>
<xsd:enumeration value="177"/>
<xsd:enumeration value="178"/>
<xsd:enumeration value="179"/>
<xsd:enumeration value="180"/>
<xsd:enumeration value="181"/>
<xsd:enumeration value="182"/>
<xsd:enumeration value="183"/>
<xsd:enumeration value="184"/>
<xsd:enumeration value="185"/>
<xsd:enumeration value="186"/>
<xsd:enumeration value="187"/>
<xsd:enumeration value="188"/>
<xsd:enumeration value="189"/>
<xsd:enumeration value="190"/>
<xsd:enumeration value="191"/>
<xsd:enumeration value="192"/>
<xsd:enumeration value="193"/>
<xsd:enumeration value="194"/>
<xsd:enumeration value="195"/>
<xsd:enumeration value="196"/>
<xsd:enumeration value="197"/>
<xsd:enumeration value="198"/>
<xsd:enumeration value="199"/>
<xsd:enumeration value="200"/>
<xsd:enumeration value="201"/>
<xsd:enumeration value="202"/>
<xsd:enumeration value="203"/>
<xsd:enumeration value="204"/>
<xsd:enumeration value="205"/>
<xsd:enumeration value="206"/>
<xsd:enumeration value="207"/>
<xsd:enumeration value="208"/>
<xsd:enumeration value="209"/>
<xsd:enumeration value="210"/>
<xsd:enumeration value="211"/>
<xsd:enumeration value="212"/>
<xsd:enumeration value="213"/>
<xsd:enumeration value="214"/>
<xsd:enumeration value="215"/>
<xsd:enumeration value="216"/>
<xsd:enumeration value="217"/>
<xsd:enumeration value="218"/>
<xsd:enumeration value="219"/>
<xsd:enumeration value="220"/>
<xsd:enumeration value="221"/>
<xsd:enumeration value="222"/>
<xsd:enumeration value="223"/>
<xsd:enumeration value="224"/>
<xsd:enumeration value="225"/>
<xsd:enumeration value="226"/>
<xsd:enumeration value="227"/>
<xsd:enumeration value="228"/>
<xsd:enumeration value="229"/>
<xsd:enumeration value="230"/>
<xsd:enumeration value="231"/>
<xsd:enumeration value="232"/>
<xsd:enumeration value="233"/>
<xsd:enumeration value="234"/>
<xsd:enumeration value="235"/>
<xsd:enumeration value="236"/>
<xsd:enumeration value="237"/>
<xsd:enumeration value="238"/>
<xsd:enumeration value="239"/>
<xsd:enumeration value="240"/>
<xsd:enumeration value="241"/>
<xsd:enumeration value="242"/>
<xsd:enumeration value="243"/>
<xsd:enumeration value="244"/>
<xsd:enumeration value="245"/>
<xsd:enumeration value="246"/>
<xsd:enumeration value="247"/>
<xsd:enumeration value="248"/>
<xsd:enumeration value="249"/>
<xsd:enumeration value="250"/>
<xsd:enumeration value="251"/>
<xsd:enumeration value="252"/>
<xsd:enumeration value="253"/>
<xsd:enumeration value="254"/>
<xsd:enumeration value="255"/>
<xsd:enumeration value="256"/>
<xsd:enumeration value="257"/>
<xsd:enumeration value="258"/>
<xsd:enumeration value="259"/>
<xsd:enumeration value="260"/>
<xsd:enumeration value="261"/>
<xsd:enumeration value="262"/>
<xsd:enumeration value="263"/>
<xsd:enumeration value="264"/>
<xsd:enumeration value="265"/>
<xsd:enumeration value="266"/>
<xsd:enumeration value="267"/>
<xsd:enumeration value="268"/>
<xsd:enumeration value="269"/>
<xsd:enumeration value="270"/>
<xsd:enumeration value="271"/>
<xsd:enumeration value="272"/>
<xsd:enumeration value="273"/>
<xsd:enumeration value="274"/>
<xsd:enumeration value="275"/>
<xsd:enumeration value="276"/>
<xsd:enumeration value="277"/>
<xsd:enumeration value="278"/>
<xsd:enumeration value="279"/>
<xsd:enumeration value="280"/>
<xsd:enumeration value="281"/>
<xsd:enumeration value="282"/>
<xsd:enumeration value="283"/>
<xsd:enumeration value="284"/>
<xsd:enumeration value="285"/>
<xsd:enumeration value="286"/>
<xsd:enumeration value="287"/>
<xsd:enumeration value="288"/>
<xsd:enumeration value="289"/>
<xsd:enumeration value="290"/>
<xsd:enumeration value="291"/>
<xsd:enumeration value="292"/>
<xsd:enumeration value="293"/>
<xsd:enumeration value="294"/>
<xsd:enumeration value="295"/>
<xsd:enumeration value="296"/>
<xsd:enumeration value="297"/>
<xsd:enumeration value="298"/>
<xsd:enumeration value="299"/>
<xsd:enumeration value="300"/>
<xsd:enumeration value="301"/>
<xsd:enumeration value="302"/>
<xsd:enumeration value="303"/>
<xsd:enumeration value="304"/>
<xsd:enumeration value="305"/>
<xsd:enumeration value="306"/>
<xsd:enumeration value="307"/>
<xsd:enumeration value="308"/>
<xsd:enumeration value="309"/>
<xsd:enumeration value="310"/>
<xsd:enumeration value="311"/>
<xsd:enumeration value="312"/>
<xsd:enumeration value="313"/>
<xsd:enumeration value="314"/>
<xsd:enumeration value="315"/>
<xsd:enumeration value="316"/>
<xsd:enumeration value="317"/>
<xsd:enumeration value="318"/>
<xsd:enumeration value="319"/>
<xsd:enumeration value="320"/>
<xsd:enumeration value="321"/>
<xsd:enumeration value="322"/>
<xsd:enumeration value="323"/>
<xsd:enumeration value="324"/>
<xsd:enumeration value="325"/>
<xsd:enumeration value="326"/>
<xsd:enumeration value="327"/>
<xsd:enumeration value="328"/>
<xsd:enumeration value="329"/>
<xsd:enumeration value="330"/>
<xsd:enumeration value="331"/>
<xsd:enumeration value="332"/>
<xsd:enumeration value="333"/>
<xsd:enumeration value="334"/>
<xsd:enumeration value="335"/>
<xsd:enumeration value="336"/>
<xsd:enumeration value="337"/>
<xsd:enumeration value="338"/>
<xsd:enumeration value="339"/>
<xsd:enumeration value="340"/>
<xsd:enumeration value="341"/>
<xsd:enumeration value="342"/>
<xsd:enumeration value="343"/>
<xsd:enumeration value="344"/>
<xsd:enumeration value="345"/>
<xsd:enumeration value="346"/>
<xsd:enumeration value="347"/>
<xsd:enumeration value="348"/>
<xsd:enumeration value="349"/>
<xsd:enumeration value="350"/>
<xsd:enumeration value="351"/>
<xsd:enumeration value="352"/>
<xsd:enumeration value="353"/>
<xsd:enumeration value="354"/>
<xsd:enumeration value="355"/>
<xsd:enumeration value="356"/>
<xsd:enumeration value="357"/>
<xsd:enumeration value="358"/>
<xsd:enumeration value="359"/>
<xsd:enumeration value="360"/>
<xsd:enumeration value="361"/>
<xsd:enumeration value="362"/>
<xsd:enumeration value="363"/>
<xsd:enumeration value="364"/>
<xsd:enumeration value="365"/>
<xsd:enumeration value="366"/>
<xsd:enumeration value="367"/>
<xsd:enumeration value="368"/>
<xsd:enumeration value="369"/>
<xsd:enumeration value="370"/>
<xsd:enumeration value="371"/>
<xsd:enumeration value="372"/>
<xsd:enumeration value="373"/>
<xsd:enumeration value="374"/>
<xsd:enumeration value="375"/>
<xsd:enumeration value="376"/>
<xsd:enumeration value="377"/>
<xsd:enumeration value="378"/>
<xsd:enumeration value="379"/>
<xsd:enumeration value="380"/>
<xsd:enumeration value="381"/>
<xsd:enumeration value="382"/>
<xsd:enumeration value="383"/>
<xsd:enumeration value="384"/>
<xsd:enumeration value="385"/>
<xsd:enumeration value="386"/>
<xsd:enumeration value="387"/>
<xsd:enumeration value="388"/>
<xsd:enumeration value="389"/>
<xsd:enumeration value="390"/>
<xsd:enumeration value="391"/>
<xsd:enumeration value="392"/>
<xsd:enumeration value="393"/>
<xsd:enumeration value="394"/>
<xsd:enumeration value="395"/>
<xsd:enumeration value="396"/>
<xsd:enumeration value="397"/>
<xsd:enumeration value="398"/>
<xsd:enumeration value="399"/>
<xsd:enumeration value="400"/>
<xsd:enumeration value="401"/>
<xsd:enumeration value="402"/>
<xsd:enumeration value="403"/>
<xsd:enumeration value="404"/>
<xsd:enumeration value="405"/>
<xsd:enumeration value="406"/>
<xsd:enumeration value="407"/>
<xsd:enumeration value="408"/>
<xsd:enumeration value="409"/>
<xsd:enumeration value="410"/>
<xsd:enumeration value="411"/>
<xsd:enumeration value="412"/>
<xsd:enumeration value="413"/>
<xsd:enumeration value="414"/>
<xsd:enumeration value="415"/>
<xsd:enumeration value="416"/>
<xsd:enumeration value="417"/>
<xsd:enumeration value="418"/>
<xsd:enumeration value="419"/>
<xsd:enumeration value="420"/>
<xsd:enumeration value="421"/>
<xsd:enumeration value="422"/>
<xsd:enumeration value="423"/>
<xsd:enumeration value="424"/>
<xsd:enumeration value="425"/>
<xsd:enumeration value="426"/>
<xsd:enumeration value="427"/>
<xsd:enumeration value="428"/>
<xsd:enumeration value="429"/>
<xsd:enumeration value="430"/>
<xsd:enumeration value="431"/>
<xsd:enumeration value="432"/>
<xsd:enumeration value="433"/>
<xsd:enumeration value="434"/>
<xsd:enumeration value="435"/>
<xsd:enumeration value="436"/>
<xsd:enumeration value="437"/>
<xsd:enumeration value="438"/>
<xsd:enumeration value="439"/>
<xsd:enumeration value="440"/>
<xsd:enumeration value="441"/>
<xsd:enumeration value="442"/>
<xsd:enumeration value="443"/>
<xsd:enumeration value="444"/>
<xsd:enumeration value="445"/>
<xsd:enumeration value="446"/>
<xsd:enumeration value="447"/>
<xsd:enumeration value="448"/>
<xsd:enumeration value="449"/>
<xsd:enumeration value="450"/>
<xsd:enumeration value="451"/>
<xsd:enumeration value="452"/>
<xsd:enumeration value="453"/>
<xsd:enumeration value="454"/>
<xsd:enumeration value="455"/>
<xsd:enumeration value="456"/>
<xsd:enumeration value="457"/>
<xsd:enumeration value="458"/>
<xsd:enumeration value="459"/>
<xsd:enumeration value="460"/>
<xsd:enumeration value="461"/>
<xsd:enumeration value="462"/>
<xsd:enumeration value="463"/>
<xsd:enumeration value="464"/>
<xsd:enumeration value="465"/>
<xsd:enumeration value="466"/>
<xsd:enumeration value="467"/>
<xsd:enumeration value="468"/>
<xsd:enumeration value="469"/>
<xsd:enumeration value="470"/>
<xsd:enumeration value="481"/>
<xsd:enumeration value="482"/>
<xsd:enumeration value="483"/>
<xsd:enumeration value="484"/>
<xsd:enumeration value="485"/>
<xsd:enumeration value="486"/>
<xsd:enumeration value="487"/>
<xsd:enumeration value="488"/>
<xsd:enumeration value="489"/>
<xsd:enumeration value="490"/>
<xsd:enumeration value="491"/>
<xsd:enumeration value="493"/>
<xsd:enumeration value="494"/>
<xsd:enumeration value="495"/>
<xsd:enumeration value="496"/>
<xsd:enumeration value="497"/>
<xsd:enumeration value="498"/>
<xsd:enumeration value="499"/>
<xsd:enumeration value="520"/>
<xsd:enumeration value="521"/>
<xsd:enumeration value="522"/>
<xsd:enumeration value="523"/>
<xsd:enumeration value="524"/>
<xsd:enumeration value="525"/>
<xsd:enumeration value="526"/>
<xsd:enumeration value="527"/>
<xsd:enumeration value="528"/>
<xsd:enumeration value="529"/>
<xsd:enumeration value="530"/>
<xsd:enumeration value="531"/>
<xsd:enumeration value="532"/>
<xsd:enumeration value="533"/>
<xsd:enumeration value="534"/>
<xsd:enumeration value="535"/>
<xsd:enumeration value="536"/>
<xsd:enumeration value="537"/>
<xsd:enumeration value="538"/>
<xsd:enumeration value="539"/>
<xsd:enumeration value="550"/>
<xsd:enumeration value="551"/>
<xsd:enumeration value="552"/>
<xsd:enumeration value="553"/>
<xsd:enumeration value="554"/>
<xsd:enumeration value="575"/>
<xsd:enumeration value="576"/>
<xsd:enumeration value="577"/>
<xsd:enumeration value="578"/>
<xsd:enumeration value="579"/>
<xsd:enumeration value="580"/>
<xsd:enumeration value="581"/>
<xsd:enumeration value="582"/>
<xsd:enumeration value="583"/>
<xsd:enumeration value="584"/>
<xsd:enumeration value="585"/>
<xsd:enumeration value="586"/>
<xsd:enumeration value="587"/>
<xsd:enumeration value="588"/>
<xsd:enumeration value="589"/>
<xsd:enumeration value="610"/>
<xsd:enumeration value="621"/>
<xsd:enumeration value="622"/>
<xsd:enumeration value="623"/>
<xsd:enumeration value="624"/>
<xsd:enumeration value="625"/>
<xsd:enumeration value="626"/>
<xsd:enumeration value="627"/>
<xsd:enumeration value="628"/>
<xsd:enumeration value="629"/>
<xsd:enumeration value="630"/>
<xsd:enumeration value="631"/>
<xsd:enumeration value="632"/>
<xsd:enumeration value="633"/>
<xsd:enumeration value="634"/>
<xsd:enumeration value="635"/>
<xsd:enumeration value="636"/>
<xsd:enumeration value="637"/>
<xsd:enumeration value="638"/>
<xsd:enumeration value="639"/>
<xsd:enumeration value="640"/>
<xsd:enumeration value="641"/>
<xsd:enumeration value="642"/>
<xsd:enumeration value="643"/>
<xsd:enumeration value="644"/>
<xsd:enumeration value="645"/>
<xsd:enumeration value="646"/>
<xsd:enumeration value="647"/>
<xsd:enumeration value="648"/>
<xsd:enumeration value="649"/>
<xsd:enumeration value="650"/>
<xsd:enumeration value="651"/>
<xsd:enumeration value="652"/>
<xsd:enumeration value="653"/>
<xsd:enumeration value="654"/>
<xsd:enumeration value="655"/>
<xsd:enumeration value="656"/>
<xsd:enumeration value="657"/>
<xsd:enumeration value="658"/>
<xsd:enumeration value="659"/>
<xsd:enumeration value="700"/>
<xsd:enumeration value="701"/>
<xsd:enumeration value="702"/>
<xsd:enumeration value="703"/>
<xsd:enumeration value="704"/>
<xsd:enumeration value="705"/>
<xsd:enumeration value="706"/>
<xsd:enumeration value="707"/>
<xsd:enumeration value="708"/>
<xsd:enumeration value="709"/>
<xsd:enumeration value="710"/>
<xsd:enumeration value="711"/>
<xsd:enumeration value="712"/>
<xsd:enumeration value="713"/>
<xsd:enumeration value="714"/>
<xsd:enumeration value="715"/>
<xsd:enumeration value="716"/>
<xsd:enumeration value="717"/>
<xsd:enumeration value="718"/>
<xsd:enumeration value="719"/>
<xsd:enumeration value="720"/>
<xsd:enumeration value="721"/>
<xsd:enumeration value="722"/>
<xsd:enumeration value="723"/>
<xsd:enumeration value="724"/>
<xsd:enumeration value="725"/>
<xsd:enumeration value="726"/>
<xsd:enumeration value="727"/>
<xsd:enumeration value="728"/>
<xsd:enumeration value="729"/>
<xsd:enumeration value="730"/>
<xsd:enumeration value="731"/>
<xsd:enumeration value="732"/>
<xsd:enumeration value="733"/>
<xsd:enumeration value="734"/>
<xsd:enumeration value="735"/>
<xsd:enumeration value="736"/>
<xsd:enumeration value="737"/>
<xsd:enumeration value="738"/>
<xsd:enumeration value="739"/>
<xsd:enumeration value="740"/>
<xsd:enumeration value="741"/>
<xsd:enumeration value="742"/>
<xsd:enumeration value="743"/>
<xsd:enumeration value="744"/>
<xsd:enumeration value="745"/>
<xsd:enumeration value="746"/>
<xsd:enumeration value="747"/>
<xsd:enumeration value="748"/>
<xsd:enumeration value="749"/>
<xsd:enumeration value="750"/>
<xsd:enumeration value="751"/>
<xsd:enumeration value="760"/>
<xsd:enumeration value="761"/>
<xsd:enumeration value="763"/>
<xsd:enumeration value="764"/>
<xsd:enumeration value="765"/>
<xsd:enumeration value="766"/>
<xsd:enumeration value="770"/>
<xsd:enumeration value="775"/>
<xsd:enumeration value="780"/>
<xsd:enumeration value="781"/>
<xsd:enumeration value="782"/>
<xsd:enumeration value="783"/>
<xsd:enumeration value="784"/>
<xsd:enumeration value="785"/>
<xsd:enumeration value="786"/>
<xsd:enumeration value="787"/>
<xsd:enumeration value="788"/>
<xsd:enumeration value="789"/>
<xsd:enumeration value="790"/>
<xsd:enumeration value="791"/>
<xsd:enumeration value="792"/>
<xsd:enumeration value="793"/>
<xsd:enumeration value="794"/>
<xsd:enumeration value="795"/>
<xsd:enumeration value="796"/>
<xsd:enumeration value="797"/>
<xsd:enumeration value="798"/>
<xsd:enumeration value="799"/>
<xsd:enumeration value="810"/>
<xsd:enumeration value="811"/>
<xsd:enumeration value="812"/>
<xsd:enumeration value="820"/>
<xsd:enumeration value="821"/>
<xsd:enumeration value="822"/>
<xsd:enumeration value="823"/>
<xsd:enumeration value="824"/>
<xsd:enumeration value="825"/>
<xsd:enumeration value="830"/>
<xsd:enumeration value="833"/>
<xsd:enumeration value="840"/>
<xsd:enumeration value="841"/>
<xsd:enumeration value="850"/>
<xsd:enumeration value="851"/>
<xsd:enumeration value="852"/>
<xsd:enumeration value="853"/>
<xsd:enumeration value="855"/>
<xsd:enumeration value="856"/>
<xsd:enumeration value="860"/>
<xsd:enumeration value="861"/>
<xsd:enumeration value="862"/>
<xsd:enumeration value="863"/>
<xsd:enumeration value="864"/>
<xsd:enumeration value="865"/>
<xsd:enumeration value="870"/>
<xsd:enumeration value="890"/>
<xsd:enumeration value="895"/>
<xsd:enumeration value="896"/>
<xsd:enumeration value="901"/>
<xsd:enumeration value="910"/>
<xsd:enumeration value="911"/>
<xsd:enumeration value="913"/>
<xsd:enumeration value="914"/>
<xsd:enumeration value="915"/>
<xsd:enumeration value="916"/>
<xsd:enumeration value="917"/>
<xsd:enumeration value="925"/>
<xsd:enumeration value="926"/>
<xsd:enumeration value="927"/>
<xsd:enumeration value="929"/>
<xsd:enumeration value="930"/>
<xsd:enumeration value="931"/>
<xsd:enumeration value="932"/>
<xsd:enumeration value="933"/>
<xsd:enumeration value="934"/>
<xsd:enumeration value="935"/>
<xsd:enumeration value="936"/>
<xsd:enumeration value="937"/>
<xsd:enumeration value="938"/>
<xsd:enumeration value="940"/>
<xsd:enumeration value="941"/>
<xsd:enumeration value="950"/>
<xsd:enumeration value="951"/>
<xsd:enumeration value="952"/>
<xsd:enumeration value="953"/>
<xsd:enumeration value="954"/>
<xsd:enumeration value="955"/>
<xsd:enumeration value="960"/>
<xsd:enumeration value="961"/>
<xsd:enumeration value="962"/>
<xsd:enumeration value="963"/>
<xsd:enumeration value="964"/>
<xsd:enumeration value="965"/>
<xsd:enumeration value="966"/>
<xsd:enumeration value="970"/>
<xsd:enumeration value="971"/>
<xsd:enumeration value="972"/>
<xsd:enumeration value="974"/>
<xsd:enumeration value="975"/>
<xsd:enumeration value="976"/>
<xsd:enumeration value="977"/>
<xsd:enumeration value="978"/>
<xsd:enumeration value="979"/>
<xsd:enumeration value="990"/>
<xsd:enumeration value="991"/>
<xsd:enumeration value="995"/>
<xsd:enumeration value="996"/>
<xsd:enumeration value="998"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm61373="urn:un:unece:uncefact:codelist:standard:UNECE:DocumentStatusCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:DocumentStatusCode:D16A" elementFormDefault="qualified" version="1.6">
<xsd:simpleType name="DocumentStatusCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="30"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm65153="urn:un:unece:uncefact:codelist:standard:UNECE:DutyTaxFeeTypeCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:DutyTaxFeeTypeCode:D16A" elementFormDefault="qualified" version="1.2">
<xsd:simpleType name="DutyTaxFeeTypeCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="AAA"/>
<xsd:enumeration value="AAB"/>
<xsd:enumeration value="AAC"/>
<xsd:enumeration value="AAD"/>
<xsd:enumeration value="AAE"/>
<xsd:enumeration value="AAF"/>
<xsd:enumeration value="AAG"/>
<xsd:enumeration value="AAH"/>
<xsd:enumeration value="AAI"/>
<xsd:enumeration value="AAJ"/>
<xsd:enumeration value="AAK"/>
<xsd:enumeration value="AAL"/>
<xsd:enumeration value="AAM"/>
<xsd:enumeration value="ADD"/>
<xsd:enumeration value="BOL"/>
<xsd:enumeration value="CAP"/>
<xsd:enumeration value="CAR"/>
<xsd:enumeration value="COC"/>
<xsd:enumeration value="CST"/>
<xsd:enumeration value="CUD"/>
<xsd:enumeration value="CVD"/>
<xsd:enumeration value="ENV"/>
<xsd:enumeration value="EXC"/>
<xsd:enumeration value="EXP"/>
<xsd:enumeration value="FET"/>
<xsd:enumeration value="FRE"/>
<xsd:enumeration value="GCN"/>
<xsd:enumeration value="GST"/>
<xsd:enumeration value="ILL"/>
<xsd:enumeration value="IMP"/>
<xsd:enumeration value="IND"/>
<xsd:enumeration value="LAC"/>
<xsd:enumeration value="LCN"/>
<xsd:enumeration value="LDP"/>
<xsd:enumeration value="LOC"/>
<xsd:enumeration value="LST"/>
<xsd:enumeration value="MCA"/>
<xsd:enumeration value="MCD"/>
<xsd:enumeration value="OTH"/>
<xsd:enumeration value="PDB"/>
<xsd:enumeration value="PDC"/>
<xsd:enumeration value="PRF"/>
<xsd:enumeration value="SCN"/>
<xsd:enumeration value="SSS"/>
<xsd:enumeration value="STT"/>
<xsd:enumeration value="SUP"/>
<xsd:enumeration value="SUR"/>
<xsd:enumeration value="SWT"/>
<xsd:enumeration value="TAC"/>
<xsd:enumeration value="TOT"/>
<xsd:enumeration value="TOX"/>
<xsd:enumeration value="TTA"/>
<xsd:enumeration value="VAD"/>
<xsd:enumeration value="VAT"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm65305="urn:un:unece:uncefact:codelist:standard:UNECE:DutyorTaxorFeeCategoryCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:DutyorTaxorFeeCategoryCode:D16A" elementFormDefault="qualified" version="1.5">
<xsd:simpleType name="DutyorTaxorFeeCategoryCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="A"/>
<xsd:enumeration value="AA"/>
<xsd:enumeration value="AB"/>
<xsd:enumeration value="AC"/>
<xsd:enumeration value="AD"/>
<xsd:enumeration value="AE"/>
<xsd:enumeration value="B"/>
<xsd:enumeration value="C"/>
<xsd:enumeration value="D"/>
<xsd:enumeration value="E"/>
<xsd:enumeration value="F"/>
<xsd:enumeration value="G"/>
<xsd:enumeration value="H"/>
<xsd:enumeration value="I"/>
<xsd:enumeration value="J"/>
<xsd:enumeration value="K"/>
<xsd:enumeration value="L"/>
<xsd:enumeration value="M"/>
<xsd:enumeration value="O"/>
<xsd:enumeration value="S"/>
<xsd:enumeration value="Z"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm68155="urn:un:unece:uncefact:codelist:standard:UNECE:EquipmentSizeTypeDescriptionCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:EquipmentSizeTypeDescriptionCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="EquipmentSizeTypeDescriptionCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="30"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
<xsd:enumeration value="40"/>
<xsd:enumeration value="41"/>
<xsd:enumeration value="42"/>
<xsd:enumeration value="43"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="45"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm62475PaymentTermsEvent="urn:un:unece:uncefact:codelist:standard:UNECE:EventTimeReferenceCodePaymentTermsEvent:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:EventTimeReferenceCodePaymentTermsEvent:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="EventTimeReferenceCodePaymentTermsEventContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="5"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="71"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm62475="urn:un:unece:uncefact:codelist:standard:UNECE:EventTimeReferenceCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:EventTimeReferenceCode:D16A" elementFormDefault="qualified" version="1.2">
<xsd:simpleType name="EventTimeReferenceCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="41"/>
<xsd:enumeration value="42"/>
<xsd:enumeration value="43"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="46"/>
<xsd:enumeration value="47"/>
<xsd:enumeration value="48"/>
<xsd:enumeration value="52"/>
<xsd:enumeration value="53"/>
<xsd:enumeration value="54"/>
<xsd:enumeration value="55"/>
<xsd:enumeration value="56"/>
<xsd:enumeration value="57"/>
<xsd:enumeration value="60"/>
<xsd:enumeration value="61"/>
<xsd:enumeration value="62"/>
<xsd:enumeration value="63"/>
<xsd:enumeration value="64"/>
<xsd:enumeration value="65"/>
<xsd:enumeration value="66"/>
<xsd:enumeration value="67"/>
<xsd:enumeration value="68"/>
<xsd:enumeration value="69"/>
<xsd:enumeration value="70"/>
<xsd:enumeration value="71"/>
<xsd:enumeration value="72"/>
<xsd:enumeration value="73"/>
<xsd:enumeration value="74"/>
<xsd:enumeration value="75"/>
<xsd:enumeration value="76"/>
<xsd:enumeration value="77"/>
<xsd:enumeration value="78"/>
<xsd:enumeration value="79"/>
<xsd:enumeration value="80"/>
<xsd:enumeration value="81"/>
<xsd:enumeration value="82"/>
<xsd:enumeration value="83"/>
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm6TDED6131="urn:un:unece:uncefact:codelist:standard:UNECE:FreightChargeQuantityUnitBasisCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:FreightChargeQuantityUnitBasisCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="FreightChargeQuantityUnitBasisCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm65243="urn:un:unece:uncefact:codelist:standard:UNECE:FreightChargeTariffCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:FreightChargeTariffCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="FreightChargeTariffCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="A"/>
<xsd:enumeration value="B"/>
<xsd:enumeration value="C"/>
<xsd:enumeration value="D"/>
<xsd:enumeration value="E"/>
<xsd:enumeration value="F"/>
<xsd:enumeration value="K"/>
<xsd:enumeration value="M"/>
<xsd:enumeration value="N"/>
<xsd:enumeration value="Q"/>
<xsd:enumeration value="R"/>
<xsd:enumeration value="S"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm6TDED7357="urn:un:unece:uncefact:codelist:standard:UNECE:GoodsTypeCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:GoodsTypeCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="GoodsTypeCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm6TDED7361="urn:un:unece:uncefact:codelist:standard:UNECE:GoodsTypeExtensionCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:GoodsTypeExtensionCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="GoodsTypeExtensionCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm6Recommendation20Linear="urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeLinear:4" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeLinear:4" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="MeasurementUnitCommonCodeLinearContentType">
<xsd:restriction base="xsd:token">
<xsd:minLength value="1"/>
<xsd:maxLength value="3"/>
<xsd:enumeration value="CMT"/>
<xsd:enumeration value="FOT"/>
<xsd:enumeration value="INH"/>
<xsd:enumeration value="MTR"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm6Recommendation20Volume="urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeVolume:4" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeVolume:4" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="MeasurementUnitCommonCodeVolumeContentType">
<xsd:restriction base="xsd:token">
<xsd:minLength value="1"/>
<xsd:maxLength value="3"/>
<xsd:enumeration value="CMQ"/>
<xsd:enumeration value="FTQ"/>
<xsd:enumeration value="MMQ"/>
<xsd:enumeration value="MTQ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm6Recommendation20Weight="urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeWeight:4" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeWeight:4" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="MeasurementUnitCommonCodeWeightContentType">
<xsd:restriction base="xsd:token">
<xsd:minLength value="1"/>
<xsd:maxLength value="3"/>
<xsd:enumeration value="KGM"/>
<xsd:enumeration value="TNE"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,89 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm61225MessageFunctionTypeCode="urn:un:unece:uncefact:codelist:standard:UNECE:MessageFunctionCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:MessageFunctionCode:D16A" elementFormDefault="qualified" version="1.2">
<xsd:simpleType name="MessageFunctionCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="30"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
<xsd:enumeration value="40"/>
<xsd:enumeration value="41"/>
<xsd:enumeration value="42"/>
<xsd:enumeration value="43"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="46"/>
<xsd:enumeration value="47"/>
<xsd:enumeration value="48"/>
<xsd:enumeration value="49"/>
<xsd:enumeration value="50"/>
<xsd:enumeration value="51"/>
<xsd:enumeration value="52"/>
<xsd:enumeration value="53"/>
<xsd:enumeration value="54"/>
<xsd:enumeration value="55"/>
<xsd:enumeration value="56"/>
<xsd:enumeration value="57"/>
<xsd:enumeration value="58"/>
<xsd:enumeration value="59"/>
<xsd:enumeration value="60"/>
<xsd:enumeration value="61"/>
<xsd:enumeration value="62"/>
<xsd:enumeration value="63"/>
<xsd:enumeration value="64"/>
<xsd:enumeration value="65"/>
<xsd:enumeration value="66"/>
<xsd:enumeration value="67"/>
<xsd:enumeration value="68"/>
<xsd:enumeration value="69"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,397 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm67065="urn:un:unece:uncefact:codelist:standard:UNECE:PackageTypeCode:2006" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:PackageTypeCode:2006" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="PackageTypeCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="43"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="1A"/>
<xsd:enumeration value="1B"/>
<xsd:enumeration value="1D"/>
<xsd:enumeration value="1F"/>
<xsd:enumeration value="1G"/>
<xsd:enumeration value="1W"/>
<xsd:enumeration value="2C"/>
<xsd:enumeration value="3A"/>
<xsd:enumeration value="3H"/>
<xsd:enumeration value="4A"/>
<xsd:enumeration value="4B"/>
<xsd:enumeration value="4C"/>
<xsd:enumeration value="4D"/>
<xsd:enumeration value="4F"/>
<xsd:enumeration value="4G"/>
<xsd:enumeration value="4H"/>
<xsd:enumeration value="5H"/>
<xsd:enumeration value="5L"/>
<xsd:enumeration value="5M"/>
<xsd:enumeration value="6H"/>
<xsd:enumeration value="6P"/>
<xsd:enumeration value="7A"/>
<xsd:enumeration value="7B"/>
<xsd:enumeration value="8A"/>
<xsd:enumeration value="8B"/>
<xsd:enumeration value="8C"/>
<xsd:enumeration value="AA"/>
<xsd:enumeration value="AB"/>
<xsd:enumeration value="AC"/>
<xsd:enumeration value="AD"/>
<xsd:enumeration value="AE"/>
<xsd:enumeration value="AF"/>
<xsd:enumeration value="AG"/>
<xsd:enumeration value="AH"/>
<xsd:enumeration value="AI"/>
<xsd:enumeration value="AJ"/>
<xsd:enumeration value="AL"/>
<xsd:enumeration value="AM"/>
<xsd:enumeration value="AP"/>
<xsd:enumeration value="AT"/>
<xsd:enumeration value="AV"/>
<xsd:enumeration value="B4"/>
<xsd:enumeration value="BA"/>
<xsd:enumeration value="BB"/>
<xsd:enumeration value="BC"/>
<xsd:enumeration value="BD"/>
<xsd:enumeration value="BE"/>
<xsd:enumeration value="BF"/>
<xsd:enumeration value="BG"/>
<xsd:enumeration value="BH"/>
<xsd:enumeration value="BI"/>
<xsd:enumeration value="BJ"/>
<xsd:enumeration value="BK"/>
<xsd:enumeration value="BL"/>
<xsd:enumeration value="BM"/>
<xsd:enumeration value="BN"/>
<xsd:enumeration value="BO"/>
<xsd:enumeration value="BP"/>
<xsd:enumeration value="BQ"/>
<xsd:enumeration value="BR"/>
<xsd:enumeration value="BS"/>
<xsd:enumeration value="BT"/>
<xsd:enumeration value="BU"/>
<xsd:enumeration value="BV"/>
<xsd:enumeration value="BW"/>
<xsd:enumeration value="BX"/>
<xsd:enumeration value="BY"/>
<xsd:enumeration value="BZ"/>
<xsd:enumeration value="CA"/>
<xsd:enumeration value="CB"/>
<xsd:enumeration value="CC"/>
<xsd:enumeration value="CD"/>
<xsd:enumeration value="CE"/>
<xsd:enumeration value="CF"/>
<xsd:enumeration value="CG"/>
<xsd:enumeration value="CH"/>
<xsd:enumeration value="CI"/>
<xsd:enumeration value="CJ"/>
<xsd:enumeration value="CK"/>
<xsd:enumeration value="CL"/>
<xsd:enumeration value="CM"/>
<xsd:enumeration value="CN"/>
<xsd:enumeration value="CO"/>
<xsd:enumeration value="CP"/>
<xsd:enumeration value="CQ"/>
<xsd:enumeration value="CR"/>
<xsd:enumeration value="CS"/>
<xsd:enumeration value="CT"/>
<xsd:enumeration value="CU"/>
<xsd:enumeration value="CV"/>
<xsd:enumeration value="CW"/>
<xsd:enumeration value="CX"/>
<xsd:enumeration value="CY"/>
<xsd:enumeration value="CZ"/>
<xsd:enumeration value="DA"/>
<xsd:enumeration value="DB"/>
<xsd:enumeration value="DC"/>
<xsd:enumeration value="DG"/>
<xsd:enumeration value="DH"/>
<xsd:enumeration value="DI"/>
<xsd:enumeration value="DJ"/>
<xsd:enumeration value="DK"/>
<xsd:enumeration value="DL"/>
<xsd:enumeration value="DM"/>
<xsd:enumeration value="DN"/>
<xsd:enumeration value="DP"/>
<xsd:enumeration value="DR"/>
<xsd:enumeration value="DS"/>
<xsd:enumeration value="DT"/>
<xsd:enumeration value="DU"/>
<xsd:enumeration value="DV"/>
<xsd:enumeration value="DW"/>
<xsd:enumeration value="DX"/>
<xsd:enumeration value="DY"/>
<xsd:enumeration value="EC"/>
<xsd:enumeration value="ED"/>
<xsd:enumeration value="EE"/>
<xsd:enumeration value="EF"/>
<xsd:enumeration value="EG"/>
<xsd:enumeration value="EH"/>
<xsd:enumeration value="EI"/>
<xsd:enumeration value="EN"/>
<xsd:enumeration value="FB"/>
<xsd:enumeration value="FC"/>
<xsd:enumeration value="FD"/>
<xsd:enumeration value="FE"/>
<xsd:enumeration value="FI"/>
<xsd:enumeration value="FL"/>
<xsd:enumeration value="FO"/>
<xsd:enumeration value="FP"/>
<xsd:enumeration value="FR"/>
<xsd:enumeration value="FT"/>
<xsd:enumeration value="FW"/>
<xsd:enumeration value="FX"/>
<xsd:enumeration value="GB"/>
<xsd:enumeration value="GI"/>
<xsd:enumeration value="GL"/>
<xsd:enumeration value="GR"/>
<xsd:enumeration value="GU"/>
<xsd:enumeration value="GY"/>
<xsd:enumeration value="GZ"/>
<xsd:enumeration value="HA"/>
<xsd:enumeration value="HB"/>
<xsd:enumeration value="HC"/>
<xsd:enumeration value="HG"/>
<xsd:enumeration value="HN"/>
<xsd:enumeration value="HR"/>
<xsd:enumeration value="IA"/>
<xsd:enumeration value="IB"/>
<xsd:enumeration value="IC"/>
<xsd:enumeration value="ID"/>
<xsd:enumeration value="IE"/>
<xsd:enumeration value="IF"/>
<xsd:enumeration value="IG"/>
<xsd:enumeration value="IH"/>
<xsd:enumeration value="IK"/>
<xsd:enumeration value="IL"/>
<xsd:enumeration value="IN"/>
<xsd:enumeration value="IZ"/>
<xsd:enumeration value="JB"/>
<xsd:enumeration value="JC"/>
<xsd:enumeration value="JG"/>
<xsd:enumeration value="JR"/>
<xsd:enumeration value="JT"/>
<xsd:enumeration value="JY"/>
<xsd:enumeration value="KG"/>
<xsd:enumeration value="KI"/>
<xsd:enumeration value="LE"/>
<xsd:enumeration value="LG"/>
<xsd:enumeration value="LT"/>
<xsd:enumeration value="LU"/>
<xsd:enumeration value="LV"/>
<xsd:enumeration value="LZ"/>
<xsd:enumeration value="MA"/>
<xsd:enumeration value="MB"/>
<xsd:enumeration value="MC"/>
<xsd:enumeration value="ME"/>
<xsd:enumeration value="MR"/>
<xsd:enumeration value="MS"/>
<xsd:enumeration value="MT"/>
<xsd:enumeration value="MW"/>
<xsd:enumeration value="MX"/>
<xsd:enumeration value="NA"/>
<xsd:enumeration value="NE"/>
<xsd:enumeration value="NF"/>
<xsd:enumeration value="NG"/>
<xsd:enumeration value="NS"/>
<xsd:enumeration value="NT"/>
<xsd:enumeration value="NU"/>
<xsd:enumeration value="NV"/>
<xsd:enumeration value="OA"/>
<xsd:enumeration value="OB"/>
<xsd:enumeration value="OC"/>
<xsd:enumeration value="OD"/>
<xsd:enumeration value="OE"/>
<xsd:enumeration value="OF"/>
<xsd:enumeration value="OK"/>
<xsd:enumeration value="OT"/>
<xsd:enumeration value="OU"/>
<xsd:enumeration value="P2"/>
<xsd:enumeration value="PA"/>
<xsd:enumeration value="PB"/>
<xsd:enumeration value="PC"/>
<xsd:enumeration value="PD"/>
<xsd:enumeration value="PE"/>
<xsd:enumeration value="PF"/>
<xsd:enumeration value="PG"/>
<xsd:enumeration value="PH"/>
<xsd:enumeration value="PI"/>
<xsd:enumeration value="PJ"/>
<xsd:enumeration value="PK"/>
<xsd:enumeration value="PL"/>
<xsd:enumeration value="PN"/>
<xsd:enumeration value="PO"/>
<xsd:enumeration value="PP"/>
<xsd:enumeration value="PR"/>
<xsd:enumeration value="PT"/>
<xsd:enumeration value="PU"/>
<xsd:enumeration value="PV"/>
<xsd:enumeration value="PX"/>
<xsd:enumeration value="PY"/>
<xsd:enumeration value="PZ"/>
<xsd:enumeration value="QA"/>
<xsd:enumeration value="QB"/>
<xsd:enumeration value="QC"/>
<xsd:enumeration value="QD"/>
<xsd:enumeration value="QF"/>
<xsd:enumeration value="QG"/>
<xsd:enumeration value="QH"/>
<xsd:enumeration value="QJ"/>
<xsd:enumeration value="QK"/>
<xsd:enumeration value="QL"/>
<xsd:enumeration value="QM"/>
<xsd:enumeration value="QN"/>
<xsd:enumeration value="QP"/>
<xsd:enumeration value="QQ"/>
<xsd:enumeration value="QR"/>
<xsd:enumeration value="QS"/>
<xsd:enumeration value="RD"/>
<xsd:enumeration value="RG"/>
<xsd:enumeration value="RJ"/>
<xsd:enumeration value="RK"/>
<xsd:enumeration value="RL"/>
<xsd:enumeration value="RO"/>
<xsd:enumeration value="RT"/>
<xsd:enumeration value="RZ"/>
<xsd:enumeration value="SA"/>
<xsd:enumeration value="SB"/>
<xsd:enumeration value="SC"/>
<xsd:enumeration value="SD"/>
<xsd:enumeration value="SE"/>
<xsd:enumeration value="SH"/>
<xsd:enumeration value="SI"/>
<xsd:enumeration value="SK"/>
<xsd:enumeration value="SL"/>
<xsd:enumeration value="SM"/>
<xsd:enumeration value="SO"/>
<xsd:enumeration value="SP"/>
<xsd:enumeration value="SS"/>
<xsd:enumeration value="ST"/>
<xsd:enumeration value="SU"/>
<xsd:enumeration value="SV"/>
<xsd:enumeration value="SW"/>
<xsd:enumeration value="SY"/>
<xsd:enumeration value="SZ"/>
<xsd:enumeration value="T1"/>
<xsd:enumeration value="TB"/>
<xsd:enumeration value="TC"/>
<xsd:enumeration value="TD"/>
<xsd:enumeration value="TE"/>
<xsd:enumeration value="TG"/>
<xsd:enumeration value="TI"/>
<xsd:enumeration value="TK"/>
<xsd:enumeration value="TL"/>
<xsd:enumeration value="TN"/>
<xsd:enumeration value="TO"/>
<xsd:enumeration value="TR"/>
<xsd:enumeration value="TS"/>
<xsd:enumeration value="TT"/>
<xsd:enumeration value="TU"/>
<xsd:enumeration value="TV"/>
<xsd:enumeration value="TW"/>
<xsd:enumeration value="TY"/>
<xsd:enumeration value="TZ"/>
<xsd:enumeration value="UC"/>
<xsd:enumeration value="UN"/>
<xsd:enumeration value="VA"/>
<xsd:enumeration value="VG"/>
<xsd:enumeration value="VI"/>
<xsd:enumeration value="VK"/>
<xsd:enumeration value="VL"/>
<xsd:enumeration value="VN"/>
<xsd:enumeration value="VO"/>
<xsd:enumeration value="VP"/>
<xsd:enumeration value="VQ"/>
<xsd:enumeration value="VR"/>
<xsd:enumeration value="VS"/>
<xsd:enumeration value="VY"/>
<xsd:enumeration value="WA"/>
<xsd:enumeration value="WB"/>
<xsd:enumeration value="WC"/>
<xsd:enumeration value="WD"/>
<xsd:enumeration value="WF"/>
<xsd:enumeration value="WG"/>
<xsd:enumeration value="WH"/>
<xsd:enumeration value="WJ"/>
<xsd:enumeration value="WK"/>
<xsd:enumeration value="WL"/>
<xsd:enumeration value="WM"/>
<xsd:enumeration value="WN"/>
<xsd:enumeration value="WP"/>
<xsd:enumeration value="WQ"/>
<xsd:enumeration value="WR"/>
<xsd:enumeration value="WS"/>
<xsd:enumeration value="WT"/>
<xsd:enumeration value="WU"/>
<xsd:enumeration value="WV"/>
<xsd:enumeration value="WW"/>
<xsd:enumeration value="WX"/>
<xsd:enumeration value="WY"/>
<xsd:enumeration value="WZ"/>
<xsd:enumeration value="XA"/>
<xsd:enumeration value="XB"/>
<xsd:enumeration value="XC"/>
<xsd:enumeration value="XD"/>
<xsd:enumeration value="XF"/>
<xsd:enumeration value="XG"/>
<xsd:enumeration value="XH"/>
<xsd:enumeration value="XJ"/>
<xsd:enumeration value="XK"/>
<xsd:enumeration value="YA"/>
<xsd:enumeration value="YB"/>
<xsd:enumeration value="YC"/>
<xsd:enumeration value="YD"/>
<xsd:enumeration value="YF"/>
<xsd:enumeration value="YG"/>
<xsd:enumeration value="YH"/>
<xsd:enumeration value="YJ"/>
<xsd:enumeration value="YK"/>
<xsd:enumeration value="YL"/>
<xsd:enumeration value="YM"/>
<xsd:enumeration value="YN"/>
<xsd:enumeration value="YP"/>
<xsd:enumeration value="YQ"/>
<xsd:enumeration value="YR"/>
<xsd:enumeration value="YS"/>
<xsd:enumeration value="YT"/>
<xsd:enumeration value="YV"/>
<xsd:enumeration value="YW"/>
<xsd:enumeration value="YX"/>
<xsd:enumeration value="YY"/>
<xsd:enumeration value="YZ"/>
<xsd:enumeration value="ZA"/>
<xsd:enumeration value="ZB"/>
<xsd:enumeration value="ZC"/>
<xsd:enumeration value="ZD"/>
<xsd:enumeration value="ZF"/>
<xsd:enumeration value="ZG"/>
<xsd:enumeration value="ZH"/>
<xsd:enumeration value="ZJ"/>
<xsd:enumeration value="ZK"/>
<xsd:enumeration value="ZL"/>
<xsd:enumeration value="ZM"/>
<xsd:enumeration value="ZN"/>
<xsd:enumeration value="ZP"/>
<xsd:enumeration value="ZQ"/>
<xsd:enumeration value="ZR"/>
<xsd:enumeration value="ZS"/>
<xsd:enumeration value="ZT"/>
<xsd:enumeration value="ZU"/>
<xsd:enumeration value="ZV"/>
<xsd:enumeration value="ZW"/>
<xsd:enumeration value="ZX"/>
<xsd:enumeration value="ZY"/>
<xsd:enumeration value="ZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm67233PackagingMarkingCode="urn:un:unece:uncefact:codelist:standard:UNECE:PackagingMarkingCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:PackagingMarkingCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="PackagingMarkingCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
<xsd:enumeration value="40"/>
<xsd:enumeration value="41"/>
<xsd:enumeration value="42"/>
<xsd:enumeration value="43"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="46"/>
<xsd:enumeration value="47"/>
<xsd:enumeration value="48"/>
<xsd:enumeration value="49"/>
<xsd:enumeration value="53"/>
<xsd:enumeration value="54"/>
<xsd:enumeration value="55"/>
<xsd:enumeration value="56"/>
<xsd:enumeration value="57"/>
<xsd:enumeration value="58"/>
<xsd:enumeration value="59"/>
<xsd:enumeration value="60"/>
<xsd:enumeration value="61"/>
<xsd:enumeration value="62"/>
<xsd:enumeration value="63"/>
<xsd:enumeration value="66"/>
<xsd:enumeration value="68"/>
<xsd:enumeration value="69"/>
<xsd:enumeration value="70"/>
<xsd:enumeration value="71"/>
<xsd:enumeration value="72"/>
<xsd:enumeration value="73"/>
<xsd:enumeration value="74"/>
<xsd:enumeration value="75"/>
<xsd:enumeration value="76"/>
<xsd:enumeration value="77"/>
<xsd:enumeration value="80"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm63035ChargePaying="urn:un:unece:uncefact:codelist:standard:UNECE:PartyRoleCode_ChargePaying:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:PartyRoleCode_ChargePaying:D16A" elementFormDefault="qualified" version="1.4">
<xsd:simpleType name="PartyRoleCodeChargePayingContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="AB"/>
<xsd:enumeration value="AE"/>
<xsd:enumeration value="AF"/>
<xsd:enumeration value="AH"/>
<xsd:enumeration value="AQ"/>
<xsd:enumeration value="AR"/>
<xsd:enumeration value="AT"/>
<xsd:enumeration value="AU"/>
<xsd:enumeration value="CA"/>
<xsd:enumeration value="CG"/>
<xsd:enumeration value="CN"/>
<xsd:enumeration value="CPD"/>
<xsd:enumeration value="CX"/>
<xsd:enumeration value="CZ"/>
<xsd:enumeration value="DGB"/>
<xsd:enumeration value="EX"/>
<xsd:enumeration value="FW"/>
<xsd:enumeration value="GS"/>
<xsd:enumeration value="IM"/>
<xsd:enumeration value="IV"/>
<xsd:enumeration value="PE"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,625 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm63035="urn:un:unece:uncefact:codelist:standard:UNECE:PartyRoleCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:PartyRoleCode:D16A" elementFormDefault="qualified" version="1.6">
<xsd:simpleType name="PartyRoleCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="AA"/>
<xsd:enumeration value="AB"/>
<xsd:enumeration value="AE"/>
<xsd:enumeration value="AF"/>
<xsd:enumeration value="AG"/>
<xsd:enumeration value="AH"/>
<xsd:enumeration value="AI"/>
<xsd:enumeration value="AJ"/>
<xsd:enumeration value="AK"/>
<xsd:enumeration value="AL"/>
<xsd:enumeration value="AM"/>
<xsd:enumeration value="AN"/>
<xsd:enumeration value="AO"/>
<xsd:enumeration value="AP"/>
<xsd:enumeration value="AQ"/>
<xsd:enumeration value="AR"/>
<xsd:enumeration value="AS"/>
<xsd:enumeration value="AT"/>
<xsd:enumeration value="AU"/>
<xsd:enumeration value="AV"/>
<xsd:enumeration value="AW"/>
<xsd:enumeration value="AX"/>
<xsd:enumeration value="AY"/>
<xsd:enumeration value="AZ"/>
<xsd:enumeration value="B1"/>
<xsd:enumeration value="B2"/>
<xsd:enumeration value="BA"/>
<xsd:enumeration value="BB"/>
<xsd:enumeration value="BC"/>
<xsd:enumeration value="BD"/>
<xsd:enumeration value="BE"/>
<xsd:enumeration value="BF"/>
<xsd:enumeration value="BG"/>
<xsd:enumeration value="BH"/>
<xsd:enumeration value="BI"/>
<xsd:enumeration value="BJ"/>
<xsd:enumeration value="BK"/>
<xsd:enumeration value="BL"/>
<xsd:enumeration value="BM"/>
<xsd:enumeration value="BN"/>
<xsd:enumeration value="BO"/>
<xsd:enumeration value="BP"/>
<xsd:enumeration value="BQ"/>
<xsd:enumeration value="BS"/>
<xsd:enumeration value="BT"/>
<xsd:enumeration value="BU"/>
<xsd:enumeration value="BV"/>
<xsd:enumeration value="BW"/>
<xsd:enumeration value="BX"/>
<xsd:enumeration value="BY"/>
<xsd:enumeration value="BZ"/>
<xsd:enumeration value="C1"/>
<xsd:enumeration value="C2"/>
<xsd:enumeration value="CA"/>
<xsd:enumeration value="CB"/>
<xsd:enumeration value="CC"/>
<xsd:enumeration value="CD"/>
<xsd:enumeration value="CE"/>
<xsd:enumeration value="CF"/>
<xsd:enumeration value="CG"/>
<xsd:enumeration value="CH"/>
<xsd:enumeration value="CI"/>
<xsd:enumeration value="CJ"/>
<xsd:enumeration value="CK"/>
<xsd:enumeration value="CL"/>
<xsd:enumeration value="CM"/>
<xsd:enumeration value="CN"/>
<xsd:enumeration value="CNX"/>
<xsd:enumeration value="CNY"/>
<xsd:enumeration value="CNZ"/>
<xsd:enumeration value="CO"/>
<xsd:enumeration value="COA"/>
<xsd:enumeration value="COB"/>
<xsd:enumeration value="COC"/>
<xsd:enumeration value="COD"/>
<xsd:enumeration value="COE"/>
<xsd:enumeration value="COF"/>
<xsd:enumeration value="COG"/>
<xsd:enumeration value="COH"/>
<xsd:enumeration value="COI"/>
<xsd:enumeration value="COJ"/>
<xsd:enumeration value="COK"/>
<xsd:enumeration value="COL"/>
<xsd:enumeration value="COM"/>
<xsd:enumeration value="CON"/>
<xsd:enumeration value="COO"/>
<xsd:enumeration value="COP"/>
<xsd:enumeration value="COQ"/>
<xsd:enumeration value="COR"/>
<xsd:enumeration value="COS"/>
<xsd:enumeration value="COT"/>
<xsd:enumeration value="COU"/>
<xsd:enumeration value="COV"/>
<xsd:enumeration value="COW"/>
<xsd:enumeration value="COX"/>
<xsd:enumeration value="COY"/>
<xsd:enumeration value="COZ"/>
<xsd:enumeration value="CP"/>
<xsd:enumeration value="CPA"/>
<xsd:enumeration value="CPB"/>
<xsd:enumeration value="CPC"/>
<xsd:enumeration value="CPD"/>
<xsd:enumeration value="CPE"/>
<xsd:enumeration value="CPF"/>
<xsd:enumeration value="CPG"/>
<xsd:enumeration value="CPH"/>
<xsd:enumeration value="CPI"/>
<xsd:enumeration value="CPJ"/>
<xsd:enumeration value="CPK"/>
<xsd:enumeration value="CPL"/>
<xsd:enumeration value="CPM"/>
<xsd:enumeration value="CPN"/>
<xsd:enumeration value="CPO"/>
<xsd:enumeration value="CQ"/>
<xsd:enumeration value="CR"/>
<xsd:enumeration value="CS"/>
<xsd:enumeration value="CT"/>
<xsd:enumeration value="CU"/>
<xsd:enumeration value="CV"/>
<xsd:enumeration value="CW"/>
<xsd:enumeration value="CX"/>
<xsd:enumeration value="CY"/>
<xsd:enumeration value="CZ"/>
<xsd:enumeration value="DA"/>
<xsd:enumeration value="DB"/>
<xsd:enumeration value="DC"/>
<xsd:enumeration value="DCP"/>
<xsd:enumeration value="DCQ"/>
<xsd:enumeration value="DCR"/>
<xsd:enumeration value="DCS"/>
<xsd:enumeration value="DCT"/>
<xsd:enumeration value="DCU"/>
<xsd:enumeration value="DCV"/>
<xsd:enumeration value="DCW"/>
<xsd:enumeration value="DCX"/>
<xsd:enumeration value="DCY"/>
<xsd:enumeration value="DCZ"/>
<xsd:enumeration value="DD"/>
<xsd:enumeration value="DDA"/>
<xsd:enumeration value="DDB"/>
<xsd:enumeration value="DDC"/>
<xsd:enumeration value="DDD"/>
<xsd:enumeration value="DDE"/>
<xsd:enumeration value="DDF"/>
<xsd:enumeration value="DDG"/>
<xsd:enumeration value="DDH"/>
<xsd:enumeration value="DDI"/>
<xsd:enumeration value="DDJ"/>
<xsd:enumeration value="DDK"/>
<xsd:enumeration value="DDL"/>
<xsd:enumeration value="DDM"/>
<xsd:enumeration value="DDN"/>
<xsd:enumeration value="DDO"/>
<xsd:enumeration value="DDP"/>
<xsd:enumeration value="DDQ"/>
<xsd:enumeration value="DDR"/>
<xsd:enumeration value="DDS"/>
<xsd:enumeration value="DDT"/>
<xsd:enumeration value="DDU"/>
<xsd:enumeration value="DDV"/>
<xsd:enumeration value="DDW"/>
<xsd:enumeration value="DDX"/>
<xsd:enumeration value="DDY"/>
<xsd:enumeration value="DDZ"/>
<xsd:enumeration value="DE"/>
<xsd:enumeration value="DEA"/>
<xsd:enumeration value="DEB"/>
<xsd:enumeration value="DEC"/>
<xsd:enumeration value="DED"/>
<xsd:enumeration value="DEE"/>
<xsd:enumeration value="DEF"/>
<xsd:enumeration value="DEG"/>
<xsd:enumeration value="DEH"/>
<xsd:enumeration value="DEI"/>
<xsd:enumeration value="DEJ"/>
<xsd:enumeration value="DEK"/>
<xsd:enumeration value="DEL"/>
<xsd:enumeration value="DEM"/>
<xsd:enumeration value="DEN"/>
<xsd:enumeration value="DEO"/>
<xsd:enumeration value="DEP"/>
<xsd:enumeration value="DEQ"/>
<xsd:enumeration value="DER"/>
<xsd:enumeration value="DES"/>
<xsd:enumeration value="DET"/>
<xsd:enumeration value="DEU"/>
<xsd:enumeration value="DEV"/>
<xsd:enumeration value="DEW"/>
<xsd:enumeration value="DEX"/>
<xsd:enumeration value="DEY"/>
<xsd:enumeration value="DEZ"/>
<xsd:enumeration value="DF"/>
<xsd:enumeration value="DFA"/>
<xsd:enumeration value="DFB"/>
<xsd:enumeration value="DFC"/>
<xsd:enumeration value="DFD"/>
<xsd:enumeration value="DFE"/>
<xsd:enumeration value="DFF"/>
<xsd:enumeration value="DFG"/>
<xsd:enumeration value="DFH"/>
<xsd:enumeration value="DFI"/>
<xsd:enumeration value="DFJ"/>
<xsd:enumeration value="DFK"/>
<xsd:enumeration value="DFL"/>
<xsd:enumeration value="DFM"/>
<xsd:enumeration value="DFN"/>
<xsd:enumeration value="DFO"/>
<xsd:enumeration value="DFP"/>
<xsd:enumeration value="DFQ"/>
<xsd:enumeration value="DFR"/>
<xsd:enumeration value="DFS"/>
<xsd:enumeration value="DFT"/>
<xsd:enumeration value="DFU"/>
<xsd:enumeration value="DFV"/>
<xsd:enumeration value="DFW"/>
<xsd:enumeration value="DFX"/>
<xsd:enumeration value="DFY"/>
<xsd:enumeration value="DFZ"/>
<xsd:enumeration value="DG"/>
<xsd:enumeration value="DGA"/>
<xsd:enumeration value="DGB"/>
<xsd:enumeration value="DGC"/>
<xsd:enumeration value="DGD"/>
<xsd:enumeration value="DGE"/>
<xsd:enumeration value="DH"/>
<xsd:enumeration value="DI"/>
<xsd:enumeration value="DJ"/>
<xsd:enumeration value="DK"/>
<xsd:enumeration value="DL"/>
<xsd:enumeration value="DM"/>
<xsd:enumeration value="DN"/>
<xsd:enumeration value="DO"/>
<xsd:enumeration value="DP"/>
<xsd:enumeration value="DQ"/>
<xsd:enumeration value="DR"/>
<xsd:enumeration value="DS"/>
<xsd:enumeration value="DT"/>
<xsd:enumeration value="DU"/>
<xsd:enumeration value="DV"/>
<xsd:enumeration value="DW"/>
<xsd:enumeration value="DX"/>
<xsd:enumeration value="DY"/>
<xsd:enumeration value="DZ"/>
<xsd:enumeration value="EA"/>
<xsd:enumeration value="EB"/>
<xsd:enumeration value="EC"/>
<xsd:enumeration value="ED"/>
<xsd:enumeration value="EE"/>
<xsd:enumeration value="EF"/>
<xsd:enumeration value="EG"/>
<xsd:enumeration value="EH"/>
<xsd:enumeration value="EI"/>
<xsd:enumeration value="EJ"/>
<xsd:enumeration value="EK"/>
<xsd:enumeration value="EL"/>
<xsd:enumeration value="EM"/>
<xsd:enumeration value="EN"/>
<xsd:enumeration value="EO"/>
<xsd:enumeration value="EP"/>
<xsd:enumeration value="EQ"/>
<xsd:enumeration value="ER"/>
<xsd:enumeration value="ES"/>
<xsd:enumeration value="ET"/>
<xsd:enumeration value="EU"/>
<xsd:enumeration value="EV"/>
<xsd:enumeration value="EW"/>
<xsd:enumeration value="EX"/>
<xsd:enumeration value="EY"/>
<xsd:enumeration value="EZ"/>
<xsd:enumeration value="FA"/>
<xsd:enumeration value="FB"/>
<xsd:enumeration value="FC"/>
<xsd:enumeration value="FD"/>
<xsd:enumeration value="FE"/>
<xsd:enumeration value="FF"/>
<xsd:enumeration value="FG"/>
<xsd:enumeration value="FH"/>
<xsd:enumeration value="FI"/>
<xsd:enumeration value="FJ"/>
<xsd:enumeration value="FK"/>
<xsd:enumeration value="FL"/>
<xsd:enumeration value="FM"/>
<xsd:enumeration value="FN"/>
<xsd:enumeration value="FO"/>
<xsd:enumeration value="FP"/>
<xsd:enumeration value="FQ"/>
<xsd:enumeration value="FR"/>
<xsd:enumeration value="FS"/>
<xsd:enumeration value="FT"/>
<xsd:enumeration value="FU"/>
<xsd:enumeration value="FV"/>
<xsd:enumeration value="FW"/>
<xsd:enumeration value="FX"/>
<xsd:enumeration value="FY"/>
<xsd:enumeration value="FZ"/>
<xsd:enumeration value="GA"/>
<xsd:enumeration value="GB"/>
<xsd:enumeration value="GC"/>
<xsd:enumeration value="GD"/>
<xsd:enumeration value="GE"/>
<xsd:enumeration value="GF"/>
<xsd:enumeration value="GH"/>
<xsd:enumeration value="GI"/>
<xsd:enumeration value="GJ"/>
<xsd:enumeration value="GK"/>
<xsd:enumeration value="GL"/>
<xsd:enumeration value="GM"/>
<xsd:enumeration value="GN"/>
<xsd:enumeration value="GO"/>
<xsd:enumeration value="GP"/>
<xsd:enumeration value="GQ"/>
<xsd:enumeration value="GR"/>
<xsd:enumeration value="GS"/>
<xsd:enumeration value="GT"/>
<xsd:enumeration value="GU"/>
<xsd:enumeration value="GV"/>
<xsd:enumeration value="GW"/>
<xsd:enumeration value="GX"/>
<xsd:enumeration value="GY"/>
<xsd:enumeration value="GZ"/>
<xsd:enumeration value="HA"/>
<xsd:enumeration value="HB"/>
<xsd:enumeration value="HC"/>
<xsd:enumeration value="HD"/>
<xsd:enumeration value="HE"/>
<xsd:enumeration value="HF"/>
<xsd:enumeration value="HG"/>
<xsd:enumeration value="HH"/>
<xsd:enumeration value="HI"/>
<xsd:enumeration value="HJ"/>
<xsd:enumeration value="HK"/>
<xsd:enumeration value="HL"/>
<xsd:enumeration value="HM"/>
<xsd:enumeration value="HN"/>
<xsd:enumeration value="HO"/>
<xsd:enumeration value="HP"/>
<xsd:enumeration value="HQ"/>
<xsd:enumeration value="HR"/>
<xsd:enumeration value="HS"/>
<xsd:enumeration value="HT"/>
<xsd:enumeration value="HU"/>
<xsd:enumeration value="HV"/>
<xsd:enumeration value="HW"/>
<xsd:enumeration value="HX"/>
<xsd:enumeration value="HY"/>
<xsd:enumeration value="HZ"/>
<xsd:enumeration value="I1"/>
<xsd:enumeration value="I2"/>
<xsd:enumeration value="IB"/>
<xsd:enumeration value="IC"/>
<xsd:enumeration value="ID"/>
<xsd:enumeration value="IE"/>
<xsd:enumeration value="IF"/>
<xsd:enumeration value="IG"/>
<xsd:enumeration value="IH"/>
<xsd:enumeration value="II"/>
<xsd:enumeration value="IJ"/>
<xsd:enumeration value="IL"/>
<xsd:enumeration value="IM"/>
<xsd:enumeration value="IN"/>
<xsd:enumeration value="IO"/>
<xsd:enumeration value="IP"/>
<xsd:enumeration value="IQ"/>
<xsd:enumeration value="IR"/>
<xsd:enumeration value="IS"/>
<xsd:enumeration value="IT"/>
<xsd:enumeration value="IU"/>
<xsd:enumeration value="IV"/>
<xsd:enumeration value="IW"/>
<xsd:enumeration value="IX"/>
<xsd:enumeration value="IY"/>
<xsd:enumeration value="IZ"/>
<xsd:enumeration value="JA"/>
<xsd:enumeration value="JB"/>
<xsd:enumeration value="JC"/>
<xsd:enumeration value="JD"/>
<xsd:enumeration value="JE"/>
<xsd:enumeration value="JF"/>
<xsd:enumeration value="JG"/>
<xsd:enumeration value="JH"/>
<xsd:enumeration value="LA"/>
<xsd:enumeration value="LB"/>
<xsd:enumeration value="LC"/>
<xsd:enumeration value="LD"/>
<xsd:enumeration value="LE"/>
<xsd:enumeration value="LF"/>
<xsd:enumeration value="LG"/>
<xsd:enumeration value="LH"/>
<xsd:enumeration value="LI"/>
<xsd:enumeration value="LJ"/>
<xsd:enumeration value="LK"/>
<xsd:enumeration value="LL"/>
<xsd:enumeration value="LM"/>
<xsd:enumeration value="LN"/>
<xsd:enumeration value="LO"/>
<xsd:enumeration value="LP"/>
<xsd:enumeration value="LQ"/>
<xsd:enumeration value="LR"/>
<xsd:enumeration value="LS"/>
<xsd:enumeration value="LT"/>
<xsd:enumeration value="LU"/>
<xsd:enumeration value="LV"/>
<xsd:enumeration value="MA"/>
<xsd:enumeration value="MAD"/>
<xsd:enumeration value="MDR"/>
<xsd:enumeration value="MF"/>
<xsd:enumeration value="MG"/>
<xsd:enumeration value="MI"/>
<xsd:enumeration value="MOP"/>
<xsd:enumeration value="MP"/>
<xsd:enumeration value="MR"/>
<xsd:enumeration value="MS"/>
<xsd:enumeration value="MT"/>
<xsd:enumeration value="N2"/>
<xsd:enumeration value="NI"/>
<xsd:enumeration value="OA"/>
<xsd:enumeration value="OB"/>
<xsd:enumeration value="OC"/>
<xsd:enumeration value="OD"/>
<xsd:enumeration value="OE"/>
<xsd:enumeration value="OF"/>
<xsd:enumeration value="OG"/>
<xsd:enumeration value="OH"/>
<xsd:enumeration value="OI"/>
<xsd:enumeration value="OJ"/>
<xsd:enumeration value="OK"/>
<xsd:enumeration value="OL"/>
<xsd:enumeration value="OM"/>
<xsd:enumeration value="ON"/>
<xsd:enumeration value="OO"/>
<xsd:enumeration value="OP"/>
<xsd:enumeration value="OQ"/>
<xsd:enumeration value="OR"/>
<xsd:enumeration value="OS"/>
<xsd:enumeration value="OT"/>
<xsd:enumeration value="OU"/>
<xsd:enumeration value="OV"/>
<xsd:enumeration value="OW"/>
<xsd:enumeration value="OX"/>
<xsd:enumeration value="OY"/>
<xsd:enumeration value="OZ"/>
<xsd:enumeration value="P1"/>
<xsd:enumeration value="P2"/>
<xsd:enumeration value="P3"/>
<xsd:enumeration value="P4"/>
<xsd:enumeration value="PA"/>
<xsd:enumeration value="PB"/>
<xsd:enumeration value="PC"/>
<xsd:enumeration value="PD"/>
<xsd:enumeration value="PE"/>
<xsd:enumeration value="PF"/>
<xsd:enumeration value="PG"/>
<xsd:enumeration value="PH"/>
<xsd:enumeration value="PI"/>
<xsd:enumeration value="PJ"/>
<xsd:enumeration value="PK"/>
<xsd:enumeration value="PM"/>
<xsd:enumeration value="PN"/>
<xsd:enumeration value="PO"/>
<xsd:enumeration value="POA"/>
<xsd:enumeration value="PQ"/>
<xsd:enumeration value="PR"/>
<xsd:enumeration value="PS"/>
<xsd:enumeration value="PT"/>
<xsd:enumeration value="PW"/>
<xsd:enumeration value="PX"/>
<xsd:enumeration value="PY"/>
<xsd:enumeration value="PZ"/>
<xsd:enumeration value="RA"/>
<xsd:enumeration value="RB"/>
<xsd:enumeration value="RCA"/>
<xsd:enumeration value="RCR"/>
<xsd:enumeration value="RE"/>
<xsd:enumeration value="RF"/>
<xsd:enumeration value="RH"/>
<xsd:enumeration value="RI"/>
<xsd:enumeration value="RL"/>
<xsd:enumeration value="RM"/>
<xsd:enumeration value="RP"/>
<xsd:enumeration value="RS"/>
<xsd:enumeration value="RV"/>
<xsd:enumeration value="RW"/>
<xsd:enumeration value="SB"/>
<xsd:enumeration value="SE"/>
<xsd:enumeration value="SF"/>
<xsd:enumeration value="SG"/>
<xsd:enumeration value="SI"/>
<xsd:enumeration value="SN"/>
<xsd:enumeration value="SO"/>
<xsd:enumeration value="SPC"/>
<xsd:enumeration value="SR"/>
<xsd:enumeration value="SS"/>
<xsd:enumeration value="ST"/>
<xsd:enumeration value="SU"/>
<xsd:enumeration value="SX"/>
<xsd:enumeration value="SY"/>
<xsd:enumeration value="SZ"/>
<xsd:enumeration value="TA"/>
<xsd:enumeration value="TB"/>
<xsd:enumeration value="TC"/>
<xsd:enumeration value="TCP"/>
<xsd:enumeration value="TCR"/>
<xsd:enumeration value="TD"/>
<xsd:enumeration value="TE"/>
<xsd:enumeration value="TF"/>
<xsd:enumeration value="TG"/>
<xsd:enumeration value="TH"/>
<xsd:enumeration value="TI"/>
<xsd:enumeration value="TJ"/>
<xsd:enumeration value="TK"/>
<xsd:enumeration value="TL"/>
<xsd:enumeration value="TM"/>
<xsd:enumeration value="TN"/>
<xsd:enumeration value="TO"/>
<xsd:enumeration value="TP"/>
<xsd:enumeration value="TQ"/>
<xsd:enumeration value="TR"/>
<xsd:enumeration value="TS"/>
<xsd:enumeration value="TT"/>
<xsd:enumeration value="TU"/>
<xsd:enumeration value="TV"/>
<xsd:enumeration value="TW"/>
<xsd:enumeration value="TX"/>
<xsd:enumeration value="TY"/>
<xsd:enumeration value="TZ"/>
<xsd:enumeration value="UA"/>
<xsd:enumeration value="UB"/>
<xsd:enumeration value="UC"/>
<xsd:enumeration value="UD"/>
<xsd:enumeration value="UE"/>
<xsd:enumeration value="UF"/>
<xsd:enumeration value="UG"/>
<xsd:enumeration value="UH"/>
<xsd:enumeration value="UHP"/>
<xsd:enumeration value="UI"/>
<xsd:enumeration value="UJ"/>
<xsd:enumeration value="UK"/>
<xsd:enumeration value="UL"/>
<xsd:enumeration value="UM"/>
<xsd:enumeration value="UN"/>
<xsd:enumeration value="UO"/>
<xsd:enumeration value="UP"/>
<xsd:enumeration value="UQ"/>
<xsd:enumeration value="UR"/>
<xsd:enumeration value="US"/>
<xsd:enumeration value="UT"/>
<xsd:enumeration value="UU"/>
<xsd:enumeration value="UV"/>
<xsd:enumeration value="UW"/>
<xsd:enumeration value="UX"/>
<xsd:enumeration value="UY"/>
<xsd:enumeration value="UZ"/>
<xsd:enumeration value="VA"/>
<xsd:enumeration value="VB"/>
<xsd:enumeration value="VC"/>
<xsd:enumeration value="VE"/>
<xsd:enumeration value="VF"/>
<xsd:enumeration value="VG"/>
<xsd:enumeration value="VH"/>
<xsd:enumeration value="VI"/>
<xsd:enumeration value="VJ"/>
<xsd:enumeration value="VK"/>
<xsd:enumeration value="VL"/>
<xsd:enumeration value="VM"/>
<xsd:enumeration value="VN"/>
<xsd:enumeration value="VO"/>
<xsd:enumeration value="VP"/>
<xsd:enumeration value="VQ"/>
<xsd:enumeration value="VR"/>
<xsd:enumeration value="VS"/>
<xsd:enumeration value="VT"/>
<xsd:enumeration value="VU"/>
<xsd:enumeration value="VV"/>
<xsd:enumeration value="VW"/>
<xsd:enumeration value="VX"/>
<xsd:enumeration value="VY"/>
<xsd:enumeration value="VZ"/>
<xsd:enumeration value="WA"/>
<xsd:enumeration value="WB"/>
<xsd:enumeration value="WC"/>
<xsd:enumeration value="WD"/>
<xsd:enumeration value="WE"/>
<xsd:enumeration value="WF"/>
<xsd:enumeration value="WG"/>
<xsd:enumeration value="WH"/>
<xsd:enumeration value="WI"/>
<xsd:enumeration value="WJ"/>
<xsd:enumeration value="WK"/>
<xsd:enumeration value="WL"/>
<xsd:enumeration value="WM"/>
<xsd:enumeration value="WN"/>
<xsd:enumeration value="WO"/>
<xsd:enumeration value="WP"/>
<xsd:enumeration value="WPA"/>
<xsd:enumeration value="WQ"/>
<xsd:enumeration value="WR"/>
<xsd:enumeration value="WS"/>
<xsd:enumeration value="WT"/>
<xsd:enumeration value="WU"/>
<xsd:enumeration value="WV"/>
<xsd:enumeration value="WW"/>
<xsd:enumeration value="WX"/>
<xsd:enumeration value="WY"/>
<xsd:enumeration value="WZ"/>
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm64431="urn:un:unece:uncefact:codelist:standard:UNECE:PaymentGuaranteeMeansCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:PaymentGuaranteeMeansCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="PaymentGuaranteeMeansCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm64435="urn:un:unece:uncefact:codelist:standard:UNECE:PaymentMeansChannelCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:PaymentMeansChannelCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="PaymentMeansChannelCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm64461="urn:un:unece:uncefact:codelist:standard:UNECE:PaymentMeansCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:PaymentMeansCode:D16A" elementFormDefault="qualified" version="1.2">
<xsd:simpleType name="PaymentMeansCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="30"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
<xsd:enumeration value="40"/>
<xsd:enumeration value="41"/>
<xsd:enumeration value="42"/>
<xsd:enumeration value="43"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="46"/>
<xsd:enumeration value="47"/>
<xsd:enumeration value="48"/>
<xsd:enumeration value="49"/>
<xsd:enumeration value="50"/>
<xsd:enumeration value="51"/>
<xsd:enumeration value="52"/>
<xsd:enumeration value="53"/>
<xsd:enumeration value="54"/>
<xsd:enumeration value="55"/>
<xsd:enumeration value="56"/>
<xsd:enumeration value="57"/>
<xsd:enumeration value="58"/>
<xsd:enumeration value="59"/>
<xsd:enumeration value="60"/>
<xsd:enumeration value="61"/>
<xsd:enumeration value="62"/>
<xsd:enumeration value="63"/>
<xsd:enumeration value="64"/>
<xsd:enumeration value="65"/>
<xsd:enumeration value="66"/>
<xsd:enumeration value="67"/>
<xsd:enumeration value="68"/>
<xsd:enumeration value="70"/>
<xsd:enumeration value="74"/>
<xsd:enumeration value="75"/>
<xsd:enumeration value="76"/>
<xsd:enumeration value="77"/>
<xsd:enumeration value="78"/>
<xsd:enumeration value="91"/>
<xsd:enumeration value="92"/>
<xsd:enumeration value="93"/>
<xsd:enumeration value="94"/>
<xsd:enumeration value="95"/>
<xsd:enumeration value="96"/>
<xsd:enumeration value="97"/>
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm64279="urn:un:unece:uncefact:codelist:standard:UNECE:PaymentTermsTypeCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:PaymentTermsTypeCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="PaymentTermsTypeCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="14"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="30"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
<xsd:enumeration value="40"/>
<xsd:enumeration value="41"/>
<xsd:enumeration value="42"/>
<xsd:enumeration value="43"/>
<xsd:enumeration value="44"/>
<xsd:enumeration value="45"/>
<xsd:enumeration value="46"/>
<xsd:enumeration value="47"/>
<xsd:enumeration value="48"/>
<xsd:enumeration value="49"/>
<xsd:enumeration value="50"/>
<xsd:enumeration value="51"/>
<xsd:enumeration value="52"/>
<xsd:enumeration value="53"/>
<xsd:enumeration value="54"/>
<xsd:enumeration value="55"/>
<xsd:enumeration value="56"/>
<xsd:enumeration value="57"/>
<xsd:enumeration value="58"/>
<xsd:enumeration value="59"/>
<xsd:enumeration value="60"/>
<xsd:enumeration value="61"/>
<xsd:enumeration value="62"/>
<xsd:enumeration value="63"/>
<xsd:enumeration value="64"/>
<xsd:enumeration value="65"/>
<xsd:enumeration value="66"/>
<xsd:enumeration value="67"/>
<xsd:enumeration value="68"/>
<xsd:enumeration value="69"/>
<xsd:enumeration value="70"/>
<xsd:enumeration value="71"/>
<xsd:enumeration value="72"/>
<xsd:enumeration value="73"/>
<xsd:enumeration value="74"/>
<xsd:enumeration value="75"/>
<xsd:enumeration value="76"/>
<xsd:enumeration value="77"/>
<xsd:enumeration value="78"/>
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm65375="urn:un:unece:uncefact:codelist:standard:UNECE:PriceTypeCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:PriceTypeCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="PriceTypeCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="AA"/>
<xsd:enumeration value="AB"/>
<xsd:enumeration value="AC"/>
<xsd:enumeration value="AD"/>
<xsd:enumeration value="AE"/>
<xsd:enumeration value="AF"/>
<xsd:enumeration value="AI"/>
<xsd:enumeration value="AQ"/>
<xsd:enumeration value="CA"/>
<xsd:enumeration value="CT"/>
<xsd:enumeration value="CU"/>
<xsd:enumeration value="DI"/>
<xsd:enumeration value="EC"/>
<xsd:enumeration value="NW"/>
<xsd:enumeration value="PC"/>
<xsd:enumeration value="PE"/>
<xsd:enumeration value="PK"/>
<xsd:enumeration value="PL"/>
<xsd:enumeration value="PT"/>
<xsd:enumeration value="PU"/>
<xsd:enumeration value="PV"/>
<xsd:enumeration value="PW"/>
<xsd:enumeration value="QT"/>
<xsd:enumeration value="SR"/>
<xsd:enumeration value="TB"/>
<xsd:enumeration value="TU"/>
<xsd:enumeration value="TW"/>
<xsd:enumeration value="WH"/>
<xsd:enumeration value="WI"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,834 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm61153ReferenceTypeCode="urn:un:unece:uncefact:codelist:standard:UNECE:ReferenceTypeCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:ReferenceTypeCode:D16A" elementFormDefault="qualified" version="1.9">
<xsd:simpleType name="ReferenceTypeCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="AAA"/>
<xsd:enumeration value="AAB"/>
<xsd:enumeration value="AAC"/>
<xsd:enumeration value="AAD"/>
<xsd:enumeration value="AAE"/>
<xsd:enumeration value="AAF"/>
<xsd:enumeration value="AAG"/>
<xsd:enumeration value="AAH"/>
<xsd:enumeration value="AAI"/>
<xsd:enumeration value="AAJ"/>
<xsd:enumeration value="AAK"/>
<xsd:enumeration value="AAL"/>
<xsd:enumeration value="AAM"/>
<xsd:enumeration value="AAN"/>
<xsd:enumeration value="AAO"/>
<xsd:enumeration value="AAP"/>
<xsd:enumeration value="AAQ"/>
<xsd:enumeration value="AAR"/>
<xsd:enumeration value="AAS"/>
<xsd:enumeration value="AAT"/>
<xsd:enumeration value="AAU"/>
<xsd:enumeration value="AAV"/>
<xsd:enumeration value="AAW"/>
<xsd:enumeration value="AAX"/>
<xsd:enumeration value="AAY"/>
<xsd:enumeration value="AAZ"/>
<xsd:enumeration value="ABA"/>
<xsd:enumeration value="ABB"/>
<xsd:enumeration value="ABC"/>
<xsd:enumeration value="ABD"/>
<xsd:enumeration value="ABE"/>
<xsd:enumeration value="ABF"/>
<xsd:enumeration value="ABG"/>
<xsd:enumeration value="ABH"/>
<xsd:enumeration value="ABI"/>
<xsd:enumeration value="ABJ"/>
<xsd:enumeration value="ABK"/>
<xsd:enumeration value="ABL"/>
<xsd:enumeration value="ABM"/>
<xsd:enumeration value="ABN"/>
<xsd:enumeration value="ABO"/>
<xsd:enumeration value="ABP"/>
<xsd:enumeration value="ABQ"/>
<xsd:enumeration value="ABR"/>
<xsd:enumeration value="ABS"/>
<xsd:enumeration value="ABT"/>
<xsd:enumeration value="ABU"/>
<xsd:enumeration value="ABV"/>
<xsd:enumeration value="ABW"/>
<xsd:enumeration value="ABX"/>
<xsd:enumeration value="ABY"/>
<xsd:enumeration value="ABZ"/>
<xsd:enumeration value="AC"/>
<xsd:enumeration value="ACA"/>
<xsd:enumeration value="ACB"/>
<xsd:enumeration value="ACC"/>
<xsd:enumeration value="ACD"/>
<xsd:enumeration value="ACE"/>
<xsd:enumeration value="ACF"/>
<xsd:enumeration value="ACG"/>
<xsd:enumeration value="ACH"/>
<xsd:enumeration value="ACI"/>
<xsd:enumeration value="ACJ"/>
<xsd:enumeration value="ACK"/>
<xsd:enumeration value="ACL"/>
<xsd:enumeration value="ACN"/>
<xsd:enumeration value="ACO"/>
<xsd:enumeration value="ACP"/>
<xsd:enumeration value="ACQ"/>
<xsd:enumeration value="ACR"/>
<xsd:enumeration value="ACT"/>
<xsd:enumeration value="ACU"/>
<xsd:enumeration value="ACV"/>
<xsd:enumeration value="ACW"/>
<xsd:enumeration value="ACX"/>
<xsd:enumeration value="ACY"/>
<xsd:enumeration value="ACZ"/>
<xsd:enumeration value="ADA"/>
<xsd:enumeration value="ADB"/>
<xsd:enumeration value="ADC"/>
<xsd:enumeration value="ADD"/>
<xsd:enumeration value="ADE"/>
<xsd:enumeration value="ADF"/>
<xsd:enumeration value="ADG"/>
<xsd:enumeration value="ADI"/>
<xsd:enumeration value="ADJ"/>
<xsd:enumeration value="ADK"/>
<xsd:enumeration value="ADL"/>
<xsd:enumeration value="ADM"/>
<xsd:enumeration value="ADN"/>
<xsd:enumeration value="ADO"/>
<xsd:enumeration value="ADP"/>
<xsd:enumeration value="ADQ"/>
<xsd:enumeration value="ADT"/>
<xsd:enumeration value="ADU"/>
<xsd:enumeration value="ADV"/>
<xsd:enumeration value="ADW"/>
<xsd:enumeration value="ADX"/>
<xsd:enumeration value="ADY"/>
<xsd:enumeration value="ADZ"/>
<xsd:enumeration value="AE"/>
<xsd:enumeration value="AEA"/>
<xsd:enumeration value="AEB"/>
<xsd:enumeration value="AEC"/>
<xsd:enumeration value="AED"/>
<xsd:enumeration value="AEE"/>
<xsd:enumeration value="AEF"/>
<xsd:enumeration value="AEG"/>
<xsd:enumeration value="AEH"/>
<xsd:enumeration value="AEI"/>
<xsd:enumeration value="AEJ"/>
<xsd:enumeration value="AEK"/>
<xsd:enumeration value="AEL"/>
<xsd:enumeration value="AEM"/>
<xsd:enumeration value="AEN"/>
<xsd:enumeration value="AEO"/>
<xsd:enumeration value="AEP"/>
<xsd:enumeration value="AEQ"/>
<xsd:enumeration value="AER"/>
<xsd:enumeration value="AES"/>
<xsd:enumeration value="AET"/>
<xsd:enumeration value="AEU"/>
<xsd:enumeration value="AEV"/>
<xsd:enumeration value="AEW"/>
<xsd:enumeration value="AEX"/>
<xsd:enumeration value="AEY"/>
<xsd:enumeration value="AEZ"/>
<xsd:enumeration value="AF"/>
<xsd:enumeration value="AFA"/>
<xsd:enumeration value="AFB"/>
<xsd:enumeration value="AFC"/>
<xsd:enumeration value="AFD"/>
<xsd:enumeration value="AFE"/>
<xsd:enumeration value="AFF"/>
<xsd:enumeration value="AFG"/>
<xsd:enumeration value="AFH"/>
<xsd:enumeration value="AFI"/>
<xsd:enumeration value="AFJ"/>
<xsd:enumeration value="AFK"/>
<xsd:enumeration value="AFL"/>
<xsd:enumeration value="AFM"/>
<xsd:enumeration value="AFN"/>
<xsd:enumeration value="AFO"/>
<xsd:enumeration value="AFP"/>
<xsd:enumeration value="AFQ"/>
<xsd:enumeration value="AFR"/>
<xsd:enumeration value="AFS"/>
<xsd:enumeration value="AFT"/>
<xsd:enumeration value="AFU"/>
<xsd:enumeration value="AFV"/>
<xsd:enumeration value="AFW"/>
<xsd:enumeration value="AFX"/>
<xsd:enumeration value="AFY"/>
<xsd:enumeration value="AFZ"/>
<xsd:enumeration value="AGA"/>
<xsd:enumeration value="AGB"/>
<xsd:enumeration value="AGC"/>
<xsd:enumeration value="AGD"/>
<xsd:enumeration value="AGE"/>
<xsd:enumeration value="AGF"/>
<xsd:enumeration value="AGG"/>
<xsd:enumeration value="AGH"/>
<xsd:enumeration value="AGI"/>
<xsd:enumeration value="AGJ"/>
<xsd:enumeration value="AGK"/>
<xsd:enumeration value="AGL"/>
<xsd:enumeration value="AGM"/>
<xsd:enumeration value="AGN"/>
<xsd:enumeration value="AGO"/>
<xsd:enumeration value="AGP"/>
<xsd:enumeration value="AGQ"/>
<xsd:enumeration value="AGR"/>
<xsd:enumeration value="AGS"/>
<xsd:enumeration value="AGT"/>
<xsd:enumeration value="AGU"/>
<xsd:enumeration value="AGV"/>
<xsd:enumeration value="AGW"/>
<xsd:enumeration value="AGX"/>
<xsd:enumeration value="AGY"/>
<xsd:enumeration value="AGZ"/>
<xsd:enumeration value="AHA"/>
<xsd:enumeration value="AHB"/>
<xsd:enumeration value="AHC"/>
<xsd:enumeration value="AHD"/>
<xsd:enumeration value="AHE"/>
<xsd:enumeration value="AHF"/>
<xsd:enumeration value="AHG"/>
<xsd:enumeration value="AHH"/>
<xsd:enumeration value="AHI"/>
<xsd:enumeration value="AHJ"/>
<xsd:enumeration value="AHK"/>
<xsd:enumeration value="AHL"/>
<xsd:enumeration value="AHM"/>
<xsd:enumeration value="AHN"/>
<xsd:enumeration value="AHO"/>
<xsd:enumeration value="AHP"/>
<xsd:enumeration value="AHQ"/>
<xsd:enumeration value="AHR"/>
<xsd:enumeration value="AHS"/>
<xsd:enumeration value="AHT"/>
<xsd:enumeration value="AHU"/>
<xsd:enumeration value="AHV"/>
<xsd:enumeration value="AHX"/>
<xsd:enumeration value="AHY"/>
<xsd:enumeration value="AHZ"/>
<xsd:enumeration value="AIA"/>
<xsd:enumeration value="AIB"/>
<xsd:enumeration value="AIC"/>
<xsd:enumeration value="AID"/>
<xsd:enumeration value="AIE"/>
<xsd:enumeration value="AIF"/>
<xsd:enumeration value="AIG"/>
<xsd:enumeration value="AIH"/>
<xsd:enumeration value="AII"/>
<xsd:enumeration value="AIJ"/>
<xsd:enumeration value="AIK"/>
<xsd:enumeration value="AIL"/>
<xsd:enumeration value="AIM"/>
<xsd:enumeration value="AIN"/>
<xsd:enumeration value="AIO"/>
<xsd:enumeration value="AIP"/>
<xsd:enumeration value="AIQ"/>
<xsd:enumeration value="AIR"/>
<xsd:enumeration value="AIS"/>
<xsd:enumeration value="AIT"/>
<xsd:enumeration value="AIU"/>
<xsd:enumeration value="AIV"/>
<xsd:enumeration value="AIW"/>
<xsd:enumeration value="AIX"/>
<xsd:enumeration value="AIY"/>
<xsd:enumeration value="AIZ"/>
<xsd:enumeration value="AJA"/>
<xsd:enumeration value="AJB"/>
<xsd:enumeration value="AJC"/>
<xsd:enumeration value="AJD"/>
<xsd:enumeration value="AJE"/>
<xsd:enumeration value="AJF"/>
<xsd:enumeration value="AJG"/>
<xsd:enumeration value="AJH"/>
<xsd:enumeration value="AJI"/>
<xsd:enumeration value="AJJ"/>
<xsd:enumeration value="AJK"/>
<xsd:enumeration value="AJL"/>
<xsd:enumeration value="AJM"/>
<xsd:enumeration value="AJN"/>
<xsd:enumeration value="AJO"/>
<xsd:enumeration value="AJP"/>
<xsd:enumeration value="AJQ"/>
<xsd:enumeration value="AJR"/>
<xsd:enumeration value="AJS"/>
<xsd:enumeration value="AJT"/>
<xsd:enumeration value="AJU"/>
<xsd:enumeration value="AJV"/>
<xsd:enumeration value="AJW"/>
<xsd:enumeration value="AJX"/>
<xsd:enumeration value="AJY"/>
<xsd:enumeration value="AJZ"/>
<xsd:enumeration value="AKA"/>
<xsd:enumeration value="AKB"/>
<xsd:enumeration value="AKC"/>
<xsd:enumeration value="AKD"/>
<xsd:enumeration value="AKE"/>
<xsd:enumeration value="AKF"/>
<xsd:enumeration value="AKG"/>
<xsd:enumeration value="AKH"/>
<xsd:enumeration value="AKI"/>
<xsd:enumeration value="AKJ"/>
<xsd:enumeration value="AKK"/>
<xsd:enumeration value="AKL"/>
<xsd:enumeration value="AKM"/>
<xsd:enumeration value="AKN"/>
<xsd:enumeration value="AKO"/>
<xsd:enumeration value="AKP"/>
<xsd:enumeration value="AKQ"/>
<xsd:enumeration value="AKR"/>
<xsd:enumeration value="AKS"/>
<xsd:enumeration value="AKT"/>
<xsd:enumeration value="AKU"/>
<xsd:enumeration value="AKV"/>
<xsd:enumeration value="AKW"/>
<xsd:enumeration value="AKX"/>
<xsd:enumeration value="AKY"/>
<xsd:enumeration value="AKZ"/>
<xsd:enumeration value="ALA"/>
<xsd:enumeration value="ALB"/>
<xsd:enumeration value="ALC"/>
<xsd:enumeration value="ALD"/>
<xsd:enumeration value="ALE"/>
<xsd:enumeration value="ALF"/>
<xsd:enumeration value="ALG"/>
<xsd:enumeration value="ALH"/>
<xsd:enumeration value="ALI"/>
<xsd:enumeration value="ALJ"/>
<xsd:enumeration value="ALK"/>
<xsd:enumeration value="ALL"/>
<xsd:enumeration value="ALM"/>
<xsd:enumeration value="ALN"/>
<xsd:enumeration value="ALO"/>
<xsd:enumeration value="ALP"/>
<xsd:enumeration value="ALQ"/>
<xsd:enumeration value="ALR"/>
<xsd:enumeration value="ALS"/>
<xsd:enumeration value="ALT"/>
<xsd:enumeration value="ALU"/>
<xsd:enumeration value="ALV"/>
<xsd:enumeration value="ALW"/>
<xsd:enumeration value="ALX"/>
<xsd:enumeration value="ALY"/>
<xsd:enumeration value="ALZ"/>
<xsd:enumeration value="AMA"/>
<xsd:enumeration value="AMB"/>
<xsd:enumeration value="AMC"/>
<xsd:enumeration value="AMD"/>
<xsd:enumeration value="AME"/>
<xsd:enumeration value="AMF"/>
<xsd:enumeration value="AMG"/>
<xsd:enumeration value="AMH"/>
<xsd:enumeration value="AMI"/>
<xsd:enumeration value="AMJ"/>
<xsd:enumeration value="AMK"/>
<xsd:enumeration value="AML"/>
<xsd:enumeration value="AMM"/>
<xsd:enumeration value="AMN"/>
<xsd:enumeration value="AMO"/>
<xsd:enumeration value="AMP"/>
<xsd:enumeration value="AMQ"/>
<xsd:enumeration value="AMR"/>
<xsd:enumeration value="AMS"/>
<xsd:enumeration value="AMT"/>
<xsd:enumeration value="AMU"/>
<xsd:enumeration value="AMV"/>
<xsd:enumeration value="AMW"/>
<xsd:enumeration value="AMX"/>
<xsd:enumeration value="AMY"/>
<xsd:enumeration value="AMZ"/>
<xsd:enumeration value="ANA"/>
<xsd:enumeration value="ANB"/>
<xsd:enumeration value="ANC"/>
<xsd:enumeration value="AND"/>
<xsd:enumeration value="ANE"/>
<xsd:enumeration value="ANF"/>
<xsd:enumeration value="ANG"/>
<xsd:enumeration value="ANH"/>
<xsd:enumeration value="ANI"/>
<xsd:enumeration value="ANJ"/>
<xsd:enumeration value="ANK"/>
<xsd:enumeration value="ANL"/>
<xsd:enumeration value="ANM"/>
<xsd:enumeration value="ANN"/>
<xsd:enumeration value="ANO"/>
<xsd:enumeration value="ANP"/>
<xsd:enumeration value="ANQ"/>
<xsd:enumeration value="ANR"/>
<xsd:enumeration value="ANS"/>
<xsd:enumeration value="ANT"/>
<xsd:enumeration value="ANU"/>
<xsd:enumeration value="ANV"/>
<xsd:enumeration value="ANW"/>
<xsd:enumeration value="ANX"/>
<xsd:enumeration value="ANY"/>
<xsd:enumeration value="AOA"/>
<xsd:enumeration value="AOD"/>
<xsd:enumeration value="AOE"/>
<xsd:enumeration value="AOF"/>
<xsd:enumeration value="AOG"/>
<xsd:enumeration value="AOH"/>
<xsd:enumeration value="AOI"/>
<xsd:enumeration value="AOJ"/>
<xsd:enumeration value="AOK"/>
<xsd:enumeration value="AOL"/>
<xsd:enumeration value="AOM"/>
<xsd:enumeration value="AON"/>
<xsd:enumeration value="AOO"/>
<xsd:enumeration value="AOP"/>
<xsd:enumeration value="AOQ"/>
<xsd:enumeration value="AOR"/>
<xsd:enumeration value="AOS"/>
<xsd:enumeration value="AOT"/>
<xsd:enumeration value="AOU"/>
<xsd:enumeration value="AOV"/>
<xsd:enumeration value="AOW"/>
<xsd:enumeration value="AOX"/>
<xsd:enumeration value="AOY"/>
<xsd:enumeration value="AOZ"/>
<xsd:enumeration value="AP"/>
<xsd:enumeration value="APA"/>
<xsd:enumeration value="APB"/>
<xsd:enumeration value="APC"/>
<xsd:enumeration value="APD"/>
<xsd:enumeration value="APE"/>
<xsd:enumeration value="APF"/>
<xsd:enumeration value="APG"/>
<xsd:enumeration value="APH"/>
<xsd:enumeration value="API"/>
<xsd:enumeration value="APJ"/>
<xsd:enumeration value="APK"/>
<xsd:enumeration value="APL"/>
<xsd:enumeration value="APM"/>
<xsd:enumeration value="APN"/>
<xsd:enumeration value="APO"/>
<xsd:enumeration value="APP"/>
<xsd:enumeration value="APQ"/>
<xsd:enumeration value="APR"/>
<xsd:enumeration value="APS"/>
<xsd:enumeration value="APT"/>
<xsd:enumeration value="APU"/>
<xsd:enumeration value="APV"/>
<xsd:enumeration value="APW"/>
<xsd:enumeration value="APX"/>
<xsd:enumeration value="APY"/>
<xsd:enumeration value="APZ"/>
<xsd:enumeration value="AQA"/>
<xsd:enumeration value="AQB"/>
<xsd:enumeration value="AQC"/>
<xsd:enumeration value="AQD"/>
<xsd:enumeration value="AQE"/>
<xsd:enumeration value="AQF"/>
<xsd:enumeration value="AQG"/>
<xsd:enumeration value="AQH"/>
<xsd:enumeration value="AQI"/>
<xsd:enumeration value="AQJ"/>
<xsd:enumeration value="AQK"/>
<xsd:enumeration value="AQL"/>
<xsd:enumeration value="AQM"/>
<xsd:enumeration value="AQN"/>
<xsd:enumeration value="AQO"/>
<xsd:enumeration value="AQP"/>
<xsd:enumeration value="AQQ"/>
<xsd:enumeration value="AQR"/>
<xsd:enumeration value="AQS"/>
<xsd:enumeration value="AQT"/>
<xsd:enumeration value="AQU"/>
<xsd:enumeration value="AQV"/>
<xsd:enumeration value="AQW"/>
<xsd:enumeration value="AQX"/>
<xsd:enumeration value="AQY"/>
<xsd:enumeration value="AQZ"/>
<xsd:enumeration value="ARA"/>
<xsd:enumeration value="ARB"/>
<xsd:enumeration value="ARC"/>
<xsd:enumeration value="ARD"/>
<xsd:enumeration value="ARE"/>
<xsd:enumeration value="ARF"/>
<xsd:enumeration value="ARG"/>
<xsd:enumeration value="ARH"/>
<xsd:enumeration value="ARI"/>
<xsd:enumeration value="ARJ"/>
<xsd:enumeration value="ARK"/>
<xsd:enumeration value="ARL"/>
<xsd:enumeration value="ARM"/>
<xsd:enumeration value="ARN"/>
<xsd:enumeration value="ARO"/>
<xsd:enumeration value="ARP"/>
<xsd:enumeration value="ARQ"/>
<xsd:enumeration value="ARR"/>
<xsd:enumeration value="ARS"/>
<xsd:enumeration value="ART"/>
<xsd:enumeration value="ARU"/>
<xsd:enumeration value="ARV"/>
<xsd:enumeration value="ARW"/>
<xsd:enumeration value="ARX"/>
<xsd:enumeration value="ARY"/>
<xsd:enumeration value="ARZ"/>
<xsd:enumeration value="ASA"/>
<xsd:enumeration value="ASB"/>
<xsd:enumeration value="ASC"/>
<xsd:enumeration value="ASD"/>
<xsd:enumeration value="ASE"/>
<xsd:enumeration value="ASF"/>
<xsd:enumeration value="ASG"/>
<xsd:enumeration value="ASH"/>
<xsd:enumeration value="ASI"/>
<xsd:enumeration value="ASJ"/>
<xsd:enumeration value="ASK"/>
<xsd:enumeration value="ASL"/>
<xsd:enumeration value="ASM"/>
<xsd:enumeration value="ASN"/>
<xsd:enumeration value="ASO"/>
<xsd:enumeration value="ASP"/>
<xsd:enumeration value="ASQ"/>
<xsd:enumeration value="ASR"/>
<xsd:enumeration value="ASS"/>
<xsd:enumeration value="AST"/>
<xsd:enumeration value="ASU"/>
<xsd:enumeration value="ASV"/>
<xsd:enumeration value="ASW"/>
<xsd:enumeration value="ASX"/>
<xsd:enumeration value="ASY"/>
<xsd:enumeration value="ASZ"/>
<xsd:enumeration value="ATA"/>
<xsd:enumeration value="ATB"/>
<xsd:enumeration value="ATC"/>
<xsd:enumeration value="ATD"/>
<xsd:enumeration value="ATE"/>
<xsd:enumeration value="ATF"/>
<xsd:enumeration value="ATG"/>
<xsd:enumeration value="ATH"/>
<xsd:enumeration value="ATI"/>
<xsd:enumeration value="ATJ"/>
<xsd:enumeration value="ATK"/>
<xsd:enumeration value="ATL"/>
<xsd:enumeration value="ATM"/>
<xsd:enumeration value="ATN"/>
<xsd:enumeration value="ATO"/>
<xsd:enumeration value="ATP"/>
<xsd:enumeration value="ATQ"/>
<xsd:enumeration value="ATR"/>
<xsd:enumeration value="ATS"/>
<xsd:enumeration value="ATT"/>
<xsd:enumeration value="ATU"/>
<xsd:enumeration value="ATV"/>
<xsd:enumeration value="ATW"/>
<xsd:enumeration value="ATX"/>
<xsd:enumeration value="ATY"/>
<xsd:enumeration value="ATZ"/>
<xsd:enumeration value="AU"/>
<xsd:enumeration value="AUA"/>
<xsd:enumeration value="AUB"/>
<xsd:enumeration value="AUC"/>
<xsd:enumeration value="AUD"/>
<xsd:enumeration value="AUE"/>
<xsd:enumeration value="AUF"/>
<xsd:enumeration value="AUG"/>
<xsd:enumeration value="AUH"/>
<xsd:enumeration value="AUI"/>
<xsd:enumeration value="AUJ"/>
<xsd:enumeration value="AUK"/>
<xsd:enumeration value="AUL"/>
<xsd:enumeration value="AUM"/>
<xsd:enumeration value="AUN"/>
<xsd:enumeration value="AUO"/>
<xsd:enumeration value="AUP"/>
<xsd:enumeration value="AUQ"/>
<xsd:enumeration value="AUR"/>
<xsd:enumeration value="AUS"/>
<xsd:enumeration value="AUT"/>
<xsd:enumeration value="AUU"/>
<xsd:enumeration value="AUV"/>
<xsd:enumeration value="AUW"/>
<xsd:enumeration value="AUX"/>
<xsd:enumeration value="AUY"/>
<xsd:enumeration value="AUZ"/>
<xsd:enumeration value="AV"/>
<xsd:enumeration value="AVA"/>
<xsd:enumeration value="AVB"/>
<xsd:enumeration value="AVC"/>
<xsd:enumeration value="AVD"/>
<xsd:enumeration value="AVE"/>
<xsd:enumeration value="AVF"/>
<xsd:enumeration value="AVG"/>
<xsd:enumeration value="AVH"/>
<xsd:enumeration value="AVI"/>
<xsd:enumeration value="AVJ"/>
<xsd:enumeration value="AVK"/>
<xsd:enumeration value="AVL"/>
<xsd:enumeration value="AVM"/>
<xsd:enumeration value="AVN"/>
<xsd:enumeration value="AVO"/>
<xsd:enumeration value="AVP"/>
<xsd:enumeration value="AVQ"/>
<xsd:enumeration value="AVR"/>
<xsd:enumeration value="AVS"/>
<xsd:enumeration value="AVT"/>
<xsd:enumeration value="AVU"/>
<xsd:enumeration value="AVV"/>
<xsd:enumeration value="AVW"/>
<xsd:enumeration value="AVX"/>
<xsd:enumeration value="AVY"/>
<xsd:enumeration value="AVZ"/>
<xsd:enumeration value="AWA"/>
<xsd:enumeration value="AWB"/>
<xsd:enumeration value="AWC"/>
<xsd:enumeration value="AWD"/>
<xsd:enumeration value="AWE"/>
<xsd:enumeration value="AWF"/>
<xsd:enumeration value="AWG"/>
<xsd:enumeration value="AWH"/>
<xsd:enumeration value="AWI"/>
<xsd:enumeration value="AWJ"/>
<xsd:enumeration value="AWK"/>
<xsd:enumeration value="AWL"/>
<xsd:enumeration value="AWM"/>
<xsd:enumeration value="AWN"/>
<xsd:enumeration value="AWO"/>
<xsd:enumeration value="AWP"/>
<xsd:enumeration value="AWQ"/>
<xsd:enumeration value="AWR"/>
<xsd:enumeration value="AWS"/>
<xsd:enumeration value="AWT"/>
<xsd:enumeration value="AWU"/>
<xsd:enumeration value="AWV"/>
<xsd:enumeration value="AWW"/>
<xsd:enumeration value="AWX"/>
<xsd:enumeration value="AWY"/>
<xsd:enumeration value="AWZ"/>
<xsd:enumeration value="AXA"/>
<xsd:enumeration value="AXB"/>
<xsd:enumeration value="AXC"/>
<xsd:enumeration value="AXD"/>
<xsd:enumeration value="AXE"/>
<xsd:enumeration value="AXF"/>
<xsd:enumeration value="AXG"/>
<xsd:enumeration value="AXH"/>
<xsd:enumeration value="AXI"/>
<xsd:enumeration value="AXJ"/>
<xsd:enumeration value="AXK"/>
<xsd:enumeration value="AXL"/>
<xsd:enumeration value="AXM"/>
<xsd:enumeration value="AXN"/>
<xsd:enumeration value="AXO"/>
<xsd:enumeration value="AXP"/>
<xsd:enumeration value="AXQ"/>
<xsd:enumeration value="AXR"/>
<xsd:enumeration value="BA"/>
<xsd:enumeration value="BC"/>
<xsd:enumeration value="BD"/>
<xsd:enumeration value="BE"/>
<xsd:enumeration value="BH"/>
<xsd:enumeration value="BM"/>
<xsd:enumeration value="BN"/>
<xsd:enumeration value="BO"/>
<xsd:enumeration value="BR"/>
<xsd:enumeration value="BT"/>
<xsd:enumeration value="BW"/>
<xsd:enumeration value="CAS"/>
<xsd:enumeration value="CAT"/>
<xsd:enumeration value="CAU"/>
<xsd:enumeration value="CAV"/>
<xsd:enumeration value="CAW"/>
<xsd:enumeration value="CAX"/>
<xsd:enumeration value="CAY"/>
<xsd:enumeration value="CAZ"/>
<xsd:enumeration value="CBA"/>
<xsd:enumeration value="CBB"/>
<xsd:enumeration value="CD"/>
<xsd:enumeration value="CEC"/>
<xsd:enumeration value="CED"/>
<xsd:enumeration value="CFE"/>
<xsd:enumeration value="CFF"/>
<xsd:enumeration value="CFO"/>
<xsd:enumeration value="CG"/>
<xsd:enumeration value="CH"/>
<xsd:enumeration value="CK"/>
<xsd:enumeration value="CKN"/>
<xsd:enumeration value="CM"/>
<xsd:enumeration value="CMR"/>
<xsd:enumeration value="CN"/>
<xsd:enumeration value="CNO"/>
<xsd:enumeration value="COF"/>
<xsd:enumeration value="CP"/>
<xsd:enumeration value="CR"/>
<xsd:enumeration value="CRN"/>
<xsd:enumeration value="CS"/>
<xsd:enumeration value="CST"/>
<xsd:enumeration value="CT"/>
<xsd:enumeration value="CU"/>
<xsd:enumeration value="CV"/>
<xsd:enumeration value="CW"/>
<xsd:enumeration value="CZ"/>
<xsd:enumeration value="DA"/>
<xsd:enumeration value="DAN"/>
<xsd:enumeration value="DB"/>
<xsd:enumeration value="DI"/>
<xsd:enumeration value="DL"/>
<xsd:enumeration value="DM"/>
<xsd:enumeration value="DQ"/>
<xsd:enumeration value="DR"/>
<xsd:enumeration value="EA"/>
<xsd:enumeration value="EB"/>
<xsd:enumeration value="ED"/>
<xsd:enumeration value="EE"/>
<xsd:enumeration value="EI"/>
<xsd:enumeration value="EN"/>
<xsd:enumeration value="EQ"/>
<xsd:enumeration value="ER"/>
<xsd:enumeration value="ERN"/>
<xsd:enumeration value="ET"/>
<xsd:enumeration value="EX"/>
<xsd:enumeration value="FC"/>
<xsd:enumeration value="FF"/>
<xsd:enumeration value="FI"/>
<xsd:enumeration value="FLW"/>
<xsd:enumeration value="FN"/>
<xsd:enumeration value="FO"/>
<xsd:enumeration value="FS"/>
<xsd:enumeration value="FT"/>
<xsd:enumeration value="FV"/>
<xsd:enumeration value="FX"/>
<xsd:enumeration value="GA"/>
<xsd:enumeration value="GC"/>
<xsd:enumeration value="GD"/>
<xsd:enumeration value="GDN"/>
<xsd:enumeration value="GN"/>
<xsd:enumeration value="HS"/>
<xsd:enumeration value="HWB"/>
<xsd:enumeration value="IA"/>
<xsd:enumeration value="IB"/>
<xsd:enumeration value="ICA"/>
<xsd:enumeration value="ICE"/>
<xsd:enumeration value="ICO"/>
<xsd:enumeration value="II"/>
<xsd:enumeration value="IL"/>
<xsd:enumeration value="INB"/>
<xsd:enumeration value="INN"/>
<xsd:enumeration value="INO"/>
<xsd:enumeration value="IP"/>
<xsd:enumeration value="IS"/>
<xsd:enumeration value="IT"/>
<xsd:enumeration value="IV"/>
<xsd:enumeration value="JB"/>
<xsd:enumeration value="JE"/>
<xsd:enumeration value="LA"/>
<xsd:enumeration value="LAN"/>
<xsd:enumeration value="LAR"/>
<xsd:enumeration value="LB"/>
<xsd:enumeration value="LC"/>
<xsd:enumeration value="LI"/>
<xsd:enumeration value="LO"/>
<xsd:enumeration value="LRC"/>
<xsd:enumeration value="LS"/>
<xsd:enumeration value="MA"/>
<xsd:enumeration value="MB"/>
<xsd:enumeration value="MF"/>
<xsd:enumeration value="MG"/>
<xsd:enumeration value="MH"/>
<xsd:enumeration value="MR"/>
<xsd:enumeration value="MRN"/>
<xsd:enumeration value="MS"/>
<xsd:enumeration value="MSS"/>
<xsd:enumeration value="MWB"/>
<xsd:enumeration value="NA"/>
<xsd:enumeration value="NF"/>
<xsd:enumeration value="OH"/>
<xsd:enumeration value="OI"/>
<xsd:enumeration value="ON"/>
<xsd:enumeration value="OP"/>
<xsd:enumeration value="OR"/>
<xsd:enumeration value="PB"/>
<xsd:enumeration value="PC"/>
<xsd:enumeration value="PD"/>
<xsd:enumeration value="PE"/>
<xsd:enumeration value="PF"/>
<xsd:enumeration value="PI"/>
<xsd:enumeration value="PK"/>
<xsd:enumeration value="PL"/>
<xsd:enumeration value="POR"/>
<xsd:enumeration value="PP"/>
<xsd:enumeration value="PQ"/>
<xsd:enumeration value="PR"/>
<xsd:enumeration value="PS"/>
<xsd:enumeration value="PW"/>
<xsd:enumeration value="PY"/>
<xsd:enumeration value="RA"/>
<xsd:enumeration value="RC"/>
<xsd:enumeration value="RCN"/>
<xsd:enumeration value="RE"/>
<xsd:enumeration value="REN"/>
<xsd:enumeration value="RF"/>
<xsd:enumeration value="RR"/>
<xsd:enumeration value="RT"/>
<xsd:enumeration value="SA"/>
<xsd:enumeration value="SB"/>
<xsd:enumeration value="SD"/>
<xsd:enumeration value="SE"/>
<xsd:enumeration value="SEA"/>
<xsd:enumeration value="SF"/>
<xsd:enumeration value="SH"/>
<xsd:enumeration value="SI"/>
<xsd:enumeration value="SM"/>
<xsd:enumeration value="SN"/>
<xsd:enumeration value="SP"/>
<xsd:enumeration value="SQ"/>
<xsd:enumeration value="SRN"/>
<xsd:enumeration value="SS"/>
<xsd:enumeration value="STA"/>
<xsd:enumeration value="SW"/>
<xsd:enumeration value="SZ"/>
<xsd:enumeration value="TB"/>
<xsd:enumeration value="TCR"/>
<xsd:enumeration value="TE"/>
<xsd:enumeration value="TF"/>
<xsd:enumeration value="TI"/>
<xsd:enumeration value="TIN"/>
<xsd:enumeration value="TL"/>
<xsd:enumeration value="TN"/>
<xsd:enumeration value="TP"/>
<xsd:enumeration value="UAR"/>
<xsd:enumeration value="UC"/>
<xsd:enumeration value="UCN"/>
<xsd:enumeration value="UN"/>
<xsd:enumeration value="UO"/>
<xsd:enumeration value="URI"/>
<xsd:enumeration value="VA"/>
<xsd:enumeration value="VC"/>
<xsd:enumeration value="VGR"/>
<xsd:enumeration value="VM"/>
<xsd:enumeration value="VN"/>
<xsd:enumeration value="VON"/>
<xsd:enumeration value="VOR"/>
<xsd:enumeration value="VP"/>
<xsd:enumeration value="VR"/>
<xsd:enumeration value="VS"/>
<xsd:enumeration value="VT"/>
<xsd:enumeration value="VV"/>
<xsd:enumeration value="WE"/>
<xsd:enumeration value="WM"/>
<xsd:enumeration value="WN"/>
<xsd:enumeration value="WR"/>
<xsd:enumeration value="WS"/>
<xsd:enumeration value="WY"/>
<xsd:enumeration value="XA"/>
<xsd:enumeration value="XC"/>
<xsd:enumeration value="XP"/>
<xsd:enumeration value="ZZZ"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm62379="urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D16A" elementFormDefault="qualified" version="1.2">
<xsd:simpleType name="TimePointFormatCodeContentType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="102"/>
<xsd:enumeration value="203"/>
<xsd:enumeration value="205"/>
<xsd:enumeration value="209"/>
<xsd:enumeration value="502"/>
<xsd:enumeration value="602"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm68053="urn:un:unece:uncefact:codelist:standard:UNECE:TransportEquipmentCategoryCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:TransportEquipmentCategoryCode:D16A" elementFormDefault="qualified" version="1.3">
<xsd:simpleType name="TransportEquipmentCategoryCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="AA"/>
<xsd:enumeration value="AB"/>
<xsd:enumeration value="AD"/>
<xsd:enumeration value="AE"/>
<xsd:enumeration value="AG"/>
<xsd:enumeration value="AH"/>
<xsd:enumeration value="AI"/>
<xsd:enumeration value="AJ"/>
<xsd:enumeration value="AK"/>
<xsd:enumeration value="AL"/>
<xsd:enumeration value="AM"/>
<xsd:enumeration value="AN"/>
<xsd:enumeration value="AO"/>
<xsd:enumeration value="AP"/>
<xsd:enumeration value="AQ"/>
<xsd:enumeration value="AT"/>
<xsd:enumeration value="BB"/>
<xsd:enumeration value="BL"/>
<xsd:enumeration value="BPN"/>
<xsd:enumeration value="BPO"/>
<xsd:enumeration value="BPP"/>
<xsd:enumeration value="BPQ"/>
<xsd:enumeration value="BPR"/>
<xsd:enumeration value="BPS"/>
<xsd:enumeration value="BPT"/>
<xsd:enumeration value="BPU"/>
<xsd:enumeration value="BPV"/>
<xsd:enumeration value="BPW"/>
<xsd:enumeration value="BPX"/>
<xsd:enumeration value="BPY"/>
<xsd:enumeration value="BPZ"/>
<xsd:enumeration value="BR"/>
<xsd:enumeration value="BX"/>
<xsd:enumeration value="CH"/>
<xsd:enumeration value="CN"/>
<xsd:enumeration value="DPA"/>
<xsd:enumeration value="DPB"/>
<xsd:enumeration value="DPC"/>
<xsd:enumeration value="DPD"/>
<xsd:enumeration value="DPE"/>
<xsd:enumeration value="DPF"/>
<xsd:enumeration value="DPG"/>
<xsd:enumeration value="DPH"/>
<xsd:enumeration value="DPI"/>
<xsd:enumeration value="DPJ"/>
<xsd:enumeration value="DPL"/>
<xsd:enumeration value="EFP"/>
<xsd:enumeration value="EYP"/>
<xsd:enumeration value="FPN"/>
<xsd:enumeration value="FPR"/>
<xsd:enumeration value="IL"/>
<xsd:enumeration value="LAR"/>
<xsd:enumeration value="LU"/>
<xsd:enumeration value="MPA"/>
<xsd:enumeration value="PA"/>
<xsd:enumeration value="PBP"/>
<xsd:enumeration value="PFP"/>
<xsd:enumeration value="PL"/>
<xsd:enumeration value="PPA"/>
<xsd:enumeration value="PST"/>
<xsd:enumeration value="RF"/>
<xsd:enumeration value="RG"/>
<xsd:enumeration value="RGF"/>
<xsd:enumeration value="RO"/>
<xsd:enumeration value="RR"/>
<xsd:enumeration value="SPP"/>
<xsd:enumeration value="STR"/>
<xsd:enumeration value="SW"/>
<xsd:enumeration value="TE"/>
<xsd:enumeration value="TP"/>
<xsd:enumeration value="TS"/>
<xsd:enumeration value="TSU"/>
<xsd:enumeration value="UL"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm68169="urn:un:unece:uncefact:codelist:standard:UNECE:TransportEquipmentFullnessCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:TransportEquipmentFullnessCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="TransportEquipmentFullnessCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,297 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm6Recommendation28="urn:un:unece:uncefact:codelist:standard:UNECE:TransportMeansTypeCode:2007" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:TransportMeansTypeCode:2007" elementFormDefault="qualified" version="1.3">
<xsd:simpleType name="TransportMeansTypeCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
<xsd:enumeration value="35"/>
<xsd:enumeration value="36"/>
<xsd:enumeration value="37"/>
<xsd:enumeration value="38"/>
<xsd:enumeration value="39"/>
<xsd:enumeration value="60"/>
<xsd:enumeration value="70"/>
<xsd:enumeration value="71"/>
<xsd:enumeration value="72"/>
<xsd:enumeration value="80"/>
<xsd:enumeration value="81"/>
<xsd:enumeration value="85"/>
<xsd:enumeration value="86"/>
<xsd:enumeration value="87"/>
<xsd:enumeration value="88"/>
<xsd:enumeration value="89"/>
<xsd:enumeration value="150"/>
<xsd:enumeration value="151"/>
<xsd:enumeration value="152"/>
<xsd:enumeration value="153"/>
<xsd:enumeration value="154"/>
<xsd:enumeration value="155"/>
<xsd:enumeration value="157"/>
<xsd:enumeration value="159"/>
<xsd:enumeration value="160"/>
<xsd:enumeration value="170"/>
<xsd:enumeration value="172"/>
<xsd:enumeration value="173"/>
<xsd:enumeration value="174"/>
<xsd:enumeration value="175"/>
<xsd:enumeration value="176"/>
<xsd:enumeration value="177"/>
<xsd:enumeration value="178"/>
<xsd:enumeration value="180"/>
<xsd:enumeration value="181"/>
<xsd:enumeration value="182"/>
<xsd:enumeration value="183"/>
<xsd:enumeration value="184"/>
<xsd:enumeration value="185"/>
<xsd:enumeration value="189"/>
<xsd:enumeration value="190"/>
<xsd:enumeration value="191"/>
<xsd:enumeration value="192"/>
<xsd:enumeration value="210"/>
<xsd:enumeration value="220"/>
<xsd:enumeration value="230"/>
<xsd:enumeration value="310"/>
<xsd:enumeration value="311"/>
<xsd:enumeration value="312"/>
<xsd:enumeration value="313"/>
<xsd:enumeration value="314"/>
<xsd:enumeration value="315"/>
<xsd:enumeration value="320"/>
<xsd:enumeration value="330"/>
<xsd:enumeration value="341"/>
<xsd:enumeration value="342"/>
<xsd:enumeration value="343"/>
<xsd:enumeration value="360"/>
<xsd:enumeration value="362"/>
<xsd:enumeration value="363"/>
<xsd:enumeration value="364"/>
<xsd:enumeration value="365"/>
<xsd:enumeration value="366"/>
<xsd:enumeration value="367"/>
<xsd:enumeration value="368"/>
<xsd:enumeration value="369"/>
<xsd:enumeration value="370"/>
<xsd:enumeration value="371"/>
<xsd:enumeration value="372"/>
<xsd:enumeration value="373"/>
<xsd:enumeration value="374"/>
<xsd:enumeration value="375"/>
<xsd:enumeration value="376"/>
<xsd:enumeration value="377"/>
<xsd:enumeration value="378"/>
<xsd:enumeration value="379"/>
<xsd:enumeration value="380"/>
<xsd:enumeration value="381"/>
<xsd:enumeration value="382"/>
<xsd:enumeration value="383"/>
<xsd:enumeration value="384"/>
<xsd:enumeration value="385"/>
<xsd:enumeration value="386"/>
<xsd:enumeration value="387"/>
<xsd:enumeration value="388"/>
<xsd:enumeration value="389"/>
<xsd:enumeration value="390"/>
<xsd:enumeration value="391"/>
<xsd:enumeration value="392"/>
<xsd:enumeration value="393"/>
<xsd:enumeration value="394"/>
<xsd:enumeration value="395"/>
<xsd:enumeration value="396"/>
<xsd:enumeration value="397"/>
<xsd:enumeration value="398"/>
<xsd:enumeration value="399"/>
<xsd:enumeration value="802"/>
<xsd:enumeration value="803"/>
<xsd:enumeration value="804"/>
<xsd:enumeration value="810"/>
<xsd:enumeration value="811"/>
<xsd:enumeration value="812"/>
<xsd:enumeration value="813"/>
<xsd:enumeration value="814"/>
<xsd:enumeration value="815"/>
<xsd:enumeration value="816"/>
<xsd:enumeration value="817"/>
<xsd:enumeration value="818"/>
<xsd:enumeration value="821"/>
<xsd:enumeration value="822"/>
<xsd:enumeration value="823"/>
<xsd:enumeration value="824"/>
<xsd:enumeration value="825"/>
<xsd:enumeration value="826"/>
<xsd:enumeration value="827"/>
<xsd:enumeration value="828"/>
<xsd:enumeration value="829"/>
<xsd:enumeration value="831"/>
<xsd:enumeration value="832"/>
<xsd:enumeration value="833"/>
<xsd:enumeration value="834"/>
<xsd:enumeration value="835"/>
<xsd:enumeration value="836"/>
<xsd:enumeration value="837"/>
<xsd:enumeration value="838"/>
<xsd:enumeration value="839"/>
<xsd:enumeration value="840"/>
<xsd:enumeration value="841"/>
<xsd:enumeration value="842"/>
<xsd:enumeration value="843"/>
<xsd:enumeration value="844"/>
<xsd:enumeration value="845"/>
<xsd:enumeration value="846"/>
<xsd:enumeration value="847"/>
<xsd:enumeration value="848"/>
<xsd:enumeration value="849"/>
<xsd:enumeration value="850"/>
<xsd:enumeration value="851"/>
<xsd:enumeration value="1501"/>
<xsd:enumeration value="1502"/>
<xsd:enumeration value="1503"/>
<xsd:enumeration value="1504"/>
<xsd:enumeration value="1505"/>
<xsd:enumeration value="1506"/>
<xsd:enumeration value="1511"/>
<xsd:enumeration value="1512"/>
<xsd:enumeration value="1513"/>
<xsd:enumeration value="1514"/>
<xsd:enumeration value="1515"/>
<xsd:enumeration value="1516"/>
<xsd:enumeration value="1517"/>
<xsd:enumeration value="1518"/>
<xsd:enumeration value="1519"/>
<xsd:enumeration value="1521"/>
<xsd:enumeration value="1522"/>
<xsd:enumeration value="1523"/>
<xsd:enumeration value="1524"/>
<xsd:enumeration value="1525"/>
<xsd:enumeration value="1531"/>
<xsd:enumeration value="1532"/>
<xsd:enumeration value="1533"/>
<xsd:enumeration value="1534"/>
<xsd:enumeration value="1541"/>
<xsd:enumeration value="1542"/>
<xsd:enumeration value="1543"/>
<xsd:enumeration value="1551"/>
<xsd:enumeration value="1552"/>
<xsd:enumeration value="1553"/>
<xsd:enumeration value="1591"/>
<xsd:enumeration value="1592"/>
<xsd:enumeration value="1593"/>
<xsd:enumeration value="1594"/>
<xsd:enumeration value="1601"/>
<xsd:enumeration value="1602"/>
<xsd:enumeration value="1603"/>
<xsd:enumeration value="1604"/>
<xsd:enumeration value="1605"/>
<xsd:enumeration value="1606"/>
<xsd:enumeration value="1607"/>
<xsd:enumeration value="1711"/>
<xsd:enumeration value="1712"/>
<xsd:enumeration value="1721"/>
<xsd:enumeration value="1723"/>
<xsd:enumeration value="1724"/>
<xsd:enumeration value="1725"/>
<xsd:enumeration value="1726"/>
<xsd:enumeration value="1727"/>
<xsd:enumeration value="1728"/>
<xsd:enumeration value="1729"/>
<xsd:enumeration value="1751"/>
<xsd:enumeration value="1752"/>
<xsd:enumeration value="1753"/>
<xsd:enumeration value="1761"/>
<xsd:enumeration value="1762"/>
<xsd:enumeration value="1763"/>
<xsd:enumeration value="1764"/>
<xsd:enumeration value="1765"/>
<xsd:enumeration value="1766"/>
<xsd:enumeration value="1781"/>
<xsd:enumeration value="1782"/>
<xsd:enumeration value="2201"/>
<xsd:enumeration value="2202"/>
<xsd:enumeration value="2203"/>
<xsd:enumeration value="2301"/>
<xsd:enumeration value="2302"/>
<xsd:enumeration value="2303"/>
<xsd:enumeration value="2304"/>
<xsd:enumeration value="2305"/>
<xsd:enumeration value="3100"/>
<xsd:enumeration value="3101"/>
<xsd:enumeration value="3102"/>
<xsd:enumeration value="3103"/>
<xsd:enumeration value="3104"/>
<xsd:enumeration value="3105"/>
<xsd:enumeration value="3106"/>
<xsd:enumeration value="3107"/>
<xsd:enumeration value="3108"/>
<xsd:enumeration value="3109"/>
<xsd:enumeration value="3110"/>
<xsd:enumeration value="3111"/>
<xsd:enumeration value="3112"/>
<xsd:enumeration value="3113"/>
<xsd:enumeration value="3114"/>
<xsd:enumeration value="3115"/>
<xsd:enumeration value="3116"/>
<xsd:enumeration value="3117"/>
<xsd:enumeration value="3118"/>
<xsd:enumeration value="3119"/>
<xsd:enumeration value="3120"/>
<xsd:enumeration value="3121"/>
<xsd:enumeration value="3122"/>
<xsd:enumeration value="3123"/>
<xsd:enumeration value="3124"/>
<xsd:enumeration value="3125"/>
<xsd:enumeration value="3126"/>
<xsd:enumeration value="3127"/>
<xsd:enumeration value="3128"/>
<xsd:enumeration value="3129"/>
<xsd:enumeration value="3130"/>
<xsd:enumeration value="3131"/>
<xsd:enumeration value="3132"/>
<xsd:enumeration value="3133"/>
<xsd:enumeration value="3134"/>
<xsd:enumeration value="3135"/>
<xsd:enumeration value="3136"/>
<xsd:enumeration value="3137"/>
<xsd:enumeration value="3138"/>
<xsd:enumeration value="3201"/>
<xsd:enumeration value="3301"/>
<xsd:enumeration value="3302"/>
<xsd:enumeration value="3303"/>
<xsd:enumeration value="3304"/>
<xsd:enumeration value="4000"/>
<xsd:enumeration value="5000"/>
<xsd:enumeration value="8021"/>
<xsd:enumeration value="8022"/>
<xsd:enumeration value="8023"/>
<xsd:enumeration value="8161"/>
<xsd:enumeration value="8162"/>
<xsd:enumeration value="8163"/>
<xsd:enumeration value="8441"/>
<xsd:enumeration value="8442"/>
<xsd:enumeration value="8443"/>
<xsd:enumeration value="8444"/>
<xsd:enumeration value="8445"/>
<xsd:enumeration value="8446"/>
<xsd:enumeration value="8447"/>
<xsd:enumeration value="8448"/>
<xsd:enumeration value="8451"/>
<xsd:enumeration value="8452"/>
<xsd:enumeration value="8453"/>
<xsd:enumeration value="8454"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm6Recommendation19="urn:un:unece:uncefact:codelist:standard:UNECE:TransportModeCode:2" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:TransportModeCode:2" elementFormDefault="qualified" version="1.0">
<xsd:simpleType name="TransportModeCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="0"/>
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
<xsd:enumeration value="8"/>
<xsd:enumeration value="9"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:clm68051="urn:un:unece:uncefact:codelist:standard:UNECE:TransportMovementStageCode:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:codelist:standard:UNECE:TransportMovementStageCode:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="TransportMovementStageCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="10"/>
<xsd:enumeration value="11"/>
<xsd:enumeration value="12"/>
<xsd:enumeration value="13"/>
<xsd:enumeration value="15"/>
<xsd:enumeration value="16"/>
<xsd:enumeration value="17"/>
<xsd:enumeration value="18"/>
<xsd:enumeration value="19"/>
<xsd:enumeration value="20"/>
<xsd:enumeration value="21"/>
<xsd:enumeration value="22"/>
<xsd:enumeration value="23"/>
<xsd:enumeration value="24"/>
<xsd:enumeration value="25"/>
<xsd:enumeration value="26"/>
<xsd:enumeration value="27"/>
<xsd:enumeration value="28"/>
<xsd:enumeration value="29"/>
<xsd:enumeration value="30"/>
<xsd:enumeration value="31"/>
<xsd:enumeration value="32"/>
<xsd:enumeration value="33"/>
<xsd:enumeration value="34"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.D16B (Coupled Code List Schema Modules)
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:qdt="urn:un:unece:uncefact:data:standard:QualifiedDataType:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" targetNamespace="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" elementFormDefault="qualified" version="100.D16B">
<xsd:import namespace="urn:un:unece:uncefact:data:standard:QualifiedDataType:100" schemaLocation="CrossIndustryInvoice_QualifiedDataType_100pD16B.xsd"/>
<xsd:import namespace="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" schemaLocation="CrossIndustryInvoice_ReusableAggregateBusinessInformationEntity_100pD16B.xsd"/>
<xsd:import namespace="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" schemaLocation="CrossIndustryInvoice_UnqualifiedDataType_100pD16B.xsd"/>
<xsd:element name="CrossIndustryInvoice" type="rsm:CrossIndustryInvoiceType"/>
<xsd:complexType name="CrossIndustryInvoiceType">
<xsd:sequence>
<xsd:element name="ExchangedDocumentContext" type="ram:ExchangedDocumentContextType"/>
<xsd:element name="ExchangedDocument" type="ram:ExchangedDocumentType"/>
<xsd:element name="SupplyChainTradeTransaction" type="ram:SupplyChainTradeTransactionType"/>
<xsd:element name="ValuationBreakdownStatement" type="ram:ValuationBreakdownStatementType" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,160 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.D16B (Coupled Code List Schema Modules)
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" elementFormDefault="qualified" version="100.D16B">
<xsd:complexType name="AmountType">
<xsd:simpleContent>
<xsd:extension base="xsd:decimal">
<xsd:attribute name="currencyID" type="xsd:token"/>
<xsd:attribute name="currencyCodeListVersionID" type="xsd:token"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="BinaryObjectType">
<xsd:simpleContent>
<xsd:extension base="xsd:base64Binary">
<xsd:attribute name="format" type="xsd:string"/>
<xsd:attribute name="mimeCode" type="xsd:token"/>
<xsd:attribute name="encodingCode" type="xsd:token"/>
<xsd:attribute name="characterSetCode" type="xsd:token"/>
<xsd:attribute name="uri" type="xsd:anyURI"/>
<xsd:attribute name="filename" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="CodeType">
<xsd:simpleContent>
<xsd:extension base="xsd:token">
<xsd:attribute name="listID" type="xsd:token"/>
<xsd:attribute name="listAgencyID" type="xsd:token"/>
<xsd:attribute name="listAgencyName" type="xsd:string"/>
<xsd:attribute name="listName" type="xsd:string"/>
<xsd:attribute name="listVersionID" type="xsd:token"/>
<xsd:attribute name="name" type="xsd:string"/>
<xsd:attribute name="languageID" type="xsd:token"/>
<xsd:attribute name="listURI" type="xsd:anyURI"/>
<xsd:attribute name="listSchemeURI" type="xsd:anyURI"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="DateTimeType">
<xsd:choice>
<xsd:element name="DateTimeString">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="format" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="DateTime" type="xsd:dateTime"/>
</xsd:choice>
</xsd:complexType>
<xsd:complexType name="DateType">
<xsd:choice>
<xsd:element name="DateString">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="format" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="Date" type="xsd:date"/>
</xsd:choice>
</xsd:complexType>
<xsd:complexType name="IDType">
<xsd:simpleContent>
<xsd:extension base="xsd:token">
<xsd:attribute name="schemeID" type="xsd:token"/>
<xsd:attribute name="schemeName" type="xsd:string"/>
<xsd:attribute name="schemeAgencyID" type="xsd:token"/>
<xsd:attribute name="schemeAgencyName" type="xsd:string"/>
<xsd:attribute name="schemeVersionID" type="xsd:token"/>
<xsd:attribute name="schemeDataURI" type="xsd:anyURI"/>
<xsd:attribute name="schemeURI" type="xsd:anyURI"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="IndicatorType">
<xsd:choice>
<xsd:element name="IndicatorString">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="format" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="Indicator" type="xsd:boolean"/>
</xsd:choice>
</xsd:complexType>
<xsd:complexType name="MeasureType">
<xsd:simpleContent>
<xsd:extension base="xsd:decimal">
<xsd:attribute name="unitCode" type="xsd:token"/>
<xsd:attribute name="unitCodeListVersionID" type="xsd:token"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="NumericType">
<xsd:simpleContent>
<xsd:extension base="xsd:decimal">
<xsd:attribute name="format" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="PercentType">
<xsd:simpleContent>
<xsd:extension base="xsd:decimal">
<xsd:attribute name="format" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="QuantityType">
<xsd:simpleContent>
<xsd:extension base="xsd:decimal">
<xsd:attribute name="unitCode" type="xsd:token"/>
<xsd:attribute name="unitCodeListID" type="xsd:token"/>
<xsd:attribute name="unitCodeListAgencyID" type="xsd:token"/>
<xsd:attribute name="unitCodeListAgencyName" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="RateType">
<xsd:simpleContent>
<xsd:extension base="xsd:decimal">
<xsd:attribute name="format" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="TextType">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="languageID" type="xsd:token"/>
<xsd:attribute name="languageLocaleID" type="xsd:token"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="ValueType">
<xsd:simpleContent>
<xsd:extension base="xsd:decimal">
<xsd:attribute name="format" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:schema>

View File

@@ -0,0 +1,269 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:ids5ISO316612A="urn:un:unece:uncefact:identifierlist:standard:ISO:ISOTwo-letterCountryCode:SecondEdition2006" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:identifierlist:standard:ISO:ISOTwo-letterCountryCode:SecondEdition2006" elementFormDefault="qualified" version="8.7">
<xsd:simpleType name="ISOTwoletterCountryCodeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="AD"/>
<xsd:enumeration value="AE"/>
<xsd:enumeration value="AF"/>
<xsd:enumeration value="AG"/>
<xsd:enumeration value="AI"/>
<xsd:enumeration value="AL"/>
<xsd:enumeration value="AM"/>
<xsd:enumeration value="AO"/>
<xsd:enumeration value="AQ"/>
<xsd:enumeration value="AR"/>
<xsd:enumeration value="AS"/>
<xsd:enumeration value="AT"/>
<xsd:enumeration value="AU"/>
<xsd:enumeration value="AW"/>
<xsd:enumeration value="AX"/>
<xsd:enumeration value="AZ"/>
<xsd:enumeration value="BA"/>
<xsd:enumeration value="BB"/>
<xsd:enumeration value="BD"/>
<xsd:enumeration value="BE"/>
<xsd:enumeration value="BF"/>
<xsd:enumeration value="BG"/>
<xsd:enumeration value="BH"/>
<xsd:enumeration value="BI"/>
<xsd:enumeration value="BJ"/>
<xsd:enumeration value="BL"/>
<xsd:enumeration value="BM"/>
<xsd:enumeration value="BN"/>
<xsd:enumeration value="BO"/>
<xsd:enumeration value="BQ"/>
<xsd:enumeration value="BR"/>
<xsd:enumeration value="BS"/>
<xsd:enumeration value="BT"/>
<xsd:enumeration value="BV"/>
<xsd:enumeration value="BW"/>
<xsd:enumeration value="BY"/>
<xsd:enumeration value="BZ"/>
<xsd:enumeration value="CA"/>
<xsd:enumeration value="CC"/>
<xsd:enumeration value="CD"/>
<xsd:enumeration value="CF"/>
<xsd:enumeration value="CG"/>
<xsd:enumeration value="CH"/>
<xsd:enumeration value="CI"/>
<xsd:enumeration value="CK"/>
<xsd:enumeration value="CL"/>
<xsd:enumeration value="CM"/>
<xsd:enumeration value="CN"/>
<xsd:enumeration value="CO"/>
<xsd:enumeration value="CR"/>
<xsd:enumeration value="CU"/>
<xsd:enumeration value="CV"/>
<xsd:enumeration value="CW"/>
<xsd:enumeration value="CX"/>
<xsd:enumeration value="CY"/>
<xsd:enumeration value="CZ"/>
<xsd:enumeration value="DE"/>
<xsd:enumeration value="DJ"/>
<xsd:enumeration value="DK"/>
<xsd:enumeration value="DM"/>
<xsd:enumeration value="DO"/>
<xsd:enumeration value="DZ"/>
<xsd:enumeration value="EC"/>
<xsd:enumeration value="EE"/>
<xsd:enumeration value="EG"/>
<xsd:enumeration value="EH"/>
<xsd:enumeration value="ER"/>
<xsd:enumeration value="ES"/>
<xsd:enumeration value="ET"/>
<xsd:enumeration value="FI"/>
<xsd:enumeration value="FJ"/>
<xsd:enumeration value="FK"/>
<xsd:enumeration value="FM"/>
<xsd:enumeration value="FO"/>
<xsd:enumeration value="FR"/>
<xsd:enumeration value="GA"/>
<xsd:enumeration value="GB"/>
<xsd:enumeration value="GD"/>
<xsd:enumeration value="GE"/>
<xsd:enumeration value="GF"/>
<xsd:enumeration value="GG"/>
<xsd:enumeration value="GH"/>
<xsd:enumeration value="GI"/>
<xsd:enumeration value="GL"/>
<xsd:enumeration value="GM"/>
<xsd:enumeration value="GN"/>
<xsd:enumeration value="GP"/>
<xsd:enumeration value="GQ"/>
<xsd:enumeration value="GR"/>
<xsd:enumeration value="GS"/>
<xsd:enumeration value="GT"/>
<xsd:enumeration value="GU"/>
<xsd:enumeration value="GW"/>
<xsd:enumeration value="GY"/>
<xsd:enumeration value="HK"/>
<xsd:enumeration value="HM"/>
<xsd:enumeration value="HN"/>
<xsd:enumeration value="HR"/>
<xsd:enumeration value="HT"/>
<xsd:enumeration value="HU"/>
<xsd:enumeration value="ID"/>
<xsd:enumeration value="IE"/>
<xsd:enumeration value="IL"/>
<xsd:enumeration value="IM"/>
<xsd:enumeration value="IN"/>
<xsd:enumeration value="IO"/>
<xsd:enumeration value="IQ"/>
<xsd:enumeration value="IR"/>
<xsd:enumeration value="IS"/>
<xsd:enumeration value="IT"/>
<xsd:enumeration value="JE"/>
<xsd:enumeration value="JM"/>
<xsd:enumeration value="JO"/>
<xsd:enumeration value="JP"/>
<xsd:enumeration value="KE"/>
<xsd:enumeration value="KG"/>
<xsd:enumeration value="KH"/>
<xsd:enumeration value="KI"/>
<xsd:enumeration value="KM"/>
<xsd:enumeration value="KN"/>
<xsd:enumeration value="KP"/>
<xsd:enumeration value="KR"/>
<xsd:enumeration value="KW"/>
<xsd:enumeration value="KY"/>
<xsd:enumeration value="KZ"/>
<xsd:enumeration value="LA"/>
<xsd:enumeration value="LB"/>
<xsd:enumeration value="LC"/>
<xsd:enumeration value="LI"/>
<xsd:enumeration value="LK"/>
<xsd:enumeration value="LR"/>
<xsd:enumeration value="LS"/>
<xsd:enumeration value="LT"/>
<xsd:enumeration value="LU"/>
<xsd:enumeration value="LV"/>
<xsd:enumeration value="LY"/>
<xsd:enumeration value="MA"/>
<xsd:enumeration value="MC"/>
<xsd:enumeration value="MD"/>
<xsd:enumeration value="ME"/>
<xsd:enumeration value="MF"/>
<xsd:enumeration value="MG"/>
<xsd:enumeration value="MH"/>
<xsd:enumeration value="MK"/>
<xsd:enumeration value="ML"/>
<xsd:enumeration value="MM"/>
<xsd:enumeration value="MN"/>
<xsd:enumeration value="MO"/>
<xsd:enumeration value="MP"/>
<xsd:enumeration value="MQ"/>
<xsd:enumeration value="MR"/>
<xsd:enumeration value="MS"/>
<xsd:enumeration value="MT"/>
<xsd:enumeration value="MU"/>
<xsd:enumeration value="MV"/>
<xsd:enumeration value="MW"/>
<xsd:enumeration value="MX"/>
<xsd:enumeration value="MY"/>
<xsd:enumeration value="MZ"/>
<xsd:enumeration value="NA"/>
<xsd:enumeration value="NC"/>
<xsd:enumeration value="NE"/>
<xsd:enumeration value="NF"/>
<xsd:enumeration value="NG"/>
<xsd:enumeration value="NI"/>
<xsd:enumeration value="NL"/>
<xsd:enumeration value="NO"/>
<xsd:enumeration value="NP"/>
<xsd:enumeration value="NR"/>
<xsd:enumeration value="NU"/>
<xsd:enumeration value="NZ"/>
<xsd:enumeration value="OM"/>
<xsd:enumeration value="PA"/>
<xsd:enumeration value="PE"/>
<xsd:enumeration value="PF"/>
<xsd:enumeration value="PG"/>
<xsd:enumeration value="PH"/>
<xsd:enumeration value="PK"/>
<xsd:enumeration value="PL"/>
<xsd:enumeration value="PM"/>
<xsd:enumeration value="PN"/>
<xsd:enumeration value="PR"/>
<xsd:enumeration value="PS"/>
<xsd:enumeration value="PT"/>
<xsd:enumeration value="PW"/>
<xsd:enumeration value="PY"/>
<xsd:enumeration value="QA"/>
<xsd:enumeration value="RE"/>
<xsd:enumeration value="RO"/>
<xsd:enumeration value="RS"/>
<xsd:enumeration value="RU"/>
<xsd:enumeration value="RW"/>
<xsd:enumeration value="SA"/>
<xsd:enumeration value="SB"/>
<xsd:enumeration value="SC"/>
<xsd:enumeration value="SD"/>
<xsd:enumeration value="SE"/>
<xsd:enumeration value="SG"/>
<xsd:enumeration value="SH"/>
<xsd:enumeration value="SI"/>
<xsd:enumeration value="SJ"/>
<xsd:enumeration value="SK"/>
<xsd:enumeration value="SL"/>
<xsd:enumeration value="SM"/>
<xsd:enumeration value="SN"/>
<xsd:enumeration value="SO"/>
<xsd:enumeration value="SR"/>
<xsd:enumeration value="SS"/>
<xsd:enumeration value="ST"/>
<xsd:enumeration value="SV"/>
<xsd:enumeration value="SX"/>
<xsd:enumeration value="SY"/>
<xsd:enumeration value="SZ"/>
<xsd:enumeration value="TC"/>
<xsd:enumeration value="TD"/>
<xsd:enumeration value="TF"/>
<xsd:enumeration value="TG"/>
<xsd:enumeration value="TH"/>
<xsd:enumeration value="TJ"/>
<xsd:enumeration value="TK"/>
<xsd:enumeration value="TL"/>
<xsd:enumeration value="TM"/>
<xsd:enumeration value="TN"/>
<xsd:enumeration value="TO"/>
<xsd:enumeration value="TR"/>
<xsd:enumeration value="TT"/>
<xsd:enumeration value="TV"/>
<xsd:enumeration value="TW"/>
<xsd:enumeration value="TZ"/>
<xsd:enumeration value="UA"/>
<xsd:enumeration value="UG"/>
<xsd:enumeration value="UM"/>
<xsd:enumeration value="US"/>
<xsd:enumeration value="UY"/>
<xsd:enumeration value="UZ"/>
<xsd:enumeration value="VA"/>
<xsd:enumeration value="VC"/>
<xsd:enumeration value="VE"/>
<xsd:enumeration value="VG"/>
<xsd:enumeration value="VI"/>
<xsd:enumeration value="VN"/>
<xsd:enumeration value="VU"/>
<xsd:enumeration value="WF"/>
<xsd:enumeration value="WS"/>
<xsd:enumeration value="YE"/>
<xsd:enumeration value="YT"/>
<xsd:enumeration value="ZA"/>
<xsd:enumeration value="ZM"/>
<xsd:enumeration value="ZW"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Schema agency: UNCEFACT
Schema version: 100.0
Schema date: 10 October 2016
Copyright (C) UN/CEFACT (2016). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:ids64277="urn:un:unece:uncefact:identifierlist:standard:UNECE:PaymentTermsDescriptionIdentifier:D16A" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:un:unece:uncefact:identifierlist:standard:UNECE:PaymentTermsDescriptionIdentifier:D16A" elementFormDefault="qualified" version="1.1">
<xsd:simpleType name="PaymentTermsDescriptionIdentifierContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="1"/>
<xsd:enumeration value="2"/>
<xsd:enumeration value="3"/>
<xsd:enumeration value="4"/>
<xsd:enumeration value="5"/>
<xsd:enumeration value="6"/>
<xsd:enumeration value="7"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

View File

@@ -0,0 +1,2 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.

View File

@@ -0,0 +1,137 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import datetime
import os
from decimal import Decimal
from unittest.mock import MagicMock, Mock
from lxml import etree
from trytond.pool import Pool
from trytond.tests.test_tryton import (
ModuleTestCase, activate_module, with_transaction)
def get_invoice():
pool = Pool()
Address = pool.get('party.address')
Company = pool.get('company.company')
Country = pool.get('country.country')
Currency = pool.get('currency.currency')
Invoice = pool.get('account.invoice')
InvoiceLine = pool.get('account.invoice.line')
InvoiceTax = pool.get('account.invoice.tax')
MoveLine = pool.get('account.move.line')
Party = pool.get('party.party')
PaymentTerm = pool.get('account.invoice.payment_term')
Product = pool.get('product.product')
Tax = pool.get('account.tax')
Uom = pool.get('product.uom')
address = Mock(spec=Address,
street_unstructured="St sample, 15",
city="Scranton",
postal_code="1000",
subdivision=None,
country=Mock(spec=Country,
code='US'),
)
address.building_name = "Building A"
address.country.name = "United States"
party = Mock(spec=Party, addresses=[address])
party.name = "Michael Scott"
company = Mock(spec=Company,
party=Mock(spec=Party,
addresses=[Mock(spec=Address,
street_unstructured="Main street, 42",
country=Mock(spec=Country,
code='US'))]))
company.party.name = "Dunder Mifflin"
company.party.address_get = Mock(return_value=company.party.addresses[0])
taxes = [Mock(spec=InvoiceTax,
tax=Mock(spec=Tax,
unece_code='VAT',
unece_category_code='S',
legal_notice="Legal Notice",
),
base=Decimal('100.00'),
amount=Decimal('10.00'),
legal_notice="Legal Notice",
)]
product = Mock(spec=Product,
code="12345",
type='service',
)
product.name = "Product"
lines = [Mock(spec=InvoiceLine,
type='line',
product=product,
unit=Mock(spec=Uom,
unece_code='C62',
),
quantity=1,
unit_price=Decimal('100.0000'),
amount=Decimal('100.00'),
description="Description",
invoice_taxes=taxes,
)]
invoice = MagicMock(spec=Invoice,
id=-1,
__int__=Mock(return_value=-1),
type='out',
number="001",
party=party,
party_lang='fr',
invoice_address=party.addresses[0],
company=company,
currency=Mock(spec=Currency,
code='USD',
round=lambda a: a),
invoice_date=datetime.date.today(),
payment_term=Mock(spec=PaymentTerm, description="Direct"),
lines=lines,
taxes=taxes,
untaxed_amount=Decimal('100.00'),
tax_amount=Decimal('10.00'),
total_amount=Decimal('110.00'),
amount_to_pay=Decimal('110.00'),
lines_to_pay=[Mock(spec=MoveLine,
maturity_date=datetime.date.today(),
amount_second_currency=None,
debit=Decimal('110.00'),
credit=0,
)],
sales=[],
state='posted',
)
return invoice
class EDocumentUNCEFACTTestCase(ModuleTestCase):
'Test EDocument UN/CEFACT module'
module = 'edocument_uncefact'
@classmethod
def setUpClass(cls):
super().setUpClass()
activate_module('account_invoice')
@with_transaction()
def test_16B_CII_CrossIndustryInvoice(self):
"Test 16B-CII CrossIndustryInvoice"
pool = Pool()
Template = pool.get('edocument.uncefact.invoice')
invoice = get_invoice()
template = Template(invoice)
invoice_string = template.render('16B-CII')
invoice_xml = etree.fromstring(invoice_string)
schema_file = os.path.join(
os.path.dirname(__file__),
'16B-CII', 'data', 'standard', 'CrossIndustryInvoice_100pD16B.xsd')
schema = etree.XMLSchema(etree.parse(schema_file))
schema.assertValid(invoice_xml)
del ModuleTestCase

View File

@@ -0,0 +1,14 @@
[tryton]
version=7.8.1
depends:
ir
edocument_unece
extras_depend:
account_invoice
xml:
account.xml
[register account_invoice]
model:
edocument.Invoice
account.InvoiceEdocumentStart