diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index b7cc88f5..6348b352 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -1,10 +1,13 @@ in([__DIR__ . '/src', __DIR__ . '/tests']); +$finder = (new Finder()) + ->in([__DIR__ . '/src', __DIR__ . '/tests']) +; -return (new PhpCsFixer\Config()) +return (new Config()) ->setRiskyAllowed(false) ->setRules([ '@PSR2' => true, @@ -32,4 +35,4 @@ 'php_unit_test_class_requires_covers' => false, 'php_unit_internal_class' => false, ]) - ->setFinder($finder); \ No newline at end of file + ->setFinder($finder); diff --git a/composer.json b/composer.json index adf151a2..dc8b6a3f 100644 --- a/composer.json +++ b/composer.json @@ -30,7 +30,8 @@ "ext-libxml": "*", "friendsofphp/php-cs-fixer": "^3.16", "phpstan/phpstan": "^1.10", - "rector/rector": "^1.0" + "rector/rector": "^1.0", + "symfony/finder": "^5.4" }, "autoload": { "psr-4": { diff --git a/composer.lock b/composer.lock index a0a3039d..430b42d5 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "5cbaf884b26ba93cc6d4b1e7b5873cf3", + "content-hash": "d4d41a03a213cbbfadc482a12285b9e3", "packages": [ { "name": "doctrine/deprecations", @@ -3122,23 +3122,22 @@ }, { "name": "symfony/finder", - "version": "v6.2.7", + "version": "v5.4.43", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb" + "reference": "ae25a9145a900764158d439653d5630191155ca0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb", - "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb", + "url": "https://api.github.com/repos/symfony/finder/zipball/ae25a9145a900764158d439653d5630191155ca0", + "reference": "ae25a9145a900764158d439653d5630191155ca0", "shasum": "" }, "require": { - "php": ">=8.1" - }, - "require-dev": { - "symfony/filesystem": "^6.0" + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -3166,7 +3165,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.2.7" + "source": "https://github.com/symfony/finder/tree/v5.4.43" }, "funding": [ { @@ -3182,7 +3181,7 @@ "type": "tidelift" } ], - "time": "2023-02-16T09:57:23+00:00" + "time": "2024-08-13T14:03:51+00:00" }, { "name": "symfony/options-resolver", @@ -4100,5 +4099,5 @@ "platform-dev": { "ext-libxml": "*" }, - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } diff --git a/src/zugferd2/Model/ClassCode.php b/src/zugferd2/Model/ClassCode.php new file mode 100644 index 00000000..1759c208 --- /dev/null +++ b/src/zugferd2/Model/ClassCode.php @@ -0,0 +1,30 @@ +value = $id; + $self->listID = $listID; + return $self; + } +} diff --git a/src/zugferd2/Model/ExchangedDocumentContext.php b/src/zugferd2/Model/ExchangedDocumentContext.php index 584313b3..eae47267 100644 --- a/src/zugferd2/Model/ExchangedDocumentContext.php +++ b/src/zugferd2/Model/ExchangedDocumentContext.php @@ -10,6 +10,11 @@ class ExchangedDocumentContext { + #[Type(Indicator::class)] + #[XmlElement(namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + #[SerializedName('TestIndicator')] + public ?Indicator $testIndicator = null; + #[Type(DocumentContextParameter::class)] #[XmlElement(namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] #[SerializedName('BusinessProcessSpecifiedDocumentContextParameter')] diff --git a/src/zugferd2/Model/HeaderTradeAgreement.php b/src/zugferd2/Model/HeaderTradeAgreement.php index 30f95445..7210a331 100644 --- a/src/zugferd2/Model/HeaderTradeAgreement.php +++ b/src/zugferd2/Model/HeaderTradeAgreement.php @@ -18,6 +18,7 @@ 'buyerTaxRepresentativeTradeParty', 'buyerOrderReferencedDocument', 'contractReferencedDocument', + 'sellerOrderReferencedDocument', 'additionalReferencedDocuments', 'specifiedProcuringProject', ])] @@ -63,6 +64,11 @@ class HeaderTradeAgreement #[XmlList(entry: 'AdditionalReferencedDocument', inline: true, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] public array $additionalReferencedDocuments = []; + #[Type(ReferencedDocument::class)] + #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + #[SerializedName('SellerOrderReferencedDocument')] + public ?ReferencedDocument $sellerOrderReferencedDocument; + #[Type(ProcuringProject::class)] #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] #[SerializedName('SpecifiedProcuringProject')] diff --git a/src/zugferd2/Model/HeaderTradeDelivery.php b/src/zugferd2/Model/HeaderTradeDelivery.php index 2b348aaa..6773f79a 100644 --- a/src/zugferd2/Model/HeaderTradeDelivery.php +++ b/src/zugferd2/Model/HeaderTradeDelivery.php @@ -24,4 +24,9 @@ class HeaderTradeDelivery #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] #[SerializedName('DeliveryNoteReferencedDocument')] public ?ReferencedDocument $deliveryNoteReferencedDocument = null; + + #[Type(ReferencedDocument::class)] + #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + #[SerializedName('DespatchAdviceReferencedDocument')] + public ?ReferencedDocument $despatchAdviceReferencedDocument = null; } diff --git a/src/zugferd2/Model/HeaderTradeSettlement.php b/src/zugferd2/Model/HeaderTradeSettlement.php index 67b7664b..9d0b2110 100644 --- a/src/zugferd2/Model/HeaderTradeSettlement.php +++ b/src/zugferd2/Model/HeaderTradeSettlement.php @@ -21,16 +21,33 @@ class HeaderTradeSettlement #[SerializedName('PaymentReference')] public ?string $paymentReference = null; + #[Type('string')] + #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + #[SerializedName('TaxCurrencyCode')] + public string $taxCurrencyCode; + #[Type('string')] #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] #[SerializedName('InvoiceCurrencyCode')] public string $currency; + #[Type(TradeParty::class)] + #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + #[SerializedName('InvoiceeTradeParty')] + public ?TradeParty $invoiceeTradeParty = null; + #[Type(TradeParty::class)] #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] #[SerializedName('PayeeTradeParty')] public ?TradeParty $payeeTradeParty = null; + /** + * @var TradeCurrencyExchange[] + */ + #[Type('array')] + #[XmlList(entry: 'TaxApplicableTradeCurrencyExchange', inline: true, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + public array $taxApplicableTradeCurrencyExchange = []; + /** * @var TradeSettlementPaymentMeans[] */ @@ -80,4 +97,9 @@ class HeaderTradeSettlement #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] #[SerializedName('InvoiceReferencedDocument')] public ?ReferencedDocument $invoiceReferencedDocument = null; + + /** @var TradeAccountingAccount[] */ + #[Type('array')] + #[XmlList(entry: 'ReceivableSpecifiedTradeAccountingAccount', inline: true, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + public array $receivableSpecifiedTradeAccountingAccount = []; } diff --git a/src/zugferd2/Model/LineTradeDelivery.php b/src/zugferd2/Model/LineTradeDelivery.php index 77246241..07778f1a 100644 --- a/src/zugferd2/Model/LineTradeDelivery.php +++ b/src/zugferd2/Model/LineTradeDelivery.php @@ -15,6 +15,11 @@ class LineTradeDelivery #[SerializedName('BilledQuantity')] public Quantity $billedQuantity; + #[Type(Quantity::class)] + #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + #[SerializedName('PackageQuantity')] + public ?Quantity $packageQuantity; + #[Type(SupplyChainEvent::class)] #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] #[SerializedName('ActualDeliverySupplyChainEvent')] diff --git a/src/zugferd2/Model/ProductCharacteristic.php b/src/zugferd2/Model/ProductCharacteristic.php new file mode 100644 index 00000000..f6de4a40 --- /dev/null +++ b/src/zugferd2/Model/ProductCharacteristic.php @@ -0,0 +1,22 @@ +')] - #[XmlList(entry: 'AppliedTradeAllowanceCharge', inline: true, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] - public ?array $appliedTradeAllowanceCharges = null; + #[JMS\Type('array')] + #[JMS\XmlList(entry: 'AppliedTradeAllowanceCharge', inline: true, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + public array $appliedTradeAllowanceCharges = []; - /** @param array|null $tradeAllowanceCharge */ - public static function create(string $amount, Quantity $quantity = null, array $tradeAllowanceCharge = null): self + /** @param array $tradeAllowanceCharge */ + public static function create(string $amount, Quantity $quantity = null, array $tradeAllowanceCharge = []): self { $self = new self(); $self->chargeAmount = Amount::create($amount); diff --git a/src/zugferd2/Model/TradeProduct.php b/src/zugferd2/Model/TradeProduct.php index 990c047c..ec988645 100644 --- a/src/zugferd2/Model/TradeProduct.php +++ b/src/zugferd2/Model/TradeProduct.php @@ -8,6 +8,7 @@ use JMS\Serializer\Annotation\SerializedName; use JMS\Serializer\Annotation\Type; use JMS\Serializer\Annotation\XmlElement; +use JMS\Serializer\Annotation\XmlList; #[AccessorOrder(order: 'custom', custom: ['globalID', 'sellerAssignedID', 'buyerAssignedID', 'name', 'description', 'tradeCountry'])] class TradeProduct @@ -41,4 +42,19 @@ class TradeProduct #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] #[SerializedName('OriginTradeCountry')] public ?TradeCountry $tradeCountry = null; + + /** @var ProductCharacteristic[] */ + #[Type('array')] + #[XmlList(entry: 'ApplicableProductCharacteristic', inline: true, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + public ?array $applicableProductCharacteristic = []; + + #[Type(ProductClassification::class)] + #[XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + #[SerializedName('DesignatedProductClassification')] + public ?ProductClassification $designatedProductClassification = null; + + /** @var ProductType[] */ + #[Type('array')] + #[XmlList(entry: 'IncludedReferencedProduct', inline: true, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')] + public array $includedReferencedProduct = []; } diff --git a/src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd b/src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd deleted file mode 100644 index 2730a55a..00000000 --- a/src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd +++ /dev/null @@ -1,792 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL.sch b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL.sch new file mode 100644 index 00000000..92f7f255 --- /dev/null +++ b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL.sch @@ -0,0 +1,1485 @@ + + + Schema for Factur-X; 1.0.07; Accounting, BASIC without Lines + + + + + + + + [BR-45]-Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). + + [BR-46]-Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). + + [BR-47]-Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). + + [BR-48]-Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. + + [BR-CO-03]-Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. + + [BR-CO-17]-VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. + + [BR-DEC-19]-The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. + + [BR-DEC-20]-The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. + + + + + + [BR-Z-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). + + [BR-Z-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-S-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + [BR-S-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-29]-If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). + + [BR-CO-19]-If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. + + + + + + [BR-31]-Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). + + [BR-32]-Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). + + [BR-33]-Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). + + [BR-CO-05]-Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. + + [BR-CO-21]-Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. + + [BR-DEC-01]-The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. + + [BR-DEC-02]-The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. + + + + + + [BR-36]-Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). + + [BR-37]-Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). + + [BR-38]-Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). + + [BR-CO-06]-Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. + + [BR-CO-22]-Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. + + [BR-DEC-05]-The allowed maximum number of decimals for the Document level charge amount (BT-99) is 2. + + [BR-DEC-06]-The allowed maximum number of decimals for the Document level charge base amount (BT-100) is 2. + + + + + + [BR-17]-The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). + + + + + + [BR-18]-The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-19]-The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-20]-The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-56]-Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). + + + + + + [BR-CO-26]-In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. + + + + + + [BR-CO-09]-The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. + + + + + + [BR-66]-Each Specified Trade Allowance Charge (BG-20)(BG-21) shall contain a Charge Indicator. + + + + + + [BR-AE-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + [BR-AE-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-E-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-E-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-G-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + [BR-G-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-IC-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + [BR-IC-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-AF-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AF-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + [BR-AG-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AG-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + [BR-O-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + [BR-O-06]-A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). + + + + + + [BR-S-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-S-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. + + + + + + [BR-Z-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-Z-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-AE-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + [BR-AE-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-E-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-E-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-G-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + [BR-G-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-IC-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + [BR-IC-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-AF-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AF-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + [BR-AG-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AG-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + [BR-O-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + [BR-O-07]-A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). + + + + + + [BR-S-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-S-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. + + + + + + [BR-Z-04]-An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-Z-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-12]-An Invoice shall have the Sum of Invoice line net amount (BT-106). + + [BR-13]-An Invoice shall have the Invoice total amount without VAT (BT-109). + + [BR-14]-An Invoice shall have the Invoice total amount with VAT (BT-112). + + [BR-15]-An Invoice shall have the Amount due for payment (BT-115). + + [BR-CO-11]-Sum of allowances on document level (BT-107) = Σ Document level allowance amount (BT-92). + + [BR-CO-12]-Sum of charges on document level (BT-108) = Σ Document level charge amount (BT-99). + + [BR-CO-13]-Invoice total amount without VAT (BT-109) = Σ Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). + + [BR-CO-15]-Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). + + [BR-CO-16]-Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). + + [BR-DEC-09]-The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. + + [BR-DEC-10]-The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. + + [BR-DEC-11]-The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. + + [BR-DEC-12]-The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. + + [BR-DEC-13]-The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. + + [BR-DEC-14]-The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. + + [BR-DEC-15]-The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. + + [BR-DEC-16]-The allowed maximum number of decimals for the Paid amount (BT-113) is 2. + + [BR-DEC-17]-The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. + + [BR-DEC-18]-The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. + + [BR-53]-If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. + + + + + + [BR-CO-14]-Invoice total VAT amount (BT-110) = Σ VAT category tax amount (BT-117). + + + + + + [BR-49]-A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). + + [BR-CO-27]-Either the IBAN or a Proprietary ID (BT-84) shall be used. + + + + + + [BR-50]-A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. + + [BR-61]-If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. + + + + + + [BR-CO-18]-An Invoice shall at least have one VAT breakdown group (BG-23). + + + + + + [BR-AE-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" shall be 0 (zero). + + [BR-AE-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). + + + + + + [BR-E-09]-The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). + + [BR-E-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). + + + + + + [BR-G-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" shall be 0 (zero). + + [BR-G-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). + + + + + + [BR-IC-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" shall be 0 (zero). + + [BR-IC-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). + + [BR-IC-11]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. + + [BR-IC-12]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. + + + + + + [BR-AF-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + [BR-AF-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-AG-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + [BR-AG-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-O-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Not subject to VAT" shall be 0 (zero). + + [BR-O-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). + + [BR-O-11]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). + + [BR-O-13]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". + + [BR-O-14]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". + + + + + + [BR-CO-25]-In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. + + [BR-01]-An Invoice shall have a Specification identifier (BT-24). + + [BR-02]-An Invoice shall have an Invoice number (BT-1). + + [BR-03]-An Invoice shall have an Invoice issue date (BT-2). + + [BR-04]-An Invoice shall have an Invoice type code (BT-3). + + [BR-05]-An Invoice shall have an Invoice currency code (BT-5). + + [BR-06]-An Invoice shall contain the Seller name (BT-27). + + [BR-07]-An Invoice shall contain the Buyer name (BT-44). + + [BR-08]-An Invoice shall contain the Seller postal address (BG-5). + + [BR-09]-The Seller postal address (BG-5) shall contain a Seller country code (BT-40). + + [BR-10]-An Invoice shall contain the Buyer postal address (BG-8). + + [BR-11]-The Buyer postal address shall contain a Buyer country code (BT-55). + + [BR-62]-The Seller electronic address (BT-34) shall have a Scheme identifier. + + [BR-63]-The Buyer electronic address (BT-49) shall have a Scheme identifier. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Content' must occur exactly 1 times. + + Element 'ram:SubjectCode' may occur at maximum 1 times. + + + + + + + Value of 'ram:SubjectCode' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. + + Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:SellerTradeParty' must occur exactly 1 times. + + Element 'ram:BuyerTradeParty' must occur exactly 1 times. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:GlobalID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:TradingBusinessName' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. + + + + + + Element 'ram:GlobalID' is marked as not used in the given context. + + + + + + Element 'ram:ID' is marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="VA"]' may occur at maximum 1 times. + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="FC"]' may occur at maximum 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ not(ram:ID/@schemeID="VA") and not(ram:ID/@schemeID="FC")]' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + [BR-57]-Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). + + + + + + Element 'ram:OccurrenceDateTime' must occur exactly 1 times. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + Element 'ram:PaymentReference' may occur at maximum 1 times. + + Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. + + Element 'ram:ApplicableTradeTax' must occur at least 1 times. + + Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. + + Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. + + Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:BasisAmount' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + Value of 'ram:DueDateTypeCode' is not allowed. + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + Value of 'ram:InvoiceCurrencyCode' is not allowed. + + + + + + [BR-55]-Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:GlobalID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:TradingBusinessName' is marked as not used in the given context. + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. + + Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. + + Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:InvoiceCurrencyCode]' may occur at maximum 1 times. + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:TaxCurrencyCode]' may occur at maximum 1 times. + + Element 'ram:GrandTotalAmount' must occur exactly 1 times. + + Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. + + Element 'ram:DuePayableAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element variant 'ram:TaxTotalAmount[ not(@currencyID=../../ram:InvoiceCurrencyCode) and not(@currencyID=../../ram:TaxCurrencyCode)]' is marked as not used in the given context. + + + + + + + Value of '@currencyID' is not allowed. + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + Value of '@currencyID' is not allowed. + + + + + + Attribute '@currencyID' is required in this context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:PayeePartyCreditorFinancialAccount' may occur at maximum 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:IBANID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + Value of 'ram:TaxCurrencyCode' is not allowed. + + + diff --git a/src/zugferd2/Schema/BASIC/FACTUR-X_BASIC.xsd b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL.xsd similarity index 73% rename from src/zugferd2/Schema/BASIC/FACTUR-X_BASIC.xsd rename to src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL.xsd index cfe05e14..d8d7a314 100644 --- a/src/zugferd2/Schema/BASIC/FACTUR-X_BASIC.xsd +++ b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL.xsd @@ -6,9 +6,9 @@ xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" targetNamespace="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" elementFormDefault="qualified"> - - - + + + diff --git a/src/zugferd2/Schema/BASIC-WL/Schematron/FACTUR-X_BASIC-WL_codedb.xml b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_codedb.xml similarity index 51% rename from src/zugferd2/Schema/BASIC-WL/Schematron/FACTUR-X_BASIC-WL_codedb.xml rename to src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_codedb.xml index e14efab6..cc567d65 100644 --- a/src/zugferd2/Schema/BASIC-WL/Schematron/FACTUR-X_BASIC-WL_codedb.xml +++ b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_codedb.xml @@ -1,16 +1,23 @@ + + + + + + + @@ -18,8 +25,10 @@ + + @@ -37,20 +46,24 @@ + + + + - + - + @@ -328,6 +341,15 @@ + + + + + + + + + @@ -357,7 +379,16 @@ + + + + + + + + + @@ -435,7 +466,7 @@ - + @@ -644,8 +675,25 @@ + + + + + + + + + + + + + + + + + - + @@ -854,8 +902,278 @@ + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -868,9 +1186,12 @@ + + + @@ -885,18 +1206,21 @@ + + + + + + + + - - - - - @@ -936,1093 +1260,291 @@ - - - + - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -2033,135 +1555,455 @@ - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -2291,7 +2133,7 @@ - + @@ -2342,7 +2184,7 @@ - + diff --git a/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd new file mode 100644 index 00000000..bdf28418 --- /dev/null +++ b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd similarity index 96% rename from src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd rename to src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd index 7eb18262..89d8a099 100644 --- a/src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd +++ b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd @@ -5,8 +5,8 @@ xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" targetNamespace="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" elementFormDefault="qualified"> - - + + @@ -61,13 +61,13 @@ - + - + diff --git a/src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd similarity index 92% rename from src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd rename to src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd index a2eeee09..414b7ea2 100644 --- a/src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd +++ b/src/zugferd2/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd @@ -2,8 +2,7 @@ + elementFormDefault="qualified"> @@ -32,7 +31,7 @@ - + diff --git a/src/zugferd2/Schema/BASIC-WL/Schematron/FACTUR-X_BASIC-WL.sch b/src/zugferd2/Schema/BASIC-WL/Schematron/FACTUR-X_BASIC-WL.sch deleted file mode 100644 index 03b4dd6d..00000000 --- a/src/zugferd2/Schema/BASIC-WL/Schematron/FACTUR-X_BASIC-WL.sch +++ /dev/null @@ -1,5216 +0,0 @@ - - - Schema for FACTUR-X; 1.0; ACCOUNTING INFORMATION, No XML Invoice, (BASIC WITHOUT LINE) - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - Element 'ram:CategoryCode' is marked as not used in the given context. - - - - - - Element 'ram:ControlRequirementIndicator' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - Element 'ram:ContentCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - - Value of 'ram:SubjectCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LanguageID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:Purpose' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionDateTime' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:VersionID' is marked as not used in the given context. - - - - - - Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. - - Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. - - - - - - Element 'ram:ApplicationSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:BIMSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - Element 'ram:MessageStandardSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:ScenarioSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTransactionID' is marked as not used in the given context. - - - - - - Element 'ram:SubsetSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:TestIndicator' is marked as not used in the given context. - - - - - - Element 'ram:SellerTradeParty' must occur exactly 1 times. - - Element 'ram:BuyerTradeParty' must occur exactly 1 times. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - Element 'ram:BuyerAgentTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:BuyerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:BuyerTaxRepresentativeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:OrderResponseReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PriceListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ProductEndUserTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseConditionsReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:Reference' is marked as not used in the given context. - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:SalesAgentTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SellerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 2 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedProcuringProject' is marked as not used in the given context. - - - - - - Element 'ram:SupplyInstructionReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DescriptionBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:EarliestOccurrenceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LatestOccurrenceDateTime' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:OccurrenceLogisticsLocation' is marked as not used in the given context. - - - - - - Element 'ram:OccurrenceSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PreviousDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ReceivingAdviceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PaymentReference' may occur at maximum 1 times. - - Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. - - Element 'ram:SpecifiedTradeSettlementPaymentMeans' may occur at maximum 1 times. - - Element 'ram:ApplicableTradeTax' must occur at least 1 times. - - Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. - - Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. - - Element 'ram:InvoiceReferencedDocument' may occur at maximum 1 times. - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:BasisAmount' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:CreditReason' is marked as not used in the given context. - - - - - - Element 'ram:CreditReasonCode' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceIssuerID' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceType' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:DuePayableAmount' is marked as not used in the given context. - - - - - - Element 'ram:FactoringAgreementReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:FactoringListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:InvoiceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:InvoicerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LetterOfCreditReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:NextInvoiceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PayerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PaymentApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Element 'ram:PaymentCurrencyCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ProFormaInvoiceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedAdvancePayment' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - Element 'ram:ActualAmount' must occur exactly 1 times. - - Element 'ram:CategoryTradeTax' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:Description' may occur at maximum 1 times. - - Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. - - - - - - Element 'ram:ApplicableTradePaymentDiscountTerms' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradePaymentPenaltyTerms' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:FromEventCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstructionTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:PartialPaymentAmount' is marked as not used in the given context. - - - - - - Element 'ram:PartialPaymentPercent' is marked as not used in the given context. - - - - - - Element 'ram:PayeeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PaymentMeansID' is marked as not used in the given context. - - - - - - Element 'ram:SettlementPeriodMeasure' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. - - Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. - - Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. - - Element 'ram:TaxTotalAmount' may occur at maximum 2 times. - - Element 'ram:GrandTotalAmount' must occur exactly 1 times. - - Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. - - Element 'ram:DuePayableAmount' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:ProductValueExcludingTobaccoTaxInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:RetailValueExcludingTaxInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:RoundingAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute '@currencyID' is required in this context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - Value of '@currencyID' is not allowed. - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalDepositFeeInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalDiscountAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - Element 'ram:ApplicableTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - Element 'ram:GuaranteeMethodCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:PayeeSpecifiedCreditorFinancialInstitution' is marked as not used in the given context. - - - - - - Element 'ram:IBANID' must occur exactly 1 times. - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ProprietaryID' is marked as not used in the given context. - - - - - - Element 'ram:PayerSpecifiedDebtorFinancialInstitution' is marked as not used in the given context. - - - - - - Element 'ram:PaymentChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:PaymentMethodCode' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:TaxApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UltimatePayeeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSupplyChainTradeLineItem' is marked as not used in the given context. - - - - - - Element 'rsm:ValuationBreakdownStatement' is marked as not used in the given context. - - - diff --git a/src/zugferd2/Schema/BASIC-WL/_XSLT_BASICWL/FACTUR-X_1.0.07_BASIC-WL.xslt b/src/zugferd2/Schema/BASIC-WL/_XSLT_BASICWL/FACTUR-X_1.0.07_BASIC-WL.xslt new file mode 100644 index 00000000..45df70b0 --- /dev/null +++ b/src/zugferd2/Schema/BASIC-WL/_XSLT_BASICWL/FACTUR-X_1.0.07_BASIC-WL.xslt @@ -0,0 +1,8537 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + *: + + [namespace-uri()=' + + '] + + + + [ + + ] + + + + / + + @ + + + @*[local-name()=' + + ' and namespace-uri()=' + + '] + + + + + + + + + / + + + [ + + ] + + + + /@ + + + + + + + + / + + + [ + + ] + + + + /@ + + + + + + + + + + + + + + + + + + + + + + + + . + + + + +U + + U + + + + U. + + n + + + + U. + + _ + + _ + + + + + + + + +   +   +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Schema for Factur-X; 1.0.07; Accounting, BASIC without Lines + + + + + + + + + + + + + + + + + + [BR-45]-Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). + + + + + + + + + + + + + + [BR-46]-Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). + + + + + + + + + + + + + + [BR-47]-Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). + + + + + + + + + + + + + + [BR-48]-Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. + + + + + + + + + + + + + + [BR-CO-03]-Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. + + + + + + + + + + + + + + [BR-CO-17]-VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. + + + + + + + + + + + + + + [BR-DEC-19]-The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. + + + + + + + + + + + + + + [BR-DEC-20]-The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). + + + + + + + + + + + + + + [BR-Z-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-S-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-29]-If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). + + + + + + + + + + + + + + [BR-CO-19]-If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-31]-Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). + + + + + + + + + + + + + + [BR-32]-Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). + + + + + + + + + + + + + + [BR-33]-Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). + + + + + + + + + + + + + + [BR-CO-05]-Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. + + + + + + + + + + + + + + [BR-CO-21]-Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. + + + + + + + + + + + + + + [BR-DEC-01]-The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. + + + + + + + + + + + + + + [BR-DEC-02]-The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-36]-Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). + + + + + + + + + + + + + + [BR-37]-Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). + + + + + + + + + + + + + + [BR-38]-Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). + + + + + + + + + + + + + + [BR-CO-06]-Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. + + + + + + + + + + + + + + [BR-CO-22]-Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. + + + + + + + + + + + + + + [BR-DEC-05]-The allowed maximum number of decimals for the Document level charge amount (BT-99) is 2. + + + + + + + + + + + + + + [BR-DEC-06]-The allowed maximum number of decimals for the Document level charge base amount (BT-100) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-17]-The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-18]-The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-19]-The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-20]-The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-56]-Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-26]-In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-09]-The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-66]-Each Specified Trade Allowance Charge (BG-20)(BG-21) shall contain a Charge Indicator. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + + + + + + + + + + + + + [BR-AE-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-E-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-G-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-IC-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AF-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AG-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-O-06]-A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-S-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-Z-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + + + + + + + + + + + + + [BR-AE-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-E-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-G-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-IC-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AF-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AG-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-O-07]-A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-S-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-04]-An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-Z-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-12]-An Invoice shall have the Sum of Invoice line net amount (BT-106). + + + + + + + + + + + + + + [BR-13]-An Invoice shall have the Invoice total amount without VAT (BT-109). + + + + + + + + + + + + + + [BR-14]-An Invoice shall have the Invoice total amount with VAT (BT-112). + + + + + + + + + + + + + + [BR-15]-An Invoice shall have the Amount due for payment (BT-115). + + + + + + + + + + + + + + [BR-CO-11]-Sum of allowances on document level (BT-107) = Σ Document level allowance amount (BT-92). + + + + + + + + + + + + + + [BR-CO-12]-Sum of charges on document level (BT-108) = Σ Document level charge amount (BT-99). + + + + + + + + + + + + + + [BR-CO-13]-Invoice total amount without VAT (BT-109) = Σ Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). + + + + + + + + + + + + + + [BR-CO-15]-Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). + + + + + + + + + + + + + + [BR-CO-16]-Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). + + + + + + + + + + + + + + [BR-DEC-09]-The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. + + + + + + + + + + + + + + [BR-DEC-10]-The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. + + + + + + + + + + + + + + [BR-DEC-11]-The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. + + + + + + + + + + + + + + [BR-DEC-12]-The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. + + + + + + + + + + + + + + [BR-DEC-13]-The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. + + + + + + + + + + + + + + [BR-DEC-14]-The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. + + + + + + + + + + + + + + [BR-DEC-15]-The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. + + + + + + + + + + + + + + [BR-DEC-16]-The allowed maximum number of decimals for the Paid amount (BT-113) is 2. + + + + + + + + + + + + + + [BR-DEC-17]-The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. + + + + + + + + + + + + + + [BR-DEC-18]-The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. + + + + + + + + + + + + + + [BR-53]-If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-14]-Invoice total VAT amount (BT-110) = Σ VAT category tax amount (BT-117). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-49]-A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). + + + + + + + + + + + + + + [BR-CO-27]-Either the IBAN or a Proprietary ID (BT-84) shall be used. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-50]-A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. + + + + + + + + + + + + + + [BR-61]-If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-18]-An Invoice shall at least have one VAT breakdown group (BG-23). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" shall be 0 (zero). + + + + + + + + + + + + + + [BR-AE-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-09]-The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). + + + + + + + + + + + + + + [BR-E-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" shall be 0 (zero). + + + + + + + + + + + + + + [BR-G-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" shall be 0 (zero). + + + + + + + + + + + + + + [BR-IC-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). + + + + + + + + + + + + + + [BR-IC-11]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. + + + + + + + + + + + + + + [BR-IC-12]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AF-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AG-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Not subject to VAT" shall be 0 (zero). + + + + + + + + + + + + + + [BR-O-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). + + + + + + + + + + + + + + [BR-O-11]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). + + + + + + + + + + + + + + [BR-O-13]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". + + + + + + + + + + + + + + [BR-O-14]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-25]-In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. + + + + + + + + + + + + + + [BR-01]-An Invoice shall have a Specification identifier (BT-24). + + + + + + + + + + + + + + [BR-02]-An Invoice shall have an Invoice number (BT-1). + + + + + + + + + + + + + + [BR-03]-An Invoice shall have an Invoice issue date (BT-2). + + + + + + + + + + + + + + [BR-04]-An Invoice shall have an Invoice type code (BT-3). + + + + + + + + + + + + + + [BR-05]-An Invoice shall have an Invoice currency code (BT-5). + + + + + + + + + + + + + + [BR-06]-An Invoice shall contain the Seller name (BT-27). + + + + + + + + + + + + + + [BR-07]-An Invoice shall contain the Buyer name (BT-44). + + + + + + + + + + + + + + [BR-08]-An Invoice shall contain the Seller postal address (BG-5). + + + + + + + + + + + + + + [BR-09]-The Seller postal address (BG-5) shall contain a Seller country code (BT-40). + + + + + + + + + + + + + + [BR-10]-An Invoice shall contain the Buyer postal address (BG-8). + + + + + + + + + + + + + + [BR-11]-The Buyer postal address shall contain a Buyer country code (BT-55). + + + + + + + + + + + + + + [BR-62]-The Seller electronic address (BT-34) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-63]-The Buyer electronic address (BT-49) shall have a Scheme identifier. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Content' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SubjectCode' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:SubjectCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SellerTradeParty' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:BuyerTradeParty' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TradingBusinessName' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:GlobalID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="VA"]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="FC"]' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ not(ram:ID/@schemeID="VA") and not(ram:ID/@schemeID="FC")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-57]-Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:OccurrenceDateTime' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:PaymentReference' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ApplicableTradeTax' must occur at least 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:BasisAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:DueDateTypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:InvoiceCurrencyCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-55]-Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TradingBusinessName' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:InvoiceCurrencyCode]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:TaxCurrencyCode]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GrandTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:DuePayableAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[ not(@currencyID=../../ram:InvoiceCurrencyCode) and not(@currencyID=../../ram:TaxCurrencyCode)]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@currencyID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@currencyID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:PayeePartyCreditorFinancialAccount' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IBANID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TaxCurrencyCode' is not allowed. + + + + + + + + + + diff --git a/src/zugferd2/Schema/BASIC-WL/_XSLT_BASICWL/FACTUR-X_1.0.07_BASIC-WL_codedb.xml b/src/zugferd2/Schema/BASIC-WL/_XSLT_BASICWL/FACTUR-X_1.0.07_BASIC-WL_codedb.xml new file mode 100644 index 00000000..cc567d65 --- /dev/null +++ b/src/zugferd2/Schema/BASIC-WL/_XSLT_BASICWL/FACTUR-X_1.0.07_BASIC-WL_codedb.xml @@ -0,0 +1,2190 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/BASIC/FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd b/src/zugferd2/Schema/BASIC/FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd deleted file mode 100644 index f8ccbcf1..00000000 --- a/src/zugferd2/Schema/BASIC/FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd +++ /dev/null @@ -1,792 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC.sch b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC.sch new file mode 100644 index 00000000..4958f4f6 --- /dev/null +++ b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC.sch @@ -0,0 +1,2047 @@ + + + Schema for Factur-X; 1.0.07; EN16931-COMPLIANT-BASIC + + + + + + + + [BR-45]-Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). + + [BR-46]-Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). + + [BR-47]-Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). + + [BR-48]-Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. + + [BR-CO-03]-Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. + + [BR-CO-17]-VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. + + [BR-DEC-19]-The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. + + [BR-DEC-20]-The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. + + + + + + [BR-Z-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amount (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Zero rated". + + [BR-Z-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). + + [BR-Z-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-S-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + [BR-S-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + [BR-S-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "Standard rated", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "Standard rated" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + + + + + [BR-29]-If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). + + [BR-CO-19]-If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. + + + + + + [BR-31]-Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). + + [BR-32]-Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). + + [BR-33]-Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). + + [BR-CO-05]-Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. + + [BR-CO-21]-Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. + + [BR-DEC-01]-The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. + + [BR-DEC-02]-The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. + + + + + + [BR-36]-Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). + + [BR-37]-Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). + + [BR-38]-Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). + + [BR-CO-06]-Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. + + [BR-CO-22]-Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. + + [BR-DEC-05]-The allowed maximum number of decimals for the Document level charge amount (BT-99) is 2. + + [BR-DEC-06]-The allowed maximum number of decimals for the Document level charge base amount (BT-100) is 2. + + + + + + [BR-54]-Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). + + + + + + [BR-21]-Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). + + [BR-22]-Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). + + [BR-23]-An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). + + [BR-24]-Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). + + [BR-25]-Each Invoice line (BG-25) shall contain the Item name (BT-153). + + [BR-26]-Each Invoice line (BG-25) shall contain the Item net price (BT-146). + + [BR-27]-The Item net price (BT-146) shall NOT be negative. + + [BR-28]-The Item gross price (BT-148) shall NOT be negative. + + [BR-64]-The Item standard identifier (BT-157) shall have a Scheme identifier. + + [BR-65]-The Item classification identifier (BT-158) shall have a Scheme identifier. + + [BR-CO-04]-Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). + + [BR-DEC-23]-The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. + + + + + + [BR-17]-The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). + + + + + + [BR-18]-The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-19]-The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-20]-The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-56]-Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). + + + + + + [BR-CO-26]-In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. + + + + + + [BR-30]-If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). + + [BR-CO-20]-If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. + + + + + + [BR-42]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). + + + + + + [BR-41]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). + + [BR-CO-07]-Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. + + [BR-CO-23]-Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. + + [BR-DEC-24]-The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. + + [BR-DEC-25]-The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. + + + + + + [BR-43]-Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). + + [BR-44]-Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). + + [BR-CO-08]-Invoice line charge reason code (BT-145) and Invoice line charge reason (BT-144) shall indicate the same type of charge reason. + + [BR-CO-24]-Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. + + [BR-DEC-27]-The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. + + [BR-DEC-28]-The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. + + + + + + [BR-CO-09]-The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. + + + + + + [BR-66]-Each Specified Trade Allowance Charge (BG-20)(BG-21) shall contain a Charge Indicator. + + + + + + [BR-AE-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + [BR-AE-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-E-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-E-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-G-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + [BR-G-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-IC-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + [BR-IC-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-AF-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AF-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + [BR-AG-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AG-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + [BR-O-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + [BR-O-06]-A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). + + + + + + [BR-S-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-S-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. + + + + + + [BR-Z-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-Z-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-AE-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + [BR-AE-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-E-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-E-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-G-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + [BR-G-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-IC-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + [BR-IC-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-AF-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AF-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + [BR-AG-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AG-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + [BR-O-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + [BR-O-07]-A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). + + + + + + [BR-S-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-S-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. + + + + + + [BR-Z-04]-An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-Z-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-CO-10]-Sum of Invoice line net amount (BT-106) = Σ Invoice line net amount (BT-131). + + [BR-12]-An Invoice shall have the Sum of Invoice line net amount (BT-106). + + [BR-13]-An Invoice shall have the Invoice total amount without VAT (BT-109). + + [BR-14]-An Invoice shall have the Invoice total amount with VAT (BT-112). + + [BR-15]-An Invoice shall have the Amount due for payment (BT-115). + + [BR-CO-11]-Sum of allowances on document level (BT-107) = Σ Document level allowance amount (BT-92). + + [BR-CO-12]-Sum of charges on document level (BT-108) = Σ Document level charge amount (BT-99). + + [BR-CO-13]-Invoice total amount without VAT (BT-109) = Σ Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). + + [BR-CO-15]-Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). + + [BR-CO-16]-Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). + + [BR-DEC-09]-The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. + + [BR-DEC-10]-The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. + + [BR-DEC-11]-The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. + + [BR-DEC-12]-The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. + + [BR-DEC-13]-The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. + + [BR-DEC-14]-The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. + + [BR-DEC-15]-The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. + + [BR-DEC-16]-The allowed maximum number of decimals for the Paid amount (BT-113) is 2. + + [BR-DEC-17]-The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. + + [BR-DEC-18]-The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. + + [BR-53]-If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. + + + + + + [BR-CO-14]-Invoice total VAT amount (BT-110) = Σ VAT category tax amount (BT-117). + + + + + + [BR-49]-A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). + + [BR-CO-27]-Either the IBAN or a Proprietary ID (BT-84) shall be used. + + + + + + [BR-50]-A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. + + [BR-61]-If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. + + + + + + [BR-CO-18]-An Invoice shall at least have one VAT breakdown group (BG-23). + + + + + + [BR-AE-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Reverse charge". + + [BR-AE-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" shall be 0 (zero). + + [BR-AE-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). + + + + + + [BR-E-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Exempt from VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Exempt from VAT". + + [BR-E-09]-The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). + + [BR-E-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). + + + + + + [BR-G-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Export outside the EU". + + [BR-G-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" shall be 0 (zero). + + [BR-G-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). + + + + + + [BR-IC-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Intra-community supply". + + [BR-IC-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" shall be 0 (zero). + + [BR-IC-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). + + [BR-IC-11]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. + + [BR-IC-12]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. + + + + + + [BR-AF-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IGIC", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IGIC" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + [BR-AF-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + [BR-AF-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-AG-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IPSI", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IPSI" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + [BR-AG-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + [BR-AG-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-O-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is " Not subject to VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Not subject to VAT". + + [BR-O-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Not subject to VAT" shall be 0 (zero). + + [BR-O-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). + + [BR-O-11]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). + + [BR-O-12]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is not "Not subject to VAT". + + [BR-O-13]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". + + [BR-O-14]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". + + + + + + [BR-AE-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + [BR-AE-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-E-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-E-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-G-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + [BR-G-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-IC-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + [BR-IC-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-AF-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AF-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be greater than 0 (zero). + + + + + + [BR-AG-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AG-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. + + + + + + [BR-O-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-46). + + [BR-O-05]-An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). + + + + + + [BR-S-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-S-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. + + + + + + [BR-Z-02]-An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-Z-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-16]-An Invoice shall have at least one Invoice line (BG-25). + + [BR-CO-25]-In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. + + [BR-01]-An Invoice shall have a Specification identifier (BT-24). + + [BR-02]-An Invoice shall have an Invoice number (BT-1). + + [BR-03]-An Invoice shall have an Invoice issue date (BT-2). + + [BR-04]-An Invoice shall have an Invoice type code (BT-3). + + [BR-05]-An Invoice shall have an Invoice currency code (BT-5). + + [BR-06]-An Invoice shall contain the Seller name (BT-27). + + [BR-07]-An Invoice shall contain the Buyer name (BT-44). + + [BR-08]-An Invoice shall contain the Seller postal address (BG-5). + + [BR-09]-The Seller postal address (BG-5) shall contain a Seller country code (BT-40). + + [BR-10]-An Invoice shall contain the Buyer postal address (BG-8). + + [BR-11]-The Buyer postal address shall contain a Buyer country code (BT-55). + + [BR-62]-The Seller electronic address (BT-34) shall have a Scheme identifier. + + [BR-63]-The Buyer electronic address (BT-49) shall have a Scheme identifier. + + [BR-S-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Standard rated" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". + + [BR-Z-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Zero rated" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". + + [BR-E-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Exempt from VAT” shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". + + [BR-AE-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Reverse charge" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". + + [BR-IC-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Intra-community supply" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". + + [BR-G-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Export outside the EU" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". + + [BR-O-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Not subject to VAT" shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". + + [BR-AF-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IGIC" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". + + [BR-AG-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IPSI" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". + + [BR-B-01]-An Invoice where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment” shall be a domestic Italian invoice. + + [BR-B-02]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment" shall not contain an invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated”. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Content' must occur exactly 1 times. + + Element 'ram:SubjectCode' may occur at maximum 1 times. + + + + + + + Value of 'ram:SubjectCode' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. + + Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. + + + + + + Element 'ram:SellerTradeParty' must occur exactly 1 times. + + Element 'ram:BuyerTradeParty' must occur exactly 1 times. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:GlobalID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:TradingBusinessName' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. + + + + + + Element 'ram:GlobalID' is marked as not used in the given context. + + + + + + Element 'ram:ID' is marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="VA"]' may occur at maximum 1 times. + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="FC"]' may occur at maximum 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ not(ram:ID/@schemeID="VA") and not(ram:ID/@schemeID="FC")]' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + [BR-57]-Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). + + + + + + Element 'ram:OccurrenceDateTime' must occur exactly 1 times. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + Element 'ram:PaymentReference' may occur at maximum 1 times. + + Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. + + Element 'ram:ApplicableTradeTax' must occur at least 1 times. + + Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. + + Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. + + Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:BasisAmount' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + Value of 'ram:DueDateTypeCode' is not allowed. + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + Value of 'ram:InvoiceCurrencyCode' is not allowed. + + + + + + [BR-55]-Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:GlobalID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:TradingBusinessName' is marked as not used in the given context. + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. + + Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. + + Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:InvoiceCurrencyCode]' may occur at maximum 1 times. + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:TaxCurrencyCode]' may occur at maximum 1 times. + + Element 'ram:GrandTotalAmount' must occur exactly 1 times. + + Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. + + Element 'ram:DuePayableAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element variant 'ram:TaxTotalAmount[ not(@currencyID=../../ram:InvoiceCurrencyCode) and not(@currencyID=../../ram:TaxCurrencyCode)]' is marked as not used in the given context. + + + + + + + Value of '@currencyID' is not allowed. + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + Value of '@currencyID' is not allowed. + + + + + + Attribute '@currencyID' is required in this context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:PayeePartyCreditorFinancialAccount' may occur at maximum 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:IBANID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + Value of 'ram:TaxCurrencyCode' is not allowed. + + + + + + Element 'ram:AssociatedDocumentLineDocument' must occur exactly 1 times. + + Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. + + Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. + + Element 'ram:SpecifiedLineTradeDelivery' must occur exactly 1 times. + + + + + + Element 'ram:LineID' must occur exactly 1 times. + + Element 'ram:IncludedNote' may occur at maximum 1 times. + + + + + + Element 'ram:Content' must occur exactly 1 times. + + + + + + Element 'ram:SubjectCode' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + Element variant 'ram:AppliedTradeAllowanceCharge[ram:ChargeIndicator/udt:Indicator="false"]' may occur at maximum 1 times. + + + + + + Element variant 'ram:AppliedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculationPercent' is marked as not used in the given context. + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + Element 'ram:Reason' is marked as not used in the given context. + + + + + + Element 'ram:ReasonCode' is marked as not used in the given context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + + + + + Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:BilledQuantity' must occur exactly 1 times. + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Element 'ram:ApplicableTradeTax' must occur exactly 1 times. + + Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculationPercent' is marked as not used in the given context. + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculationPercent' is marked as not used in the given context. + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + diff --git a/src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL.xsd b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC.xsd similarity index 74% rename from src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL.xsd rename to src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC.xsd index 58a1cc63..711f0a26 100644 --- a/src/zugferd2/Schema/BASIC-WL/FACTUR-X_BASIC-WL.xsd +++ b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC.xsd @@ -6,9 +6,9 @@ xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" targetNamespace="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" elementFormDefault="qualified"> - - - + + + diff --git a/src/zugferd2/Schema/BASIC/Schematron/FACTUR-X_BASIC_codedb.xml b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_codedb.xml similarity index 74% rename from src/zugferd2/Schema/BASIC/Schematron/FACTUR-X_BASIC_codedb.xml rename to src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_codedb.xml index 1a4fe1ac..ce1fdffe 100644 --- a/src/zugferd2/Schema/BASIC/Schematron/FACTUR-X_BASIC_codedb.xml +++ b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_codedb.xml @@ -1,16 +1,23 @@ + + + + + + + @@ -18,8 +25,10 @@ + + @@ -37,20 +46,24 @@ + + + + - + - + @@ -328,6 +341,15 @@ + + + + + + + + + @@ -357,7 +379,16 @@ + + + + + + + + + @@ -435,7 +466,7 @@ - + @@ -644,414 +675,25 @@ + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -1078,15 +720,10 @@ - - - - - @@ -1131,7 +768,6 @@ - @@ -1148,7 +784,6 @@ - @@ -1175,25 +810,12 @@ - - - - - - - - - - - - - @@ -1203,14 +825,7 @@ - - - - - - - @@ -1242,12 +857,10 @@ - - @@ -1279,12 +892,7 @@ - - - - - @@ -1295,7 +903,6 @@ - @@ -1309,7 +916,6 @@ - @@ -1500,11 +1106,7 @@ - - - - @@ -1533,13 +1135,8 @@ - - - - - @@ -1551,7 +1148,6 @@ - @@ -1581,9 +1177,7 @@ - - @@ -1591,7 +1185,6 @@ - @@ -1913,8 +1506,6 @@ - - @@ -1991,7 +1582,6 @@ - @@ -2013,7 +1603,6 @@ - @@ -2022,15 +1611,12 @@ - - - @@ -2118,12 +1704,10 @@ - - @@ -2152,8 +1736,6 @@ - - @@ -2177,7 +1759,6 @@ - @@ -2627,12 +2208,8 @@ - - - - @@ -2646,7 +2223,6 @@ - @@ -2752,7 +2328,6 @@ - @@ -2795,7 +2370,6 @@ - @@ -2817,7 +2391,6 @@ - @@ -2852,7 +2425,6 @@ - @@ -2870,1182 +2442,637 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4254,8 +3281,25 @@ + + + + + + + + + + + + + + + + + - + @@ -4464,163 +3508,1094 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -4750,7 +4725,7 @@ - + @@ -4801,7 +4776,7 @@ - + diff --git a/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd new file mode 100644 index 00000000..bdf28418 --- /dev/null +++ b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/BASIC/FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd similarity index 97% rename from src/zugferd2/Schema/BASIC/FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd rename to src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd index 2cbf3316..35458e59 100644 --- a/src/zugferd2/Schema/BASIC/FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd +++ b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd @@ -5,8 +5,8 @@ xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" targetNamespace="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" elementFormDefault="qualified"> - - + + @@ -67,13 +67,13 @@ - + - + diff --git a/src/zugferd2/Schema/BASIC/FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd similarity index 90% rename from src/zugferd2/Schema/BASIC/FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd rename to src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd index a8d4a270..e2f2bc85 100644 --- a/src/zugferd2/Schema/BASIC/FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd +++ b/src/zugferd2/Schema/BASIC/Factur-X_1.0.07_BASIC_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd @@ -2,8 +2,7 @@ + elementFormDefault="qualified"> @@ -32,7 +31,7 @@ - + @@ -49,7 +48,7 @@ - + diff --git a/src/zugferd2/Schema/BASIC/Schematron/FACTUR-X_BASIC.sch b/src/zugferd2/Schema/BASIC/Schematron/FACTUR-X_BASIC.sch deleted file mode 100644 index df226b5c..00000000 --- a/src/zugferd2/Schema/BASIC/Schematron/FACTUR-X_BASIC.sch +++ /dev/null @@ -1,6908 +0,0 @@ - - - Schema for FACTUR-X; 1.0; EN16931-COMPLIANT-BASIC - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - Element 'ram:CategoryCode' is marked as not used in the given context. - - - - - - Element 'ram:ControlRequirementIndicator' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - Element 'ram:ContentCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - - Value of 'ram:SubjectCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LanguageID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:Purpose' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionDateTime' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:VersionID' is marked as not used in the given context. - - - - - - Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. - - Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. - - - - - - Element 'ram:ApplicationSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:BIMSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - Element 'ram:MessageStandardSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:ScenarioSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTransactionID' is marked as not used in the given context. - - - - - - Element 'ram:SubsetSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:TestIndicator' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. - - - - - - Element 'ram:SellerTradeParty' must occur exactly 1 times. - - Element 'ram:BuyerTradeParty' must occur exactly 1 times. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - Element 'ram:BuyerAgentTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:BuyerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:BuyerTaxRepresentativeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:OrderResponseReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PriceListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ProductEndUserTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseConditionsReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:Reference' is marked as not used in the given context. - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:SalesAgentTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SellerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 2 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedProcuringProject' is marked as not used in the given context. - - - - - - Element 'ram:SupplyInstructionReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DescriptionBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:EarliestOccurrenceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LatestOccurrenceDateTime' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:OccurrenceLogisticsLocation' is marked as not used in the given context. - - - - - - Element 'ram:OccurrenceSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PreviousDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ReceivingAdviceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PaymentReference' may occur at maximum 1 times. - - Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. - - Element 'ram:SpecifiedTradeSettlementPaymentMeans' may occur at maximum 1 times. - - Element 'ram:ApplicableTradeTax' must occur at least 1 times. - - Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. - - Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. - - Element 'ram:InvoiceReferencedDocument' may occur at maximum 1 times. - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:BasisAmount' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:CreditReason' is marked as not used in the given context. - - - - - - Element 'ram:CreditReasonCode' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceIssuerID' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceType' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:DuePayableAmount' is marked as not used in the given context. - - - - - - Element 'ram:FactoringAgreementReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:FactoringListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:InvoiceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:InvoicerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LetterOfCreditReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:NextInvoiceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PayerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PaymentApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Element 'ram:PaymentCurrencyCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ProFormaInvoiceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedAdvancePayment' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - Element 'ram:ActualAmount' must occur exactly 1 times. - - Element 'ram:CategoryTradeTax' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:Description' may occur at maximum 1 times. - - Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. - - - - - - Element 'ram:ApplicableTradePaymentDiscountTerms' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradePaymentPenaltyTerms' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:FromEventCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstructionTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:PartialPaymentAmount' is marked as not used in the given context. - - - - - - Element 'ram:PartialPaymentPercent' is marked as not used in the given context. - - - - - - Element 'ram:PayeeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PaymentMeansID' is marked as not used in the given context. - - - - - - Element 'ram:SettlementPeriodMeasure' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. - - Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. - - Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. - - Element 'ram:TaxTotalAmount' may occur at maximum 2 times. - - Element 'ram:GrandTotalAmount' must occur exactly 1 times. - - Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. - - Element 'ram:DuePayableAmount' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:ProductValueExcludingTobaccoTaxInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:RetailValueExcludingTaxInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:RoundingAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - Value of '@currencyID' is not allowed. - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalDepositFeeInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalDiscountAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - Element 'ram:ApplicableTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - Element 'ram:GuaranteeMethodCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:PayeeSpecifiedCreditorFinancialInstitution' is marked as not used in the given context. - - - - - - Element 'ram:IBANID' must occur exactly 1 times. - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ProprietaryID' is marked as not used in the given context. - - - - - - Element 'ram:PayerSpecifiedDebtorFinancialInstitution' is marked as not used in the given context. - - - - - - Element 'ram:PaymentChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:PaymentMethodCode' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:TaxApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UltimatePayeeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. - - Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. - - Element 'ram:SpecifiedLineTradeDelivery' must occur exactly 1 times. - - - - - - Element 'ram:LineID' must occur exactly 1 times. - - Element 'ram:IncludedNote' may occur at maximum 1 times. - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - Element 'ram:ContentCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - Element 'ram:SubjectCode' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LineStatusCode' is marked as not used in the given context. - - - - - - Element 'ram:LineStatusReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:ParentLineID' is marked as not used in the given context. - - - - - - Element 'ram:DescriptionCode' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSubordinateTradeLineItem' is marked as not used in the given context. - - - - - - Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - Element 'ram:BuyerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:BuyerReference' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ContractReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ChargeAmount' must occur exactly 1 times. - - Element 'ram:AppliedTradeAllowanceCharge' may occur at maximum 1 times. - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:CalculationPercent' is marked as not used in the given context. - - - - - - Element 'ram:CategoryTradeTax' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Reason' is marked as not used in the given context. - - - - - - Element 'ram:ReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:ChangeReason' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:DeliveryTradeLocation' is marked as not used in the given context. - - - - - - Element 'ram:IncludedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:MaximumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:MinimumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:OrderUnitConversionFactorNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TradeComparisonReferencePrice' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ValiditySpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSpecifiedMarketplace' is marked as not used in the given context. - - - - - - Element 'ram:ItemBuyerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ItemSellerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ChargeAmount' must occur exactly 1 times. - - - - - - Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:ChangeReason' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:DeliveryTradeLocation' is marked as not used in the given context. - - - - - - Element 'ram:IncludedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:MaximumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:MinimumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:OrderUnitConversionFactorNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TradeComparisonReferencePrice' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ValiditySpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:BilledQuantity' must occur exactly 1 times. - - - - - - Element 'ram:ActualDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Attribute '@unitCode' is required in this context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:ChargeFreeQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DespatchAdviceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DespatchedQuantity' is marked as not used in the given context. - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSupplyChainPackaging' is marked as not used in the given context. - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:PackageQuantity' is marked as not used in the given context. - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PerPackageUnitQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ProductUnitQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ReceivedQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ReceivingAdviceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - Element 'ram:RequestedDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:RequestedQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ShipToTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDeliveryAdjustment' is marked as not used in the given context. - - - - - - Element 'ram:TheoreticalWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradeTax' must occur exactly 1 times. - - Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:DiscountIndicator' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:PaymentReference' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:CalculationPercent' is marked as not used in the given context. - - - - - - Element 'ram:CategoryTradeTax' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradePaymentTerms' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:ChargeTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:GrandTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:ProductWeightLossInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:TaxTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:TotalAdjustmentAmount' is marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - Element 'ram:AdditionalReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableMaterialGoodsCharacteristic' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableProductCharacteristic' is marked as not used in the given context. - - - - - - Element 'ram:AreaDensityMeasure' is marked as not used in the given context. - - - - - - Element 'ram:BrandName' is marked as not used in the given context. - - - - - - Element 'ram:BrandOwnerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:BuyerAssignedID' is marked as not used in the given context. - - - - - - Element 'ram:CertificationEvidenceReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ColourCode' is marked as not used in the given context. - - - - - - Element 'ram:ColourDescription' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DesignatedProductClassification' is marked as not used in the given context. - - - - - - Element 'ram:Designation' is marked as not used in the given context. - - - - - - Element 'ram:DrainedNetWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:EndItemName' is marked as not used in the given context. - - - - - - Element 'ram:EndItemTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:FormattedCancellationAnnouncedLaunchDateTime' is marked as not used in the given context. - - - - - - Element 'ram:FormattedLatestProductDataChangeDateTime' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:IncludedReferencedProduct' is marked as not used in the given context. - - - - - - Element 'ram:IndividualTradeProductInstance' is marked as not used in the given context. - - - - - - Element 'ram:InformationNote' is marked as not used in the given context. - - - - - - Element 'ram:InspectionReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:LegalRightsOwnerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LinearSpatialDimension' is marked as not used in the given context. - - - - - - Element 'ram:MSDSReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ManufacturerAssignedID' is marked as not used in the given context. - - - - - - Element 'ram:ManufacturerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:MaximumLinearSpatialDimension' is marked as not used in the given context. - - - - - - Element 'ram:MinimumLinearSpatialDimension' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:OriginTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:PresentationSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:ProductGroupID' is marked as not used in the given context. - - - - - - Element 'ram:SellerAssignedID' is marked as not used in the given context. - - - - - - Element 'ram:SubBrandName' is marked as not used in the given context. - - - - - - Element 'ram:TradeName' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UseDescription' is marked as not used in the given context. - - - - - - Element 'ram:VariableMeasureIndicator' is marked as not used in the given context. - - - - - - Element 'rsm:ValuationBreakdownStatement' is marked as not used in the given context. - - - diff --git a/src/zugferd2/Schema/BASIC/_XSLT_BASIC/FACTUR-X_1.0.07_BASIC.xslt b/src/zugferd2/Schema/BASIC/_XSLT_BASIC/FACTUR-X_1.0.07_BASIC.xslt new file mode 100644 index 00000000..85ee2cbe --- /dev/null +++ b/src/zugferd2/Schema/BASIC/_XSLT_BASIC/FACTUR-X_1.0.07_BASIC.xslt @@ -0,0 +1,11762 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + *: + + [namespace-uri()=' + + '] + + + + [ + + ] + + + + / + + @ + + + @*[local-name()=' + + ' and namespace-uri()=' + + '] + + + + + + + + + / + + + [ + + ] + + + + /@ + + + + + + + + / + + + [ + + ] + + + + /@ + + + + + + + + + + + + + + + + + + + + + + + + . + + + + +U + + U + + + + U. + + n + + + + U. + + _ + + _ + + + + + + + + +   +   +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Schema for Factur-X; 1.0.07; EN16931-COMPLIANT-BASIC + + + + + + + + + + + + + + + + + + [BR-45]-Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). + + + + + + + + + + + + + + [BR-46]-Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). + + + + + + + + + + + + + + [BR-47]-Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). + + + + + + + + + + + + + + [BR-48]-Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. + + + + + + + + + + + + + + [BR-CO-03]-Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. + + + + + + + + + + + + + + [BR-CO-17]-VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. + + + + + + + + + + + + + + [BR-DEC-19]-The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. + + + + + + + + + + + + + + [BR-DEC-20]-The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amount (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Zero rated". + + + + + + + + + + + + + + [BR-Z-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). + + + + + + + + + + + + + + [BR-Z-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-S-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + [BR-S-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "Standard rated", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "Standard rated" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-29]-If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). + + + + + + + + + + + + + + [BR-CO-19]-If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-31]-Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). + + + + + + + + + + + + + + [BR-32]-Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). + + + + + + + + + + + + + + [BR-33]-Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). + + + + + + + + + + + + + + [BR-CO-05]-Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. + + + + + + + + + + + + + + [BR-CO-21]-Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. + + + + + + + + + + + + + + [BR-DEC-01]-The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. + + + + + + + + + + + + + + [BR-DEC-02]-The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-36]-Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). + + + + + + + + + + + + + + [BR-37]-Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). + + + + + + + + + + + + + + [BR-38]-Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). + + + + + + + + + + + + + + [BR-CO-06]-Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. + + + + + + + + + + + + + + [BR-CO-22]-Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. + + + + + + + + + + + + + + [BR-DEC-05]-The allowed maximum number of decimals for the Document level charge amount (BT-99) is 2. + + + + + + + + + + + + + + [BR-DEC-06]-The allowed maximum number of decimals for the Document level charge base amount (BT-100) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-54]-Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-21]-Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). + + + + + + + + + + + + + + [BR-22]-Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). + + + + + + + + + + + + + + [BR-23]-An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). + + + + + + + + + + + + + + [BR-24]-Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). + + + + + + + + + + + + + + [BR-25]-Each Invoice line (BG-25) shall contain the Item name (BT-153). + + + + + + + + + + + + + + [BR-26]-Each Invoice line (BG-25) shall contain the Item net price (BT-146). + + + + + + + + + + + + + + [BR-27]-The Item net price (BT-146) shall NOT be negative. + + + + + + + + + + + + + + [BR-28]-The Item gross price (BT-148) shall NOT be negative. + + + + + + + + + + + + + + [BR-64]-The Item standard identifier (BT-157) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-65]-The Item classification identifier (BT-158) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-CO-04]-Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). + + + + + + + + + + + + + + [BR-DEC-23]-The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-17]-The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-18]-The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-19]-The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-20]-The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-56]-Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-26]-In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-30]-If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). + + + + + + + + + + + + + + [BR-CO-20]-If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-42]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-41]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). + + + + + + + + + + + + + + [BR-CO-07]-Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. + + + + + + + + + + + + + + [BR-CO-23]-Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. + + + + + + + + + + + + + + [BR-DEC-24]-The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. + + + + + + + + + + + + + + [BR-DEC-25]-The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-43]-Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). + + + + + + + + + + + + + + [BR-44]-Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). + + + + + + + + + + + + + + [BR-CO-08]-Invoice line charge reason code (BT-145) and Invoice line charge reason (BT-144) shall indicate the same type of charge reason. + + + + + + + + + + + + + + [BR-CO-24]-Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. + + + + + + + + + + + + + + [BR-DEC-27]-The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. + + + + + + + + + + + + + + [BR-DEC-28]-The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-09]-The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-66]-Each Specified Trade Allowance Charge (BG-20)(BG-21) shall contain a Charge Indicator. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + + + + + + + + + + + + + [BR-AE-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-E-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-G-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-IC-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AF-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AG-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-O-06]-A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-S-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-Z-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + + + + + + + + + + + + + [BR-AE-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-E-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-G-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-IC-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AF-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AG-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-O-07]-A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-S-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-04]-An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-Z-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-10]-Sum of Invoice line net amount (BT-106) = Σ Invoice line net amount (BT-131). + + + + + + + + + + + + + + [BR-12]-An Invoice shall have the Sum of Invoice line net amount (BT-106). + + + + + + + + + + + + + + [BR-13]-An Invoice shall have the Invoice total amount without VAT (BT-109). + + + + + + + + + + + + + + [BR-14]-An Invoice shall have the Invoice total amount with VAT (BT-112). + + + + + + + + + + + + + + [BR-15]-An Invoice shall have the Amount due for payment (BT-115). + + + + + + + + + + + + + + [BR-CO-11]-Sum of allowances on document level (BT-107) = Σ Document level allowance amount (BT-92). + + + + + + + + + + + + + + [BR-CO-12]-Sum of charges on document level (BT-108) = Σ Document level charge amount (BT-99). + + + + + + + + + + + + + + [BR-CO-13]-Invoice total amount without VAT (BT-109) = Σ Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). + + + + + + + + + + + + + + [BR-CO-15]-Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). + + + + + + + + + + + + + + [BR-CO-16]-Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). + + + + + + + + + + + + + + [BR-DEC-09]-The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. + + + + + + + + + + + + + + [BR-DEC-10]-The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. + + + + + + + + + + + + + + [BR-DEC-11]-The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. + + + + + + + + + + + + + + [BR-DEC-12]-The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. + + + + + + + + + + + + + + [BR-DEC-13]-The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. + + + + + + + + + + + + + + [BR-DEC-14]-The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. + + + + + + + + + + + + + + [BR-DEC-15]-The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. + + + + + + + + + + + + + + [BR-DEC-16]-The allowed maximum number of decimals for the Paid amount (BT-113) is 2. + + + + + + + + + + + + + + [BR-DEC-17]-The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. + + + + + + + + + + + + + + [BR-DEC-18]-The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. + + + + + + + + + + + + + + [BR-53]-If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-14]-Invoice total VAT amount (BT-110) = Σ VAT category tax amount (BT-117). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-49]-A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). + + + + + + + + + + + + + + [BR-CO-27]-Either the IBAN or a Proprietary ID (BT-84) shall be used. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-50]-A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. + + + + + + + + + + + + + + [BR-61]-If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-18]-An Invoice shall at least have one VAT breakdown group (BG-23). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Reverse charge". + + + + + + + + + + + + + + [BR-AE-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" shall be 0 (zero). + + + + + + + + + + + + + + [BR-AE-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Exempt from VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Exempt from VAT". + + + + + + + + + + + + + + [BR-E-09]-The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). + + + + + + + + + + + + + + [BR-E-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Export outside the EU". + + + + + + + + + + + + + + [BR-G-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" shall be 0 (zero). + + + + + + + + + + + + + + [BR-G-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Intra-community supply". + + + + + + + + + + + + + + [BR-IC-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" shall be 0 (zero). + + + + + + + + + + + + + + [BR-IC-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). + + + + + + + + + + + + + + [BR-IC-11]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. + + + + + + + + + + + + + + [BR-IC-12]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IGIC", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IGIC" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AF-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AF-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IPSI", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IPSI" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AG-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AG-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is " Not subject to VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Not subject to VAT". + + + + + + + + + + + + + + [BR-O-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Not subject to VAT" shall be 0 (zero). + + + + + + + + + + + + + + [BR-O-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). + + + + + + + + + + + + + + [BR-O-11]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). + + + + + + + + + + + + + + [BR-O-12]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is not "Not subject to VAT". + + + + + + + + + + + + + + [BR-O-13]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". + + + + + + + + + + + + + + [BR-O-14]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + + + + + + + + + + + + + [BR-AE-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-E-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-G-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-IC-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AF-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be greater than 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AG-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-46). + + + + + + + + + + + + + + [BR-O-05]-An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-S-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-02]-An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-Z-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-16]-An Invoice shall have at least one Invoice line (BG-25). + + + + + + + + + + + + + + [BR-CO-25]-In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. + + + + + + + + + + + + + + [BR-01]-An Invoice shall have a Specification identifier (BT-24). + + + + + + + + + + + + + + [BR-02]-An Invoice shall have an Invoice number (BT-1). + + + + + + + + + + + + + + [BR-03]-An Invoice shall have an Invoice issue date (BT-2). + + + + + + + + + + + + + + [BR-04]-An Invoice shall have an Invoice type code (BT-3). + + + + + + + + + + + + + + [BR-05]-An Invoice shall have an Invoice currency code (BT-5). + + + + + + + + + + + + + + [BR-06]-An Invoice shall contain the Seller name (BT-27). + + + + + + + + + + + + + + [BR-07]-An Invoice shall contain the Buyer name (BT-44). + + + + + + + + + + + + + + [BR-08]-An Invoice shall contain the Seller postal address (BG-5). + + + + + + + + + + + + + + [BR-09]-The Seller postal address (BG-5) shall contain a Seller country code (BT-40). + + + + + + + + + + + + + + [BR-10]-An Invoice shall contain the Buyer postal address (BG-8). + + + + + + + + + + + + + + [BR-11]-The Buyer postal address shall contain a Buyer country code (BT-55). + + + + + + + + + + + + + + [BR-62]-The Seller electronic address (BT-34) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-63]-The Buyer electronic address (BT-49) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-S-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Standard rated" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". + + + + + + + + + + + + + + [BR-Z-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Zero rated" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". + + + + + + + + + + + + + + [BR-E-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Exempt from VAT” shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". + + + + + + + + + + + + + + [BR-AE-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Reverse charge" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". + + + + + + + + + + + + + + [BR-IC-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Intra-community supply" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". + + + + + + + + + + + + + + [BR-G-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Export outside the EU" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". + + + + + + + + + + + + + + [BR-O-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Not subject to VAT" shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". + + + + + + + + + + + + + + [BR-AF-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IGIC" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". + + + + + + + + + + + + + + [BR-AG-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IPSI" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". + + + + + + + + + + + + + + [BR-B-01]-An Invoice where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment” shall be a domestic Italian invoice. + + + + + + + + + + + + + + [BR-B-02]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment" shall not contain an invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated”. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Content' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SubjectCode' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:SubjectCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SellerTradeParty' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:BuyerTradeParty' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TradingBusinessName' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:GlobalID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="VA"]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="FC"]' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ not(ram:ID/@schemeID="VA") and not(ram:ID/@schemeID="FC")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-57]-Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:OccurrenceDateTime' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:PaymentReference' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ApplicableTradeTax' must occur at least 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:BasisAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:DueDateTypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:InvoiceCurrencyCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-55]-Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TradingBusinessName' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:InvoiceCurrencyCode]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:TaxCurrencyCode]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GrandTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:DuePayableAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[ not(@currencyID=../../ram:InvoiceCurrencyCode) and not(@currencyID=../../ram:TaxCurrencyCode)]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@currencyID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@currencyID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:PayeePartyCreditorFinancialAccount' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IBANID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TaxCurrencyCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AssociatedDocumentLineDocument' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedLineTradeDelivery' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:IncludedNote' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Content' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SubjectCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element variant 'ram:AppliedTradeAllowanceCharge[ram:ChargeIndicator/udt:Indicator="false"]' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:AppliedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculationPercent' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Reason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BilledQuantity' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ApplicableTradeTax' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculationPercent' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculationPercent' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + diff --git a/src/zugferd2/Schema/EN16931/Schematron/FACTUR-X_EN16931_codedb.xml b/src/zugferd2/Schema/BASIC/_XSLT_BASIC/FACTUR-X_1.0.07_BASIC_codedb.xml similarity index 70% rename from src/zugferd2/Schema/EN16931/Schematron/FACTUR-X_EN16931_codedb.xml rename to src/zugferd2/Schema/BASIC/_XSLT_BASIC/FACTUR-X_1.0.07_BASIC_codedb.xml index 4ffb1f3d..ce1fdffe 100644 --- a/src/zugferd2/Schema/EN16931/Schematron/FACTUR-X_EN16931_codedb.xml +++ b/src/zugferd2/Schema/BASIC/_XSLT_BASIC/FACTUR-X_1.0.07_BASIC_codedb.xml @@ -1,16 +1,23 @@ + + + + + + + @@ -18,8 +25,10 @@ + + @@ -37,20 +46,24 @@ + + + + - + - + @@ -328,6 +341,15 @@ + + + + + + + + + @@ -357,7 +379,16 @@ + + + + + + + + + @@ -435,7 +466,7 @@ - + @@ -644,3789 +675,2404 @@ + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + - - - - - - - + + + + - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - + + + + + + + + + + - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -4635,8 +3281,25 @@ + + + + + + + + + + + + + + + + + - + @@ -4845,147 +3508,1094 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -5115,7 +4725,7 @@ - + @@ -5166,7 +4776,7 @@ - + diff --git a/src/zugferd2/Schema/EN16931/FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd b/src/zugferd2/Schema/EN16931/FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd deleted file mode 100644 index e024061a..00000000 --- a/src/zugferd2/Schema/EN16931/FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd +++ /dev/null @@ -1,1745 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931.sch b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931.sch new file mode 100644 index 00000000..791de405 --- /dev/null +++ b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931.sch @@ -0,0 +1,2905 @@ + + + Schema for Factur-X; 1.0.07; EN16931-COMPLIANT (FULLY) + + + + + + + + [BR-52]-Each Additional supporting document (BG-24) shall contain a Supporting document reference (BT-122). + + + + + + [BR-45]-Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). + + [BR-46]-Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). + + [BR-47]-Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). + + [BR-48]-Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. + + [BR-CO-03]-Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. + + [BR-CO-17]-VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. + + [BR-DEC-19]-The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. + + [BR-DEC-20]-The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. + + + + + + [BR-Z-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amount (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Zero rated". + + [BR-Z-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). + + [BR-Z-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-S-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + [BR-S-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + [BR-S-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "Standard rated", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "Standard rated" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + + + + + [BR-29]-If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). + + [BR-CO-19]-If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. + + + + + + [BR-31]-Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). + + [BR-32]-Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). + + [BR-33]-Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). + + [BR-CO-05]-Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. + + [BR-CO-21]-Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. + + [BR-DEC-01]-The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. + + [BR-DEC-02]-The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. + + + + + + [BR-36]-Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). + + [BR-37]-Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). + + [BR-38]-Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). + + [BR-CO-06]-Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. + + [BR-CO-22]-Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. + + [BR-DEC-05]-The allowed maximum number of decimals for the Document level charge amount (BT-99) is 2. + + [BR-DEC-06]-The allowed maximum number of decimals for the Document level charge base amount (BT-100) is 2. + + + + + + [BR-54]-Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). + + + + + + [BR-51]-In accordance with card payments security standards an invoice should never include a full card primary account number (BT-87). At the moment PCI Security Standards Council has defined that the first 6 digits and last 4 digits are the maximum number of digits to be shown. + + + + + + [BR-21]-Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). + + [BR-22]-Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). + + [BR-23]-An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). + + [BR-24]-Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). + + [BR-25]-Each Invoice line (BG-25) shall contain the Item name (BT-153). + + [BR-26]-Each Invoice line (BG-25) shall contain the Item net price (BT-146). + + [BR-27]-The Item net price (BT-146) shall NOT be negative. + + [BR-28]-The Item gross price (BT-148) shall NOT be negative. + + [BR-64]-The Item standard identifier (BT-157) shall have a Scheme identifier. + + [BR-65]-The Item classification identifier (BT-158) shall have a Scheme identifier. + + [BR-CO-04]-Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). + + [BR-DEC-23]-The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. + + + + + + [BR-17]-The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). + + + + + + [BR-18]-The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-19]-The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-20]-The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-56]-Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). + + + + + + [BR-CO-26]-In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. + + + + + + [BR-30]-If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). + + [BR-CO-20]-If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. + + + + + + [BR-42]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). + + + + + + [BR-41]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). + + [BR-CO-07]-Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. + + [BR-CO-23]-Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. + + [BR-DEC-24]-The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. + + [BR-DEC-25]-The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. + + + + + + [BR-43]-Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). + + [BR-44]-Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). + + [BR-CO-08]-Invoice line charge reason code (BT-145) and Invoice line charge reason (BT-144) shall indicate the same type of charge reason. + + [BR-CO-24]-Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. + + [BR-DEC-27]-The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. + + [BR-DEC-28]-The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. + + + + + + [BR-CO-09]-The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. + + + + + + [BR-66]-Each Specified Trade Allowance Charge (BG-20)(BG-21) shall contain a Charge Indicator. + + + + + + [BR-AE-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + [BR-AE-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-E-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-E-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-G-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + [BR-G-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-IC-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + [BR-IC-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-AF-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AF-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + [BR-AG-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AG-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + [BR-O-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + [BR-O-06]-A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). + + + + + + [BR-S-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-S-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. + + + + + + [BR-Z-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-Z-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-AE-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + [BR-AE-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-E-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-E-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-G-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + [BR-G-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-IC-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + [BR-IC-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-AF-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AF-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + [BR-AG-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AG-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + [BR-O-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + [BR-O-07]-A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). + + + + + + [BR-S-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-S-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. + + + + + + [BR-Z-04]-An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-Z-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-CO-10]-Sum of Invoice line net amount (BT-106) = Σ Invoice line net amount (BT-131). + + [BR-12]-An Invoice shall have the Sum of Invoice line net amount (BT-106). + + [BR-13]-An Invoice shall have the Invoice total amount without VAT (BT-109). + + [BR-14]-An Invoice shall have the Invoice total amount with VAT (BT-112). + + [BR-15]-An Invoice shall have the Amount due for payment (BT-115). + + [BR-CO-11]-Sum of allowances on document level (BT-107) = Σ Document level allowance amount (BT-92). + + [BR-CO-12]-Sum of charges on document level (BT-108) = Σ Document level charge amount (BT-99). + + [BR-CO-13]-Invoice total amount without VAT (BT-109) = Σ Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). + + [BR-CO-15]-Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). + + [BR-CO-16]-Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). + + [BR-DEC-09]-The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. + + [BR-DEC-10]-The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. + + [BR-DEC-11]-The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. + + [BR-DEC-12]-The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. + + [BR-DEC-13]-The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. + + [BR-DEC-14]-The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. + + [BR-DEC-15]-The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. + + [BR-DEC-16]-The allowed maximum number of decimals for the Paid amount (BT-113) is 2. + + [BR-DEC-17]-The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. + + [BR-DEC-18]-The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. + + [BR-53]-If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. + + + + + + [BR-CO-14]-Invoice total VAT amount (BT-110) = Σ VAT category tax amount (BT-117). + + + + + + [BR-49]-A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). + + [BR-CO-27]-Either the IBAN or a Proprietary ID (BT-84) shall be used. + + + + + + [BR-50]-A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. + + [BR-61]-If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. + + + + + + [BR-CO-18]-An Invoice shall at least have one VAT breakdown group (BG-23). + + + + + + [BR-AE-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Reverse charge". + + [BR-AE-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" shall be 0 (zero). + + [BR-AE-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). + + + + + + [BR-E-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Exempt from VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Exempt from VAT". + + [BR-E-09]-The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). + + [BR-E-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). + + + + + + [BR-G-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Export outside the EU". + + [BR-G-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" shall be 0 (zero). + + [BR-G-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). + + + + + + [BR-IC-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Intra-community supply". + + [BR-IC-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" shall be 0 (zero). + + [BR-IC-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). + + [BR-IC-11]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. + + [BR-IC-12]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. + + + + + + [BR-AF-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IGIC", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IGIC" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + [BR-AF-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + [BR-AF-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-AG-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IPSI", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IPSI" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + [BR-AG-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + [BR-AG-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-O-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is " Not subject to VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Not subject to VAT". + + [BR-O-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Not subject to VAT" shall be 0 (zero). + + [BR-O-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). + + [BR-O-11]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). + + [BR-O-12]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is not "Not subject to VAT". + + [BR-O-13]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". + + [BR-O-14]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". + + + + + + [BR-AE-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + [BR-AE-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-E-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-E-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-G-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + [BR-G-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-IC-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + [BR-IC-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-AF-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AF-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be greater than 0 (zero). + + + + + + [BR-AG-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AG-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. + + + + + + [BR-O-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-46). + + [BR-O-05]-An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). + + + + + + [BR-S-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-S-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. + + + + + + [BR-Z-02]-An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-Z-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-16]-An Invoice shall have at least one Invoice line (BG-25). + + [BR-CO-25]-In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. + + [BR-01]-An Invoice shall have a Specification identifier (BT-24). + + [BR-02]-An Invoice shall have an Invoice number (BT-1). + + [BR-03]-An Invoice shall have an Invoice issue date (BT-2). + + [BR-04]-An Invoice shall have an Invoice type code (BT-3). + + [BR-05]-An Invoice shall have an Invoice currency code (BT-5). + + [BR-06]-An Invoice shall contain the Seller name (BT-27). + + [BR-07]-An Invoice shall contain the Buyer name (BT-44). + + [BR-08]-An Invoice shall contain the Seller postal address (BG-5). + + [BR-09]-The Seller postal address (BG-5) shall contain a Seller country code (BT-40). + + [BR-10]-An Invoice shall contain the Buyer postal address (BG-8). + + [BR-11]-The Buyer postal address shall contain a Buyer country code (BT-55). + + [BR-62]-The Seller electronic address (BT-34) shall have a Scheme identifier. + + [BR-63]-The Buyer electronic address (BT-49) shall have a Scheme identifier. + + [BR-S-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Standard rated" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". + + [BR-Z-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Zero rated" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". + + [BR-E-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Exempt from VAT” shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". + + [BR-AE-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Reverse charge" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". + + [BR-IC-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Intra-community supply" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". + + [BR-G-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Export outside the EU" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". + + [BR-O-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Not subject to VAT" shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". + + [BR-AF-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IGIC" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". + + [BR-AG-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IPSI" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". + + [BR-B-01]-An Invoice where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment” shall be a domestic Italian invoice. + + [BR-B-02]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment" shall not contain an invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated”. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Content' must occur exactly 1 times. + + Element 'ram:SubjectCode' may occur at maximum 1 times. + + + + + + + Value of 'ram:SubjectCode' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. + + Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. + + + + + + Element 'ram:SellerTradeParty' must occur exactly 1 times. + + Element 'ram:BuyerTradeParty' must occur exactly 1 times. + + + + + + Element variant 'ram:AdditionalReferencedDocument[ not(ram:TypeCode="916") and not(ram:TypeCode="50") and not(ram:TypeCode="130")]' is marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:Name' may occur at maximum 1 times. + + Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. + + + + + + Attribute '@mimeCode' is required in this context. + + Attribute '@filename' is required in this context. + + + + + + + Value of '@mimeCode' is not allowed. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:GlobalID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:DefinedTradeContact' may occur at maximum 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. + + + + + + Element 'ram:DefinedTradeContact' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Element 'ram:GlobalID' is marked as not used in the given context. + + + + + + Element 'ram:ID' is marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:Description' may occur at maximum 1 times. + + Element 'ram:DefinedTradeContact' may occur at maximum 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="VA"]' may occur at maximum 1 times. + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="FC"]' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ not(ram:ID/@schemeID="VA") and not(ram:ID/@schemeID="FC")]' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + [BR-57]-Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). + + + + + + Element 'ram:OccurrenceDateTime' must occur exactly 1 times. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + Element 'ram:DefinedTradeContact' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + Element 'ram:PaymentReference' may occur at maximum 1 times. + + Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. + + Element 'ram:ApplicableTradeTax' must occur at least 1 times. + + Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. + + Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. + + Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:BasisAmount' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + Value of 'ram:DueDateTypeCode' is not allowed. + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + Value of 'ram:InvoiceCurrencyCode' is not allowed. + + + + + + [BR-55]-Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:GlobalID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + + + + + Element 'ram:DefinedTradeContact' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:TradingBusinessName' is marked as not used in the given context. + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. + + Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. + + Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:InvoiceCurrencyCode]' may occur at maximum 1 times. + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:TaxCurrencyCode]' may occur at maximum 1 times. + + Element 'ram:RoundingAmount' may occur at maximum 1 times. + + Element 'ram:GrandTotalAmount' must occur exactly 1 times. + + Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. + + Element 'ram:DuePayableAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element variant 'ram:TaxTotalAmount[ not(@currencyID=../../ram:InvoiceCurrencyCode) and not(@currencyID=../../ram:TaxCurrencyCode)]' is marked as not used in the given context. + + + + + + + Value of '@currencyID' is not allowed. + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + Value of '@currencyID' is not allowed. + + + + + + Attribute '@currencyID' is required in this context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:Information' may occur at maximum 1 times. + + Element 'ram:PayeePartyCreditorFinancialAccount' may occur at maximum 1 times. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:BICID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:IBANID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + Value of 'ram:TaxCurrencyCode' is not allowed. + + + + + + Element 'ram:AssociatedDocumentLineDocument' must occur exactly 1 times. + + Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. + + Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. + + Element 'ram:SpecifiedLineTradeDelivery' must occur exactly 1 times. + + + + + + Element 'ram:LineID' must occur exactly 1 times. + + Element 'ram:IncludedNote' may occur at maximum 1 times. + + + + + + Element 'ram:Content' must occur exactly 1 times. + + + + + + Element 'ram:SubjectCode' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + Element variant 'ram:AppliedTradeAllowanceCharge[ram:ChargeIndicator/udt:Indicator="false"]' may occur at maximum 1 times. + + + + + + Element variant 'ram:AppliedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculationPercent' is marked as not used in the given context. + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + Element 'ram:Reason' is marked as not used in the given context. + + + + + + Element 'ram:ReasonCode' is marked as not used in the given context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + + + + + Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:BilledQuantity' must occur exactly 1 times. + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Element 'ram:ApplicableTradeTax' must occur exactly 1 times. + + Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. + + Element 'ram:AdditionalReferencedDocument' may occur at maximum 1 times. + + Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + Element 'ram:Description' must occur exactly 1 times. + + Element 'ram:Value' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute '@listID' is required in this context. + + + + + + + Value of '@listID' is not allowed. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + diff --git a/src/zugferd2/Schema/EN16931/FACTUR-X_EN16931.xsd b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931.xsd similarity index 73% rename from src/zugferd2/Schema/EN16931/FACTUR-X_EN16931.xsd rename to src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931.xsd index f6d34759..0119e606 100644 --- a/src/zugferd2/Schema/EN16931/FACTUR-X_EN16931.xsd +++ b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931.xsd @@ -6,9 +6,9 @@ xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" targetNamespace="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" elementFormDefault="qualified"> - - - + + + diff --git a/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_codedb.xml b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_codedb.xml new file mode 100644 index 00000000..d0ad2b33 --- /dev/null +++ b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_codedb.xml @@ -0,0 +1,5812 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd new file mode 100644 index 00000000..94757471 --- /dev/null +++ b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/EN16931/FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd similarity index 97% rename from src/zugferd2/Schema/EN16931/FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd rename to src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd index e1f554fc..62bcf3dd 100644 --- a/src/zugferd2/Schema/EN16931/FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd +++ b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd @@ -5,8 +5,8 @@ xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" targetNamespace="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" elementFormDefault="qualified"> - - + + @@ -77,13 +77,13 @@ - + - + @@ -220,7 +220,7 @@ - + diff --git a/src/zugferd2/Schema/EN16931/FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd similarity index 90% rename from src/zugferd2/Schema/EN16931/FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd rename to src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd index bfeb6362..15f14d7a 100644 --- a/src/zugferd2/Schema/EN16931/FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd +++ b/src/zugferd2/Schema/EN16931/Factur-X_1.0.07_EN16931_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd @@ -2,8 +2,7 @@ + elementFormDefault="qualified"> @@ -23,7 +22,7 @@ - + @@ -56,7 +55,7 @@ - + @@ -73,7 +72,7 @@ - + diff --git a/src/zugferd2/Schema/EN16931/Schematron/EN16931-CII-validation.xslt b/src/zugferd2/Schema/EN16931/Schematron/EN16931-CII-validation.xslt deleted file mode 100644 index d8d94fda..00000000 --- a/src/zugferd2/Schema/EN16931/Schematron/EN16931-CII-validation.xslt +++ /dev/null @@ -1,12300 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - - *: - - [namespace-uri()=' - - '] - - - - [ - - ] - - - - / - - @ - - - @*[local-name()=' - - ' and namespace-uri()=' - - '] - - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - / - - - [ - - ] - - - - /@ - - - - - - - - - - - - - - - - - - - - - - - - . - - - - -U - - U - - - - U. - - n - - - - U. - - _ - - _ - - - - - - - - -   -   -   - - - - - - - - - - - - - EN16931-CII-Model - EN16931-CII-Model - - - - - - - - EN16931-CII-Syntax - EN16931-CII-Syntax - - - - - - - - EN16931-Codes - EN16931-Codes - - - - - - - -EN16931 model bound to CII - - - - - - - - - - - - - - BR-52 - fatal - - - - [BR-52]-Each Additional supporting document (BG-24) shall contain a Supporting document reference (BT-122). - - - - - - - - - - - - - - - - BR-51 - fatal - - - - [BR-51]-Only the last 4 to 6 digits of the Payment card primary account number (BT-87) shall be present if Payment card information (BG-18) is provided in the Invoice. - - - - - - - - - - - - - - - - BR-50 - fatal - - - - [BR-50]-A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. - - - - - - - - - - BR-61 - fatal - - - - [BR-61]-If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. - - - - - - - - - - - - - - - - BR-57 - fatal - - - - [BR-57]-Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). - - - - - - - - - - - - - - - - BR-31 - fatal - - - - [BR-31]-Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). - - - - - - - - - - BR-32 - fatal - - - - [BR-32]-Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). - - - - - - - - - - BR-33 - fatal - - - - [BR-33]-Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). - - - - - - - - - - BR-CO-05 - fatal - - - - [BR-CO-05]-Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. - - - - - - - - - - BR-CO-21 - fatal - - - - [BR-CO-21]-Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. - - - - - - - - - - BR-DEC-01 - fatal - - - - [BR-DEC-01]-The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. - - - - - - - - - - BR-DEC-02 - fatal - - - - [BR-DEC-02]-The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. - - - - - - - - - - - - - - - - BR-36 - fatal - - - - [BR-36]-Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). - - - - - - - - - - BR-37 - fatal - - - - [BR-37]-Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). - - - - - - - - - - BR-38 - fatal - - - - [BR-38]-Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). - - - - - - - - - - BR-CO-06 - fatal - - - - [BR-CO-06]-Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. - - - - - - - - - - BR-CO-22 - fatal - - - - [BR-CO-22]-Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. - - - - - - - - - - BR-DEC-05 - fatal - - - - [BR-DEC-05]-The allowed maximum number of decimals for the Document level charge amount (BT-92) is 2. - - - - - - - - - - BR-DEC-06 - fatal - - - - [BR-DEC-06]-The allowed maximum number of decimals for the Document level charge base amount (BT-93) is 2. - - - - - - - - - - - - - - - - BR-12 - fatal - - - - [BR-12]-An Invoice shall have the Sum of Invoice line net amount (BT-106). - - - - - - - - - - BR-13 - fatal - - - - [BR-13]-An Invoice shall have the Invoice total amount without VAT (BT-109). - - - - - - - - - - BR-14 - fatal - - - - [BR-14]-An Invoice shall have the Invoice total amount with VAT (BT-112). - - - - - - - - - - BR-15 - fatal - - - - [BR-15]-An Invoice shall have the Amount due for payment (BT-115). - - - - - - - - - - BR-53 - fatal - - - - [BR-53]-If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. - - - - - - - - - - BR-CO-10 - fatal - - - - [BR-CO-10]-Sum of Invoice line net amount (BT-106) = Σ Invoice line net amount (BT-131). - - - - - - - - - - BR-CO-11 - fatal - - - - [BR-CO-11]-Sum of allowances on document level (BT-107) = Σ Document level allowance amount (BT-92). - - - - - - - - - - BR-CO-12 - fatal - - - - [BR-CO-12]-Sum of charges on document level (BT-108) = Σ Document level charge amount (BT-99). - - - - - - - - - - BR-CO-13 - fatal - - - - [BR-CO-13]-Invoice total amount without VAT (BT-109) = Σ Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). - - - - - - - - - - BR-CO-16 - fatal - - - - [BR-CO-16]-Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). - - - - - - - - - - BR-DEC-09 - fatal - - - - [BR-DEC-09]-The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. - - - - - - - - - - BR-DEC-10 - fatal - - - - [BR-DEC-10]-The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. - - - - - - - - - - BR-DEC-11 - fatal - - - - [BR-DEC-11]-The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. - - - - - - - - - - BR-DEC-12 - fatal - - - - [BR-DEC-12]-The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. - - - - - - - - - - BR-DEC-14 - fatal - - - - [BR-DEC-14]-The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. - - - - - - - - - - BR-DEC-13 - fatal - - - - [BR-DEC-13]-The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. - - - - - - - - - - BR-DEC-15 - fatal - - - - [BR-DEC-15]-The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. - - - - - - - - - - BR-DEC-16 - fatal - - - - [BR-DEC-16]-The allowed maximum number of decimals for the Paid amount (BT-113) is 2. - - - - - - - - - - BR-DEC-17 - fatal - - - - [BR-DEC-17]-The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. - - - - - - - - - - BR-DEC-18 - fatal - - - - [BR-DEC-18]-The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. - - - - - - - - - - - - - - - - BR-01 - fatal - - - - [BR-01]-An Invoice shall have a Specification identifier (BT-24). - - - - - - - - - - BR-02 - fatal - - - - [BR-02]-An Invoice shall have an Invoice number (BT-1). - - - - - - - - - - BR-03 - fatal - - - - [BR-03]-An Invoice shall have an Invoice issue date (BT-2). - - - - - - - - - - BR-04 - fatal - - - - [BR-04]-An Invoice shall have an Invoice type code (BT-3). - - - - - - - - - - BR-05 - fatal - - - - [BR-05]-An Invoice shall have an Invoice currency code (BT-5). - - - - - - - - - - BR-06 - fatal - - - - [BR-06]-An Invoice shall contain the Seller name (BT-27). - - - - - - - - - - BR-07 - fatal - - - - [BR-07]-An Invoice shall contain the Buyer name (BT-44). - - - - - - - - - - BR-08 - fatal - - - - [BR-08]-An Invoice shall contain the Seller postal address (BG-5). - - - - - - - - - - BR-09 - fatal - - - - [BR-09]-The Seller postal address (BG-5) shall contain a Seller country code (BT-40). - - - - - - - - - - BR-10 - fatal - - - - [BR-10]-An Invoice shall contain the Buyer postal address (BG-8). - - - - - - - - - - BR-11 - fatal - - - - [BR-11]-The Buyer postal address shall contain a Buyer country code (BT-55). - - - - - - - - - - BR-16 - fatal - - - - [BR-16]-An Invoice shall have at least one Invoice line (BG-25). - - - - - - - - - - BR-62 - fatal - - - - [BR-62]-The Seller electronic address (BT-34) shall have a Scheme identifier. - - - - - - - - - - BR-63 - fatal - - - - [BR-63]-The Buyer electronic address (BT-49) shall have a Scheme identifier. - - - - - - - - - - BR-CO-15 - fatal - - - - [BR-CO-15]-Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). - - - - - - - - - - BR-CO-25 - fatal - - - - [BR-CO-25]-In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. - - - - - - - - - - BR-S-01 - fatal - - - - [BR-S-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Standard rated" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". - - - - - - - - - - BR-Z-01 - fatal - - - - [BR-Z-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Zero rated" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". - - - - - - - - - - BR-E-01 - fatal - - - - [BR-E-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Exempt from VAT" shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". - - - - - - - - - - BR-AE-01 - fatal - - - - [BR-AE-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Reverse charge" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". - - - - - - - - - - BR-IC-01 - fatal - - - - [BR-IC-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Intra-community supply" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". - - - - - - - - - - BR-G-01 - fatal - - - - [BR-G-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Export outside the EU" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". - - - - - - - - - - BR-O-01 - fatal - - - - [BR-O-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Not subject to VAT" shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". - - - - - - - - - - BR-AF-01 - fatal - - - - [BR-IG-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IGIC" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". - - - - - - - - - - BR-AG-01 - fatal - - - - [BR-IP-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IPSI" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". - - - - - - - - - - BR-B-01 - fatal - - - - [BR-B-01]-An Invoice where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment” shall be a domestic Italian invoice. - - - - - - - - - - BR-B-02 - fatal - - - - [BR-B-02]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment" shall not contain an invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated”. - - - - - - - - - - - - - - - - BR-21 - fatal - - - - [BR-21]-Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). - - - - - - - - - - BR-22 - fatal - - - - [BR-22]-Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). - - - - - - - - - - BR-23 - fatal - - - - [BR-23]-An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). - - - - - - - - - - BR-24 - fatal - - - - [BR-24]-Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). - - - - - - - - - - BR-25 - fatal - - - - [BR-25]-Each Invoice line (BG-25) shall contain the Item name (BT-153). - - - - - - - - - - BR-26 - fatal - - - - [BR-26]-Each Invoice line (BG-25) shall contain the Item net price (BT-146). - - - - - - - - - - BR-27 - fatal - - - - [BR-27]-The Item net price (BT-146) shall NOT be negative. - - - - - - - - - - BR-28 - fatal - - - - [BR-28]-The Item gross price (BT-148) shall NOT be negative. - - - - - - - - - - BR-64 - fatal - - - - [BR-64]-The Item standard identifier (BT-157) shall have a Scheme identifier. - - - - - - - - - - BR-65 - fatal - - - - [BR-65]-The Item classification identifier (BT-158) shall have a Scheme identifier. - - - - - - - - - - BR-CO-04 - fatal - - - - [BR-CO-04]-Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). - - - - - - - - - - BR-CO-18 - fatal - - - - [BR-CO-18]-An Invoice shall at least have one VAT breakdown group (BG-23). - - - - - - - - - - BR-DEC-23 - fatal - - - - [BR-DEC-23]-The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. - - - - - - - - - - - - - - - - BR-41 - fatal - - - - [BR-41]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). - - - - - - - - - - BR-42 - fatal - - - - [BR-42]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). - - - - - - - - - - BR-CO-07 - fatal - - - - [BR-CO-07]-Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. - - - - - - - - - - BR-CO-23 - fatal - - - - [BR-CO-23]-Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. - - - - - - - - - - BR-DEC-24 - fatal - - - - [BR-DEC-24]-The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. - - - - - - - - - - BR-DEC-25 - fatal - - - - [BR-DEC-25]-The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. - - - - - - - - - - - - - - - - BR-43 - fatal - - - - [BR-43]-Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). - - - - - - - - - - BR-44 - fatal - - - - [BR-44]-Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). - - - - - - - - - - BR-CO-08 - fatal - - - - [BR-CO-08]-Invoice line charge reason code (BT-145) and Invoice line charge reason (BT-144) shall indicate the same type of charge reason. - - - - - - - - - - BR-CO-24 - fatal - - - - [BR-CO-24]-Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. - - - - - - - - - - BR-DEC-27 - fatal - - - - [BR-DEC-27]-The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. - - - - - - - - - - BR-DEC-28 - fatal - - - - [BR-DEC-28]-The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. - - - - - - - - - - - - - - - - BR-30 - fatal - - - - [BR-30]-If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). - - - - - - - - - - BR-CO-20 - fatal - - - - [BR-CO-20]-If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. - - - - - - - - - - - - - - - - BR-29 - fatal - - - - [BR-29]-If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). - - - - - - - - - - BR-CO-19 - fatal - - - - [BR-CO-19]-If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. - - - - - - - - - - - - - - - - BR-54 - fatal - - - - [BR-54]-Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). - - - - - - - - - - - - - - - - BR-17 - fatal - - - - [BR-17]-The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). - - - - - - - - - - - - - - - - BR-49 - fatal - - - - [BR-49]-A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). - - - - - - - - - - BR-CO-27 - fatal - - - - [BR-CO-27]- Either the IBAN or a Proprietary ID (BT-84) shall be used. - - - - - - - - - - - - - - - - BR-55 - fatal - - - - [BR-55]-Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). - - - - - - - - - - - - - - - - BR-CO-26 - fatal - - - - [BR-CO-26]-In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. - - - - - - - - - - - - - - - - BR-18 - fatal - - - - [BR-18]-The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - BR-19 - fatal - - - - [BR-19]-The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - BR-20 - fatal - - - - [BR-20]-The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). - - - - - - - - - - BR-56 - fatal - - - - [BR-56]-Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). - - - - - - - - - - - - - - - - BR-CO-14 - fatal - - - - [BR-CO-14]-Invoice total VAT amount (BT-110) = Σ VAT category tax amount (BT-117). - - - - - - - - - - - - - - - - BR-CO-09 - fatal - - - - [BR-CO-09]-The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. - - - - - - - - - - - - - - - - BR-AE-08 - fatal - - - - [BR-AE-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Reverse charge". - - - - - - - - - - BR-AE-09 - fatal - - - - [BR-AE-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" shall be 0 (zero). - - - - - - - - - - BR-AE-10 - fatal - - - - [BR-AE-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - BR-AE-03 - fatal - - - - [BR-AE-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - BR-AE-06 - fatal - - - - [BR-AE-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-AE-04 - fatal - - - - [BR-AE-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - BR-AE-07 - fatal - - - - [BR-AE-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-AE-02 - fatal - - - - [BR-AE-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - - - - - - - - - BR-AE-05 - fatal - - - - [BR-AE-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-AF-08 - fatal - - - - [BR-IG-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IGIC", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IGIC" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - BR-AF-09 - fatal - - - - [BR-IG-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - BR-AF-10 - fatal - - - - [BR-IG-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - BR-AF-02 - fatal - - - - [BR-IG-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-AF-05 - fatal - - - - [BR-IG-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be greater than 0 (zero). - - - - - - - - - - - - - - - - BR-AF-03 - fatal - - - - [BR-IG-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-AF-06 - fatal - - - - [BR-IG-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - BR-AF-04 - fatal - - - - [BR-IG-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-AF-07 - fatal - - - - [BR-IG-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - BR-AG-08 - fatal - - - - [BR-IP-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IPSI", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IPSI" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - BR-AG-09 - fatal - - - - [BR-IP-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - BR-AG-10 - fatal - - - - [BR-IP-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - BR-AG-02 - fatal - - - - [BR-IP-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-AG-05 - fatal - - - - [BR-IP-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - BR-AG-03 - fatal - - - - [BR-IP-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-AG-06 - fatal - - - - [BR-IP-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - BR-AG-04 - fatal - - - - [BR-IP-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-AG-07 - fatal - - - - [BR-IP-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - - - - - - - - - - - BR-E-08 - fatal - - - - [BR-E-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Exempt from VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Exempt from VAT". - - - - - - - - - - BR-E-09 - fatal - - - - [BR-E-09]-The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). - - - - - - - - - - BR-E-10 - fatal - - - - [BR-E-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - BR-E-03 - fatal - - - - [BR-E-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-E-06 - fatal - - - - [BR-E-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-E-04 - fatal - - - - [BR-E-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-E-07 - fatal - - - - [BR-E-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-E-02 - fatal - - - - [BR-E-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-E-05 - fatal - - - - [BR-E-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-G-08 - fatal - - - - [BR-G-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Export outside the EU". - - - - - - - - - - BR-G-09 - fatal - - - - [BR-G-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" shall be 0 (zero). - - - - - - - - - - BR-G-10 - fatal - - - - [BR-G-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). - - - - - - - - - - - - - - - - BR-G-03 - fatal - - - - [BR-G-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-G-06 - fatal - - - - [BR-G-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-G-04 - fatal - - - - [BR-G-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-G-07 - fatal - - - - [BR-G-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-G-02 - fatal - - - - [BR-G-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-G-05 - fatal - - - - [BR-G-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-IC-08 - fatal - - - - [BR-IC-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Intra-community supply". - - - - - - - - - - BR-IC-09 - fatal - - - - [BR-IC-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" shall be 0 (zero). - - - - - - - - - - BR-IC-10 - fatal - - - - [BR-IC-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). - - - - - - - - - - BR-IC-11 - fatal - - - - [BR-IC-11]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. - - - - - - - - - - BR-IC-12 - fatal - - - - [BR-IC-12]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. - - - - - - - - - - - - - - - - BR-IC-03 - fatal - - - - [BR-IC-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - BR-IC-06 - fatal - - - - [BR-IC-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-IC-04 - fatal - - - - [BR-IC-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - BR-IC-07 - fatal - - - - [BR-IC-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-IC-02 - fatal - - - - [BR-IC-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - - - - - - - - - BR-IC-05 - fatal - - - - [BR-IC-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-O-08 - fatal - - - - [BR-O-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is " Not subject to VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Not subject to VAT". - - - - - - - - - - BR-O-09 - fatal - - - - [BR-O-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Not subject to VAT" shall be 0 (zero). - - - - - - - - - - BR-O-10 - fatal - - - - [BR-O-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). - - - - - - - - - - BR-O-11 - fatal - - - - [BR-O-11]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). - - - - - - - - - - BR-O-12 - fatal - - - - [BR-O-12]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is not "Not subject to VAT". - - - - - - - - - - BR-O-13 - fatal - - - - [BR-O-13]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". - - - - - - - - - - BR-O-14 - fatal - - - - [BR-O-14]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". - - - - - - - - - - - - - - - - BR-O-03 - fatal - - - - [BR-O-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - BR-O-06 - fatal - - - - [BR-O-06]-A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). - - - - - - - - - - - - - - - - BR-O-04 - fatal - - - - [BR-O-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - BR-O-07 - fatal - - - - [BR-O-07]-A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). - - - - - - - - - - - - - - - - BR-O-02 - fatal - - - - [BR-O-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - - - - - - - - - BR-O-05 - fatal - - - - [BR-O-05]-An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). - - - - - - - - - - - - - - - - BR-S-08 - fatal - - - - [BR-S-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "Standard rated", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "Standard rated" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - - - - - - - - - BR-S-09 - fatal - - - - [BR-S-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - - - - - - - - - BR-S-10 - fatal - - - - [BR-S-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - BR-S-02 - fatal - - - - [BR-S-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-S-05 - fatal - - - - [BR-S-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. - - - - - - - - - - - - - - - - BR-S-03 - fatal - - - - [BR-S-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-S-06 - fatal - - - - [BR-S-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. - - - - - - - - - - - - - - - - BR-S-04 - fatal - - - - [BR-S-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-S-07 - fatal - - - - [BR-S-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. - - - - - - - - - - - - - - - - BR-Z-08 - fatal - - - - [BR-Z-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amount (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Zero rated". - - - - - - - - - - BR-Z-09 - fatal - - - - [BR-Z-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). - - - - - - - - - - BR-Z-10 - fatal - - - - [BR-Z-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - - - - - - - - - - - BR-Z-03 - fatal - - - - [BR-Z-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-Z-06 - fatal - - - - [BR-Z-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-Z-04 - fatal - - - - [BR-Z-04]-An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-Z-07 - fatal - - - - [BR-Z-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-Z-02 - fatal - - - - [BR-Z-02]-An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - - - - - - - - BR-Z-05 - fatal - - - - [BR-Z-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - - - - - - - - - - - BR-45 - fatal - - - - [BR-45]-Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). - - - - - - - - - - BR-46 - fatal - - - - [BR-46]-Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). - - - - - - - - - - BR-47 - fatal - - - - [BR-47]-Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). - - - - - - - - - - BR-48 - fatal - - - - [BR-48]-Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. - - - - - - - - - - BR-CO-03 - fatal - - - - [BR-CO-03]-Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. - - - - - - - - - - BR-CO-17 - fatal - - - - [BR-CO-17]-VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. - - - - - - - - - - BR-DEC-19 - fatal - - - - [BR-DEC-19]-The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. - - - - - - - - - - BR-DEC-20 - fatal - - - - [BR-DEC-20]-The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. - - - - - - - - - - - - - - - - - - - - - - - CII-SR-001 - warning - - - - [CII-SR-001] - SpecifiedTransactionID should not be present - - - - - - - - - - CII-SR-002 - warning - - - - [CII-SR-002] - TestIndicator should not be present - - - - - - - - - - CII-SR-003 - warning - - - - [CII-SR-003] - BusinessProcessSpecifiedDocumentContextParameter should exist maximum once - - - - - - - - - - CII-SR-006 - warning - - - - [CII-SR-006] - BIMSpecifiedDocumentContextParameter should not be present - - - - - - - - - - CII-SR-007 - warning - - - - [CII-SR-007] - ScenarioSpecifiedDocumentContextParameter should not be present - - - - - - - - - - CII-SR-008 - warning - - - - [CII-SR-008] - ApplicationSpecifiedDocumentContextParameter should not be present - - - - - - - - - - CII-SR-009 - fatal - - - - [CII-SR-009] - GuidelineSpecifiedDocumentContextParameter must exist exactly once - - - - - - - - - - CII-SR-010 - fatal - - - - [CII-SR-010] - ID must exist exactly once - - - - - - - - - - CII-SR-011 - warning - - - - [CII-SR-011] - SubsetSpecifiedDocumentContextParameter should not be present - - - - - - - - - - CII-SR-012 - warning - - - - [CII-SR-012] - MessageStandardSpecifiedDocumentContextParameter should not be present - - - - - - - - - - - - - - - - CII-SR-013 - warning - - - - [CII-SR-013] - Name should not be present - - - - - - - - - - CII-SR-014 - fatal - - - - [CII-SR-014] - TypeCode must exist exactly once - - - - - - - - - - CII-SR-015 - warning - - - - [CII-SR-015] - DateTime should not be present - - - - - - - - - - CII-SR-016 - warning - - - - [CII-SR-016] - CopyIndicator should not be present - - - - - - - - - - CII-SR-017 - warning - - - - [CII-SR-017] - Purpose should not be present - - - - - - - - - - CII-SR-018 - warning - - - - [CII-SR-018] - ControlRequirementIndicator should not be present - - - - - - - - - - CII-SR-019 - warning - - - - [CII-SR-019] - LanguageID should not be present - - - - - - - - - - CII-SR-020 - warning - - - - [CII-SR-020] - PurposeCode should not be present - - - - - - - - - - CII-SR-021 - warning - - - - [CII-SR-021] - RevisionDateTime should not be present - - - - - - - - - - CII-SR-022 - warning - - - - [CII-SR-022] - VersionID should not be present - - - - - - - - - - CII-SR-023 - warning - - - - [CII-SR-023] - GlobalID should not be present - - - - - - - - - - CII-SR-024 - warning - - - - [CII-SR-024] - RevisionID should not be present - - - - - - - - - - CII-SR-025 - warning - - - - [CII-SR-025] - PreviousRevisionID should not be present - - - - - - - - - - CII-SR-026 - warning - - - - [CII-SR-026] - CategoryCode should not be present - - - - - - - - - - CII-SR-027 - warning - - - - [CII-SR-027] - Subject should not be present - - - - - - - - - - CII-SR-028 - warning - - - - [CII-SR-028] - ContentCode should not be present - - - - - - - - - - CII-SR-032 - warning - - - - [CII-SR-032] - ID should not be present - - - - - - - - - - CII-SR-033 - warning - - - - [CII-SR-033] - EffectiveSpecifiedPeriod should not be present - - - - - - - - - - CII-SR-034 - warning - - - - [CII-SR-034] - IssuerTradeParty should not be present - - - - - - - - - - - - - - - - CII-SR-030 - warning - - - - [CII-SR-030] - Content should exist maximum once - - - - - - - - - - - - - - - - CII-SR-035 - warning - - - - [CII-SR-035] - DescriptionCode should not be present - - - - - - - - - - CII-SR-036 - warning - - - - [CII-SR-036] - ParentLineID should not be present - - - - - - - - - - CII-SR-037 - warning - - - - [CII-SR-037] - LineStatusCode should not be present - - - - - - - - - - CII-SR-038 - warning - - - - [CII-SR-038] - LineStatusReasonCode should not be present - - - - - - - - - - CII-SR-221 - warning - - - - [CII-SR-221] - IncludedSubordinateTradeLineItem should not be present - - - - - - - - - - - - - - - - CII-SR-039 - warning - - - - [CII-SR-039] - IncludedNote should exist maximum once - - - - - - - - - - CII-SR-040 - warning - - - - [CII-SR-040] - Content should exist maximum once - - - - - - - - - - CII-SR-041 - warning - - - - [CII-SR-041] - SubjectCode should not be present - - - - - - - - - - CII-SR-042 - warning - - - - [CII-SR-042] - ID should not be present - - - - - - - - - - CII-SR-043 - warning - - - - [CII-SR-043] - CategoryCode should not be present - - - - - - - - - - CII-SR-044 - warning - - - - [CII-SR-044] - Subject should not be present - - - - - - - - - - - - - - - - CII-SR-045 - warning - - - - [CII-SR-045] - ID should not be present - - - - - - - - - - CII-SR-046 - fatal - - - - [CII-SR-046] - schemeID must be present if GlobalID is present - - - - - - - - - - CII-SR-048 - warning - - - - [CII-SR-048] - ManufacturerAssignedID should not be present - - - - - - - - - - CII-SR-049 - warning - - - - [CII-SR-049] - TradeName should not be present - - - - - - - - - - CII-SR-050 - warning - - - - [CII-SR-050] - TypeCode should not be present - - - - - - - - - - CII-SR-051 - warning - - - - [CII-SR-051] - NetWeightMeasure should not be present - - - - - - - - - - CII-SR-052 - warning - - - - [CII-SR-052] - GrossWeightMeasure should not be present - - - - - - - - - - CII-SR-053 - warning - - - - [CII-SR-053] - ProductGroupID should not be present - - - - - - - - - - CII-SR-054 - warning - - - - [CII-SR-054] - EndItemTypeCode should not be present - - - - - - - - - - CII-SR-055 - warning - - - - [CII-SR-055] - EndItemName should not be present - - - - - - - - - - CII-SR-056 - warning - - - - [CII-SR-056] - AreaDensityMeasure should not be present - - - - - - - - - - CII-SR-057 - warning - - - - [CII-SR-057] - UseDescription should not be present - - - - - - - - - - CII-SR-058 - warning - - - - [CII-SR-058] - BrandName should not be present - - - - - - - - - - CII-SR-059 - warning - - - - [CII-SR-059] - SubBrandName should not be present - - - - - - - - - - CII-SR-060 - warning - - - - [CII-SR-060] - DrainedNetWeightMeasure should not be present - - - - - - - - - - CII-SR-061 - warning - - - - [CII-SR-061] - VariableMeasureIndicator should not be present - - - - - - - - - - CII-SR-062 - warning - - - - [CII-SR-062] - ColourCode should not be present - - - - - - - - - - CII-SR-063 - warning - - - - [CII-SR-063] - ColourDescription should not be present - - - - - - - - - - CII-SR-064 - warning - - - - [CII-SR-064] - Designation should not be present - - - - - - - - - - CII-SR-065 - warning - - - - [CII-SR-065] - FormattedCancellationAnnouncedLaunchDateTime should not be present - - - - - - - - - - CII-SR-066 - warning - - - - [CII-SR-066] - FormattedLatestProductDataChangeDateTime should not be present - - - - - - - - - - CII-SR-067 - warning - - - - [CII-SR-067] - ID should not be present - - - - - - - - - - CII-SR-068 - warning - - - - [CII-SR-068] - TypeCode should not be present - - - - - - - - - - CII-SR-070 - warning - - - - [CII-SR-070] - ValueMeasure should not be present - - - - - - - - - - CII-SR-071 - warning - - - - [CII-SR-071] - MeasurementMethodCode should not be present - - - - - - - - - - CII-SR-073 - warning - - - - [CII-SR-073] - ValueCode should not be present - - - - - - - - - - CII-SR-074 - warning - - - - [CII-SR-074] - ValueDateTime should not be present - - - - - - - - - - CII-SR-075 - warning - - - - [CII-SR-075] - ValueIndicator should not be present - - - - - - - - - - CII-SR-076 - warning - - - - [CII-SR-076] - ContentTypeCode should not be present - - - - - - - - - - CII-SR-077 - warning - - - - [CII-SR-077] - ValueSpecifiedBinaryFile should not be present - - - - - - - - - - CII-SR-078 - warning - - - - [CII-SR-078] - ApplicableProductCharacteristicCondition should not be present - - - - - - - - - - CII-SR-079 - warning - - - - [CII-SR-079] - ApplicableReferencedStandard should not be present - - - - - - - - - - CII-SR-080 - warning - - - - [CII-SR-080] - ApplicableMaterialGoodsCharacteristic should not be present - - - - - - - - - - CII-SR-081 - warning - - - - [CII-SR-081] - SystemID should not be present - - - - - - - - - - CII-SR-082 - warning - - - - [CII-SR-082] - SystemName should not be present - - - - - - - - - - CII-SR-083 - warning - - - - [CII-SR-083] - ClassName should not be present - - - - - - - - - - CII-SR-084 - warning - - - - [CII-SR-084] - SubClassCode should not be present - - - - - - - - - - CII-SR-085 - warning - - - - [CII-SR-085] - ClassProductCharacteristic should not be present - - - - - - - - - - CII-SR-086 - warning - - - - [CII-SR-086] - ApplicableReferencedStandard should not be present - - - - - - - - - - CII-SR-087 - warning - - - - [CII-SR-087] - IndividualTradeProductInstance should not be present - - - - - - - - - - CII-SR-088 - warning - - - - [CII-SR-088] - CertificationEvidenceReferenceReferencedDocument should not be present - - - - - - - - - - CII-SR-089 - warning - - - - [CII-SR-089] - InspectionReferenceReferencedDocument should not be present - - - - - - - - - - CII-SR-090 - fatal - - - - [CII-SR-090] - ID should exist maximum once. - - - - - - - - - - CII-SR-091 - warning - - - - [CII-SR-091] - Name should not be present - - - - - - - - - - CII-SR-092 - warning - - - - [CII-SR-092] - SubordinateTradeCountrySubDivision should not be present - - - - - - - - - - CII-SR-093 - warning - - - - [CII-SR-093] - LinearSpatialDimension should not be present - - - - - - - - - - CII-SR-094 - warning - - - - [CII-SR-094] - MinimumLinearSpatialDimension should not be present - - - - - - - - - - CII-SR-095 - warning - - - - [CII-SR-095] - MaximumLinearSpatialDimension should not be present - - - - - - - - - - CII-SR-096 - warning - - - - [CII-SR-096] - ManufacturerTradeParty should not be present - - - - - - - - - - CII-SR-097 - warning - - - - [CII-SR-097] - PresentationSpecifiedBinaryFile should not be present - - - - - - - - - - CII-SR-098 - warning - - - - [CII-SR-098] - MSDSReferenceReferencedDocument should not be present - - - - - - - - - - CII-SR-099 - warning - - - - [CII-SR-099] - AdditionalReferenceReferencedDocument should not be present - - - - - - - - - - CII-SR-100 - warning - - - - [CII-SR-100] - LegalRightsOwnerTradeParty should not be present - - - - - - - - - - CII-SR-101 - warning - - - - [CII-SR-101] - BrandOwnerTradeParty should not be present - - - - - - - - - - CII-SR-102 - warning - - - - [CII-SR-102] - IncludedReferencedProduct should not be present - - - - - - - - - - CII-SR-103 - warning - - - - [CII-SR-103] - InformationNote should not be present - - - - - - - - - - - - - - - - CII-SR-069 - fatal - - - - [CII-SR-069] - Description should exist maximum once. - - - - - - - - - - CII-SR-072 - fatal - - - - [CII-SR-072] - Value should exist maximum once. - - - - - - - - - - - - - - - - CII-SR-104 - warning - - - - [CII-SR-104] - BuyerReference should not be present - - - - - - - - - - CII-SR-105 - warning - - - - [CII-SR-105] - BuyerRequisitionerTradeParty should not be present - - - - - - - - - - CII-SR-106 - warning - - - - [CII-SR-106] - ApplicableTradeDeliveryTerms should not be present - - - - - - - - - - CII-SR-107 - warning - - - - [CII-SR-107] - SellerOrderReferencedDocument should not be present - - - - - - - - - - CII-SR-108 - warning - - - - [CII-SR-108] - IssuerAssignedID should not be present - - - - - - - - - - CII-SR-109 - warning - - - - [CII-SR-109] - QuotationReferencedDocument should not be present - - - - - - - - - - CII-SR-110 - warning - - - - [CII-SR-110] - ContractReferencedDocument should not be present - - - - - - - - - - CII-SR-111 - warning - - - - [CII-SR-111] - DemandForecastReferencedDocument should not be present - - - - - - - - - - CII-SR-112 - warning - - - - [CII-SR-112] - PromotionalDealReferencedDocument should not be present - - - - - - - - - - CII-SR-113 - warning - - - - [CII-SR-113] - AdditionalReferencedDocument should not be present - - - - - - - - - - CII-SR-114 - warning - - - - [CII-SR-114] - TypeCode should not be present - - - - - - - - - - CII-SR-115 - warning - - - - [CII-SR-115] - MinimumQuantity should not be present - - - - - - - - - - CII-SR-116 - warning - - - - [CII-SR-116] - MaximumQuantity should not be present - - - - - - - - - - CII-SR-117 - warning - - - - [CII-SR-117] - ChangeReason should not be present - - - - - - - - - - CII-SR-118 - warning - - - - [CII-SR-118] - OrderUnitConversionFactorNumeric should not be present - - - - - - - - - - CII-SR-439 - fatal - - - - [CII-SR-439] - ChargeAmount should exist maximum once - - - - - - - - - - CII-SR-119 - warning - - - - [CII-SR-119] - Only allowances on price a price should be present - - - - - - - - - - CII-SR-120 - warning - - - - [CII-SR-120] - ID should not be present - - - - - - - - - - CII-SR-121 - warning - - - - [CII-SR-121] - SequenceNumeric should not be present - - - - - - - - - - CII-SR-122 - warning - - - - [CII-SR-122] - CalculationPercent should not be present - - - - - - - - - - CII-SR-123 - warning - - - - [CII-SR-123] - BasisAmount should not be present - - - - - - - - - - CII-SR-124 - warning - - - - [CII-SR-124] - BasisQuantityshould not be present - - - - - - - - - - CII-SR-125 - warning - - - - [CII-SR-125] - PrepaidIndicator should not be present - - - - - - - - - - CII-SR-126 - warning - - - - [CII-SR-126] - UnitBasisAmount should not be present - - - - - - - - - - CII-SR-127 - warning - - - - [CII-SR-127] - ReasonCode should not be present - - - - - - - - - - CII-SR-128 - warning - - - - [CII-SR-128] - Reason should not be present - - - - - - - - - - CII-SR-129 - warning - - - - [CII-SR-129] - TypeCode should not be present - - - - - - - - - - CII-SR-130 - warning - - - - [CII-SR-130] - CategoryTradeTax should not be present - - - - - - - - - - CII-SR-131 - warning - - - - [CII-SR-131] - ActualTradeCurrencyExchange should not be present - - - - - - - - - - CII-SR-440 - fatal - - - - [CII-SR-440] - ActualAmount should exist maximum once - - - - - - - - - - CII-SR-445 - warning - - - - [CII-SR-445] - IncludedTradeTax should not be present - - - - - - - - - - CII-SR-132 - warning - - - - [CII-SR-132] - ValiditySpecifiedPeriod should not be present - - - - - - - - - - CII-SR-133 - warning - - - - [CII-SR-133] - DeliveryTradeLocation should not be present - - - - - - - - - - CII-SR-134 - warning - - - - [CII-SR-134] - TradeComparisonReferencePrice should not be present - - - - - - - - - - CII-SR-135 - warning - - - - [CII-SR-135] - AssociatedReferencedDocument should not be present - - - - - - - - - - CII-SR-136 - warning - - - - [CII-SR-136] - TypeCode should not be present - - - - - - - - - - CII-SR-138 - warning - - - - [CII-SR-138] - MinimumQuantity should not be present - - - - - - - - - - CII-SR-139 - warning - - - - [CII-SR-139] - MaximumQuantity should not be present - - - - - - - - - - CII-SR-140 - warning - - - - [CII-SR-140] - ChangeReason should not be present - - - - - - - - - - CII-SR-141 - warning - - - - [CII-SR-141] - OrderUnitConversionFactorNumeric should not be present - - - - - - - - - - CII-SR-142 - warning - - - - [CII-SR-142] - AppliedTradeAllowanceCharge should not be present - - - - - - - - - - CII-SR-446 - warning - - - - [CII-SR-446] - IncludedTradeTax should not be present - - - - - - - - - - CII-SR-143 - warning - - - - [CII-SR-143] - ValiditySpecifiedPeriod should not be present - - - - - - - - - - CII-SR-144 - warning - - - - [CII-SR-144] - DeliveryTradeLocation should not be present - - - - - - - - - - CII-SR-145 - warning - - - - [CII-SR-145] - TradeComparisonReferencePrice should not be present - - - - - - - - - - CII-SR-146 - warning - - - - [CII-SR-146] - AssociatedReferencedDocument should not be present - - - - - - - - - - CII-SR-441 - fatal - - - - [CII-SR-441] - ChargeAmount should exist maximum once - - - - - - - - - - CII-SR-147 - warning - - - - [CII-SR-147] - RequisitionerReferencedDocument should not be present - - - - - - - - - - CII-SR-148 - warning - - - - [CII-SR-148] - ItemSellerTradeParty should not be present - - - - - - - - - - CII-SR-149 - warning - - - - [CII-SR-149] - ItemBuyerTradeParty should not be present - - - - - - - - - - CII-SR-150 - warning - - - - [CII-SR-150] - IncludedSpecifiedMarketplace should not be present - - - - - - - - - - CII-SR-447 - warning - - - - [CII-SR-447] - UltimateCustomerOrderReferencedDocument should not be present - - - - - - - - - - - - - - - - CII-SR-151 - warning - - - - [CII-SR-151] - RequestedQuantity should not be present - - - - - - - - - - CII-SR-152 - warning - - - - [CII-SR-152] - ReceivedQuantity should not be present - - - - - - - - - - CII-SR-153 - warning - - - - [CII-SR-153] - ChargeFreeQuantity should not be present - - - - - - - - - - CII-SR-154 - warning - - - - [CII-SR-154] - PackageQuantity should not be present - - - - - - - - - - CII-SR-155 - warning - - - - [CII-SR-155] - ProductUnitQuantity should not be present - - - - - - - - - - CII-SR-156 - warning - - - - [CII-SR-156] - PerPackageUnitQuantity should not be present - - - - - - - - - - CII-SR-157 - warning - - - - [CII-SR-157] - NetWeightMeasure should not be present - - - - - - - - - - CII-SR-158 - warning - - - - [CII-SR-158] - GrossWeightMeasure should not be present - - - - - - - - - - CII-SR-159 - warning - - - - [CII-SR-159] - TheoreticalWeightMeasure should not be present - - - - - - - - - - CII-SR-160 - warning - - - - [CII-SR-160] - DespatchedQuantity should not be present - - - - - - - - - - CII-SR-161 - warning - - - - [CII-SR-161] - SpecifiedDeliveryAdjustment should not be present - - - - - - - - - - CII-SR-162 - warning - - - - [CII-SR-162] - IncludedSupplyChainPackaging should not be present - - - - - - - - - - CII-SR-163 - warning - - - - [CII-SR-163] - RelatedSupplyChainConsignment should not be present - - - - - - - - - - CII-SR-164 - warning - - - - [CII-SR-164] - ShipToTradeParty should not be present - - - - - - - - - - CII-SR-165 - warning - - - - [CII-SR-165] - UltimateShipToTradeParty should not be present - - - - - - - - - - CII-SR-166 - warning - - - - [CII-SR-166] - ShipFromTradeParty should not be present - - - - - - - - - - CII-SR-167 - warning - - - - [CII-SR-167] - ActualDespatchSupplyChainEvent should not be present - - - - - - - - - - CII-SR-168 - warning - - - - [CII-SR-168] - ActualPickUpSupplyChainEvent should not be present - - - - - - - - - - CII-SR-169 - warning - - - - [CII-SR-169] - RequestedDeliverySupplyChainEvent should not be present - - - - - - - - - - CII-SR-170 - warning - - - - [CII-SR-170] - ActualDeliverySupplyChainEvent should not be present - - - - - - - - - - CII-SR-171 - warning - - - - [CII-SR-171] - ActualReceiptSupplyChainEvent should not be present - - - - - - - - - - CII-SR-172 - warning - - - - [CII-SR-172] - AdditionalReferencedDocument should not be present - - - - - - - - - - CII-SR-173 - warning - - - - [CII-SR-173] - DespatchAdviceReferencedDocument should not be present - - - - - - - - - - CII-SR-174 - warning - - - - [CII-SR-174] - ReceivingAdviceReferencedDocument should not be present - - - - - - - - - - CII-SR-175 - warning - - - - [CII-SR-175] - DeliveryNoteReferencedDocument should not be present - - - - - - - - - - CII-SR-176 - warning - - - - [CII-SR-176] - ConsumptionReportReferencedDocument should not be present - - - - - - - - - - CII-SR-177 - warning - - - - [CII-SR-177] - RequestedQuantity should not be present - - - - - - - - - - - - - - - - CII-SR-178 - warning - - - - [CII-SR-178] - PaymentReference should not be present - - - - - - - - - - CII-SR-179 - warning - - - - [CII-SR-179] - InvoiceIssuerReference should not be present - - - - - - - - - - CII-SR-180 - warning - - - - [CII-SR-180] - TotalAdjustmentAmount should not be present - - - - - - - - - - CII-SR-181 - warning - - - - [CII-SR-181] - DiscountIndicator should not be present - - - - - - - - - - CII-SR-182 - warning - - - - [CII-SR-182] - CalculatedAmount should not be present - - - - - - - - - - CII-SR-183 - warning - - - - [CII-SR-183] - IndicatorString should not be present - - - - - - - - - - CII-SR-184 - warning - - - - [CII-SR-184] - ID should not be present - - - - - - - - - - CII-SR-185 - warning - - - - [CII-SR-185] - SequenceNumeric should not be present - - - - - - - - - - CII-SR-186 - warning - - - - [CII-SR-186] - @format should not be present - - - - - - - - - - CII-SR-187 - warning - - - - [CII-SR-187] - BasisQuantity should not be present - - - - - - - - - - CII-SR-188 - warning - - - - [CII-SR-188] - PrepaidIndicator should not be present - - - - - - - - - - CII-SR-189 - warning - - - - [CII-SR-189] - UnitBasisAmount should not be present - - - - - - - - - - CII-SR-190 - warning - - - - [CII-SR-190] - TypeCode should not be present - - - - - - - - - - CII-SR-191 - warning - - - - [CII-SR-191] - CategoryTradeTax should not be present - - - - - - - - - - CII-SR-192 - warning - - - - [CII-SR-192] - ActualTradeCurrencyExchange should not be present - - - - - - - - - - CII-SR-193 - warning - - - - [CII-SR-193] - ID should not be present - - - - - - - - - - CII-SR-194 - warning - - - - [CII-SR-194] - SubtotalCalculatedTradeTax should not be present - - - - - - - - - - CII-SR-195 - warning - - - - [CII-SR-195] - SpecifiedLogisticsServiceCharge should not be present - - - - - - - - - - CII-SR-196 - warning - - - - [CII-SR-196] - SpecifiedTradePaymentTerms should not be present - - - - - - - - - - CII-SR-197 - warning - - - - [CII-SR-197] - ChargeTotalAmount should not be present - - - - - - - - - - CII-SR-198 - warning - - - - [CII-SR-198] - AllowanceTotalAmount should not be present - - - - - - - - - - CII-SR-199 - warning - - - - [CII-SR-199] - TaxBasisTotalAmount should not be present - - - - - - - - - - CII-SR-200 - warning - - - - [CII-SR-200] - TaxTotalAmount should not be present - - - - - - - - - - CII-SR-201 - warning - - - - [CII-SR-201] - GrandTotalAmount should not be present - - - - - - - - - - CII-SR-202 - warning - - - - [CII-SR-202] - InformationAmount should not be present - - - - - - - - - - CII-SR-203 - warning - - - - [CII-SR-203] - TotalAllowanceChargeAmount should not be present - - - - - - - - - - CII-SR-204 - warning - - - - [CII-SR-204] - TotalRetailValueInformationAmount should not be present - - - - - - - - - - CII-SR-205 - warning - - - - [CII-SR-205] - GrossLineTotalAmount should not be present - - - - - - - - - - CII-SR-206 - warning - - - - [CII-SR-206] - NetLineTotalAmount should not be present - - - - - - - - - - CII-SR-207 - warning - - - - [CII-SR-207] - NetIncludingTaxesLineTotalAmount should not be present - - - - - - - - - - CII-SR-208 - warning - - - - [CII-SR-208] - ProductWeightLossInformationAmount should not be present - - - - - - - - - - CII-SR-209 - warning - - - - [CII-SR-209] - SpecifiedFinancialAdjustment should not be present - - - - - - - - - - CII-SR-210 - warning - - - - [CII-SR-210] - InvoiceReferencedDocument should not be present - - - - - - - - - - CII-SR-212 - warning - - - - [CII-SR-212] - PayableSpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-SR-213 - warning - - - - [CII-SR-213] - SetTriggerCode should not be present - - - - - - - - - - CII-SR-214 - warning - - - - [CII-SR-214] - TypeCode should not be present - - - - - - - - - - CII-SR-215 - warning - - - - [CII-SR-215] - AmountTypeCode should not be present - - - - - - - - - - CII-SR-216 - warning - - - - [CII-SR-216] - Name should not be present - - - - - - - - - - CII-SR-217 - warning - - - - [CII-SR-217] - CostReferenceDimensionPattern should not be present - - - - - - - - - - CII-SR-218 - warning - - - - [CII-SR-218] - PurchaseSpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-SR-219 - warning - - - - [CII-SR-219] - SalesSpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-SR-220 - warning - - - - [CII-SR-220] - SpecifiedTradeSettlementFinancialCard should not be present - - - - - - - - - - - - - - - - CII-SR-442 - warning - - - - [CII-SR-442] - Reference should not be present - - - - - - - - - - CII-SR-222 - warning - - - - [CII-SR-222] - RoleCode should not be present - - - - - - - - - - CII-SR-223 - warning - - - - [CII-SR-223] - LegalClassificationCode should not be present - - - - - - - - - - CII-SR-224 - warning - - - - [CII-SR-224] - Name should not be present - - - - - - - - - - CII-SR-225 - warning - - - - [CII-SR-225] - PostalTradeAddress should not be present - - - - - - - - - - CII-SR-226 - warning - - - - [CII-SR-226] - RoleCode should not be present - - - - - - - - - - CII-SR-227 - warning - - - - [CII-SR-227] - ID should not be present - - - - - - - - - - CII-SR-228 - warning - - - - [CII-SR-228] - TypeCode should not be present - - - - - - - - - - CII-SR-229 - warning - - - - [CII-SR-229] - JobTitle should not be present - - - - - - - - - - CII-SR-230 - warning - - - - [CII-SR-230] - Responsibility should not be present - - - - - - - - - - CII-SR-231 - warning - - - - [CII-SR-231] - PersonID should not be present - - - - - - - - - - CII-SR-232 - warning - - - - [CII-SR-232] - URIID should not be present - - - - - - - - - - CII-SR-233 - warning - - - - [CII-SR-233] - ChannelCode should not be present - - - - - - - - - - CII-SR-234 - warning - - - - [CII-SR-234] - DirectTelephoneUniversalCommunication should not be present - - - - - - - - - - CII-SR-235 - warning - - - - [CII-SR-235] - MobileTelephoneUniversalCommunication should not be present - - - - - - - - - - CII-SR-236 - warning - - - - [CII-SR-236] - FaxUniversalCommunication should not be present - - - - - - - - - - CII-SR-237 - warning - - - - [CII-SR-237] - ChannelCode should not be present - - - - - - - - - - CII-SR-238 - warning - - - - [CII-SR-238] - CompleteNumber should not be present - - - - - - - - - - CII-SR-239 - warning - - - - [CII-SR-239] - TelexUniversalCommunication should not be present - - - - - - - - - - CII-SR-240 - warning - - - - [CII-SR-240] - VOIPUniversalCommunication should not be present - - - - - - - - - - CII-SR-241 - warning - - - - [CII-SR-241] - InstantMessagingUniversalCommunication should not be present - - - - - - - - - - CII-SR-242 - warning - - - - [CII-SR-242] - SpecifiedNote should not be present - - - - - - - - - - CII-SR-243 - warning - - - - [CII-SR-243] - SpecifiedContactPerson should not be present - - - - - - - - - - CII-SR-244 - warning - - - - [CII-SR-244] - ChannelCode should not be present - - - - - - - - - - CII-SR-245 - warning - - - - [CII-SR-245] - CompleteNumber should not be present - - - - - - - - - - CII-SR-246 - warning - - - - [CII-SR-246] - AssociatedRegisteredTax should not be present - - - - - - - - - - CII-SR-247 - warning - - - - [CII-SR-247] - EndPointURIUniversalCommunication should not be present - - - - - - - - - - CII-SR-248 - warning - - - - [CII-SR-248] - LogoAssociatedSpecifiedBinaryFile should not be present - - - - - - - - - - CII-SR-249 - warning - - - - [CII-SR-249] - RoleCode should not be present - - - - - - - - - - CII-SR-250 - warning - - - - [CII-SR-250] - Description should not be present - - - - - - - - - - CII-SR-251 - warning - - - - [CII-SR-251] - LegalClassificationCode should not be present - - - - - - - - - - CII-SR-252 - warning - - - - [CII-SR-252] - Name should not be present - - - - - - - - - - CII-SR-254 - warning - - - - [CII-SR-254] - PostalTradeAddress should not be present - - - - - - - - - - CII-SR-255 - warning - - - - [CII-SR-255] - AuthorizedLegalRegistration should not be present - - - - - - - - - - CII-SR-256 - warning - - - - [CII-SR-256] - ID should not be present - - - - - - - - - - CII-SR-257 - warning - - - - [CII-SR-257] - TypeCode should not be present - - - - - - - - - - CII-SR-258 - warning - - - - [CII-SR-258] - JobTitle should not be present - - - - - - - - - - CII-SR-259 - warning - - - - [CII-SR-259] - Responsibility should not be present - - - - - - - - - - CII-SR-260 - warning - - - - [CII-SR-260] - PersonID should not be present - - - - - - - - - - CII-SR-261 - warning - - - - [CII-SR-261] - URIID should not be present - - - - - - - - - - CII-SR-262 - warning - - - - [CII-SR-262] - ChannelCode should not be present - - - - - - - - - - CII-SR-263 - warning - - - - [CII-SR-263] - DirectTelephoneUniversalCommunication should not be present - - - - - - - - - - CII-SR-264 - warning - - - - [CII-SR-264] - MobileTelephoneUniversalCommunication should not be present - - - - - - - - - - CII-SR-265 - warning - - - - [CII-SR-265] - FaxUniversalCommunication should not be present - - - - - - - - - - CII-SR-266 - warning - - - - [CII-SR-266] - ChannelCode should not be present - - - - - - - - - - CII-SR-267 - warning - - - - [CII-SR-267] - CompleteNumber should not be present - - - - - - - - - - CII-SR-268 - warning - - - - [CII-SR-268] - TelexUniversalCommunication should not be present - - - - - - - - - - CII-SR-269 - warning - - - - [CII-SR-269] - VOIPUniversalCommunication should not be present - - - - - - - - - - CII-SR-270 - warning - - - - [CII-SR-270] - InstantMessagingUniversalCommunication should not be present - - - - - - - - - - CII-SR-271 - warning - - - - [CII-SR-271] - SpecifiedNote should not be present - - - - - - - - - - CII-SR-272 - warning - - - - [CII-SR-272] - SpecifiedContactPerson should not be present - - - - - - - - - - CII-SR-273 - warning - - - - [CII-SR-273] - ChannelCode should not be present - - - - - - - - - - CII-SR-274 - warning - - - - [CII-SR-274] - CompleteNumber should not be present - - - - - - - - - - CII-SR-275 - warning - - - - [CII-SR-275] - AssociatedRegisteredTax should not be present - - - - - - - - - - CII-SR-276 - warning - - - - [CII-SR-276] - EndPointURIUniversalCommunication should not be present - - - - - - - - - - CII-SR-277 - warning - - - - [CII-SR-277] - LogoAssociatedSpecifiedBinaryFile should not be present - - - - - - - - - - CII-SR-278 - warning - - - - [CII-SR-278] - SalesAgentTradeParty should not be present - - - - - - - - - - CII-SR-279 - warning - - - - [CII-SR-279] - BuyerRequisitionerTradeParty should not be present - - - - - - - - - - CII-SR-280 - warning - - - - [CII-SR-280] - BuyerAssignedAccountantTradeParty should not be present - - - - - - - - - - CII-SR-281 - warning - - - - [CII-SR-281] - SellerAssignedAccountantTradeParty should not be present - - - - - - - - - - CII-SR-282 - warning - - - - [CII-SR-282] - BuyerTaxRepresentativeTradeParty should not be present - - - - - - - - - - CII-SR-283 - warning - - - - [CII-SR-283] - GlobalID should not be present - - - - - - - - - - CII-SR-284 - warning - - - - [CII-SR-284] - RoleCode should not be present - - - - - - - - - - CII-SR-285 - warning - - - - [CII-SR-285] - Description should not be present - - - - - - - - - - CII-SR-286 - warning - - - - [CII-SR-286] - SpecifiedLegalOrganization should not be present - - - - - - - - - - CII-SR-287 - warning - - - - [CII-SR-287] - DefinedTradeContact should not be present - - - - - - - - - - CII-SR-288 - warning - - - - [CII-SR-288] - URIUniversalCommunication should not be present - - - - - - - - - - CII-SR-289 - warning - - - - [CII-SR-289] - AssociatedRegisteredTax should not be present - - - - - - - - - - CII-SR-290 - warning - - - - [CII-SR-290] - EndPointURIUniversalCommunication should not be present - - - - - - - - - - CII-SR-291 - warning - - - - [CII-SR-291] - LogoAssociatedSpecifiedBinaryFile should not be present - - - - - - - - - - CII-SR-292 - warning - - - - [CII-SR-292] - ProductEndUserTradeParty should not be present - - - - - - - - - - CII-SR-293 - warning - - - - [CII-SR-293] - ApplicableTradeDeliveryTerms should not be present - - - - - - - - - - CII-SR-294 - warning - - - - [CII-SR-294] - LineID should not be present - - - - - - - - - - CII-SR-295 - warning - - - - [CII-SR-295] - LineID should not be present - - - - - - - - - - CII-SR-296 - warning - - - - [CII-SR-296] - QuotationReferencedDocument should not be present - - - - - - - - - - CII-SR-297 - warning - - - - [CII-SR-297] - OrderResponseReferencedDocument should not be present - - - - - - - - - - CII-SR-298 - warning - - - - [CII-SR-298] - LineID should not be present - - - - - - - - - - CII-SR-299 - warning - - - - [CII-SR-299] - DemandForecastReferencedDocument should not be present - - - - - - - - - - CII-SR-300 - warning - - - - [CII-SR-300] - SupplyInstructionReferencedDocument should not be present - - - - - - - - - - CII-SR-301 - warning - - - - [CII-SR-301] - PromotionalDealReferencedDocument should not be present - - - - - - - - - - CII-SR-302 - warning - - - - [CII-SR-302] - PriceListReferencedDocument should not be present - - - - - - - - - - CII-SR-303 - warning - - - - [CII-SR-303] - LineID should not be present - - - - - - - - - - CII-SR-304 - warning - - - - [CII-SR-304] - RequisitionerReferencedDocument should not be present - - - - - - - - - - CII-SR-305 - warning - - - - [CII-SR-305] - BuyerAgentTradeParty should not be present - - - - - - - - - - CII-SR-306 - warning - - - - [CII-SR-306] - PurchaseConditionsReferencedDocument should not be present - - - - - - - - - - CII-SR-307 - warning - - - - [CII-SR-307] - Description should not be present - - - - - - - - - - CII-SR-448 - warning - - - - [CII-SR-448] - UltimateCustomerOrderReferencedDocument should not be present - - - - - - - - - - CII-SR-450 - warning - - - - [CII-SR-450] - Only one buyer identifier should be present (either the ID or the Global ID) - - - - - - - - - - - - - - - - CII-SR-308 - warning - - - - [CII-SR-308] - RelatedSupplyChainConsignment should not be present - - - - - - - - - - CII-SR-309 - warning - - - - [CII-SR-309] - RoleCode should not be present - - - - - - - - - - CII-SR-310 - warning - - - - [CII-SR-310] - Description should not be present - - - - - - - - - - CII-SR-311 - warning - - - - [CII-SR-311] - SpecifiedLegalOrganization should not be present - - - - - - - - - - CII-SR-312 - warning - - - - [CII-SR-312] - DefinedTradeContact should not be present - - - - - - - - - - CII-SR-313 - warning - - - - [CII-SR-313] - URIUniversalCommunication should not be present - - - - - - - - - - CII-SR-314 - warning - - - - [CII-SR-314] - SpecifiedTaxRegistration should not be present - - - - - - - - - - CII-SR-315 - warning - - - - [CII-SR-315] - EndPointURIUniversalCommunication should not be present - - - - - - - - - - CII-SR-316 - warning - - - - [CII-SR-316] - LogoAssociatedSpecifiedBinaryFile should not be present - - - - - - - - - - CII-SR-317 - warning - - - - [CII-SR-317] - UltimateShipToTradeParty should not be present - - - - - - - - - - CII-SR-318 - warning - - - - [CII-SR-318] - ShipFromTradeParty should not be present - - - - - - - - - - CII-SR-319 - warning - - - - [CII-SR-319] - ActualDespatchSupplyChainEvent should not be present - - - - - - - - - - CII-SR-320 - warning - - - - [CII-SR-320] - ActualPickUpSupplyChainEvent should not be present - - - - - - - - - - CII-SR-321 - warning - - - - [CII-SR-321] - ID should not be present - - - - - - - - - - CII-SR-322 - warning - - - - [CII-SR-322] - DateTime should not be present - - - - - - - - - - CII-SR-323 - warning - - - - [CII-SR-323] - TypeCode should not be present - - - - - - - - - - CII-SR-324 - warning - - - - [CII-SR-324] - Description should not be present - - - - - - - - - - CII-SR-325 - warning - - - - [CII-SR-325] - DescriptionBinaryObject should not be present - - - - - - - - - - CII-SR-326 - warning - - - - [CII-SR-326] - UnitQuantity should not be present - - - - - - - - - - CII-SR-327 - warning - - - - [CII-SR-327] - LatestOccurrenceDateTime should not be present - - - - - - - - - - CII-SR-328 - warning - - - - [CII-SR-328] - EarliestOccurrenceDateTime should not be present - - - - - - - - - - CII-SR-329 - warning - - - - [CII-SR-329] - OccurrenceSpecifiedPeriod should not be present - - - - - - - - - - CII-SR-330 - warning - - - - [CII-SR-330] - OccurrenceLogisticsLocation should not be present - - - - - - - - - - CII-SR-331 - warning - - - - [CII-SR-331] - ActualReceiptSupplyChainEvent should not be present - - - - - - - - - - CII-SR-332 - warning - - - - [CII-SR-332] - AdditionalReferencedDocument should not be present - - - - - - - - - - CII-SR-333 - warning - - - - [CII-SR-333] - LineID should not be present - - - - - - - - - - CII-SR-334 - warning - - - - [CII-SR-334] - LineID should not be present - - - - - - - - - - CII-SR-335 - warning - - - - [CII-SR-335] - DeliveryNoteReferencedDocument should not be present - - - - - - - - - - CII-SR-336 - warning - - - - [CII-SR-336] - ConsumptionReportReferencedDocument should not be present - - - - - - - - - - CII-SR-337 - warning - - - - [CII-SR-337] - PreviousDeliverySupplyChainEvent should not be present - - - - - - - - - - CII-SR-338 - warning - - - - [CII-SR-338] - PackingListReferencedDocument should not be present - - - - - - - - - - CII-SR-449 - warning - - - - [CII-SR-449] - Only one delivery to location identifier should be present (either the ID or the Global ID) - - - - - - - - - - - - - - - - CII-SR-339 - warning - - - - [CII-SR-339] - DuePayableAmount should not be present - - - - - - - - - - CII-SR-340 - warning - - - - [CII-SR-340] - CreditorReferenceTypeCode should not be present - - - - - - - - - - CII-SR-341 - warning - - - - [CII-SR-341] - CreditorReferenceType should not be present - - - - - - - - - - CII-SR-342 - warning - - - - [CII-SR-342] - CreditorReferenceIssuerID should not be present - - - - - - - - - - CII-SR-344 - warning - - - - [CII-SR-344] - PaymentCurrencyCode should not be present - - - - - - - - - - CII-SR-345 - warning - - - - [CII-SR-345] - InvoiceIssuerReference should not be present - - - - - - - - - - CII-SR-346 - warning - - - - [CII-SR-346] - InvoiceDateTime should not be present - - - - - - - - - - CII-SR-347 - warning - - - - [CII-SR-347] - NextInvoiceDateTime should not be present - - - - - - - - - - CII-SR-348 - warning - - - - [CII-SR-348] - CreditReasonCode should not be present - - - - - - - - - - CII-SR-349 - warning - - - - [CII-SR-349] - CreditReason should not be present - - - - - - - - - - CII-SR-350 - warning - - - - [CII-SR-350] - InvoicerTradeParty should not be present - - - - - - - - - - CII-SR-351 - warning - - - - [CII-SR-351] - InvoiceeTradeParty should not be present - - - - - - - - - - CII-SR-352 - warning - - - - [CII-SR-352] - RoleCode should not be present - - - - - - - - - - CII-SR-353 - warning - - - - [CII-SR-353] - Description should not be present - - - - - - - - - - CII-SR-354 - warning - - - - [CII-SR-354] - LegalClassificationCode should not be present - - - - - - - - - - CII-SR-355 - warning - - - - [CII-SR-355] - Name should not be present - - - - - - - - - - CII-SR-356 - warning - - - - [CII-SR-356] - TradingBusinessName should not be present - - - - - - - - - - CII-SR-357 - warning - - - - [CII-SR-357] - PostalTradeAddress should not be present - - - - - - - - - - CII-SR-358 - warning - - - - [CII-SR-358] - AuthorizedLegalRegistration should not be present - - - - - - - - - - CII-SR-359 - warning - - - - [CII-SR-359] - DefinedTradeContact should not be present - - - - - - - - - - CII-SR-360 - warning - - - - [CII-SR-360] - PostalTradeAddress should not be present - - - - - - - - - - CII-SR-361 - warning - - - - [CII-SR-361] - URIUniversalCommunication should not be present - - - - - - - - - - CII-SR-362 - warning - - - - [CII-SR-362] - SpecifiedTaxRegistration should not be present - - - - - - - - - - CII-SR-363 - warning - - - - [CII-SR-363] - EndPointURIUniversalCommunication should not be present - - - - - - - - - - CII-SR-364 - warning - - - - [CII-SR-364] - LogoAssociatedSpecifiedBinaryFile should not be present - - - - - - - - - - CII-SR-451 - warning - - - - [CII-SR-451] - Only one payee identifier should be present (either the ID or the Global ID) - - - - - - - - - - CII-SR-365 - warning - - - - [CII-SR-365] - PayerTradeParty should not be present - - - - - - - - - - CII-SR-366 - warning - - - - [CII-SR-366] - TaxApplicableTradeCurrencyExchange should not be present - - - - - - - - - - CII-SR-367 - warning - - - - [CII-SR-367] - InvoiceApplicableTradeCurrencyExchange should not be present - - - - - - - - - - CII-SR-368 - warning - - - - [CII-SR-368] - PaymentApplicableTradeCurrencyExchange should not be present - - - - - - - - - - CII-SR-369 - warning - - - - [CII-SR-369] - PaymentChannelCode should not be present - - - - - - - - - - CII-SR-370 - warning - - - - [CII-SR-370] - GuaranteeMethodCode should not be present - - - - - - - - - - CII-SR-371 - warning - - - - [CII-SR-371] - PaymentMethodCode should not be present - - - - - - - - - - CII-SR-443 - warning - - - - [CII-SR-443] - ID should not be present - - - - - - - - - - CII-SR-372 - warning - - - - [CII-SR-372] - MicrochipIndicator should not be present - - - - - - - - - - CII-SR-373 - warning - - - - [CII-SR-373] - TypeCode should not be present - - - - - - - - - - CII-SR-375 - warning - - - - [CII-SR-375] - ExpiryDate should not be present - - - - - - - - - - CII-SR-376 - warning - - - - [CII-SR-376] - VerificationNumeric should not be present - - - - - - - - - - CII-SR-377 - warning - - - - [CII-SR-377] - ValidFromDateTime should not be present - - - - - - - - - - CII-SR-378 - warning - - - - [CII-SR-378] - CreditLimitAmount should not be present - - - - - - - - - - CII-SR-379 - warning - - - - [CII-SR-379] - CreditAvailableAmount should not be present - - - - - - - - - - CII-SR-380 - warning - - - - [CII-SR-380] - InterestRatePercent should not be present - - - - - - - - - - CII-SR-381 - warning - - - - [CII-SR-381] - Description should not be present - - - - - - - - - - CII-SR-382 - warning - - - - [CII-SR-382] - AccountName should not be present - - - - - - - - - - CII-SR-444 - warning - - - - [CII-SR-444] - ProprietaryID should not be present - - - - - - - - - - CII-SR-384 - warning - - - - [CII-SR-384] - ClearingSystemName should not be present - - - - - - - - - - CII-SR-385 - warning - - - - [CII-SR-385] - Name should not be present - - - - - - - - - - CII-SR-386 - warning - - - - [CII-SR-386] - LocationFinancialInstitutionAddress should not be present - - - - - - - - - - CII-SR-388 - warning - - - - [CII-SR-388] - ID should not be present - - - - - - - - - - CII-SR-389 - warning - - - - [CII-SR-389] - SequenceNumeric should not be present - - - - - - - - - - CII-SR-390 - warning - - - - [CII-SR-390] - BasisQuantity should not be present - - - - - - - - - - CII-SR-391 - warning - - - - [CII-SR-391] - PrepaidIndicator should not be present - - - - - - - - - - CII-SR-392 - warning - - - - [CII-SR-392] - UnitBasisAmount should not be present - - - - - - - - - - CII-SR-393 - warning - - - - [CII-SR-393] - TypeCode should not be present - - - - - - - - - - CII-SR-394 - warning - - - - [CII-SR-394] - ActualTradeCurrencyExchange should not be present - - - - - - - - - - CII-SR-395 - warning - - - - [CII-SR-395] - SubtotalCalculatedTradeTax should not be present - - - - - - - - - - CII-SR-396 - warning - - - - [CII-SR-396] - SpecifiedLogisticsServiceCharge should not be present - - - - - - - - - - CII-SR-397 - warning - - - - [CII-SR-397] - ID should not be present - - - - - - - - - - CII-SR-398 - warning - - - - [CII-SR-398] - FromEventCode should not be present - - - - - - - - - - CII-SR-399 - warning - - - - [CII-SR-399] - SettlementPeriodMeasure should not be present - - - - - - - - - - CII-SR-400 - warning - - - - [CII-SR-400] - DateTime should not be present - - - - - - - - - - CII-SR-401 - warning - - - - [CII-SR-401] - TypeCode should not be present - - - - - - - - - - CII-SR-402 - warning - - - - [CII-SR-402] - InstructionTypeCode should not be present - - - - - - - - - - CII-SR-404 - warning - - - - [CII-SR-404] - PartialPaymentPercent should not be present - - - - - - - - - - CII-SR-405 - warning - - - - [CII-SR-405] - PaymentMeansID should not be present - - - - - - - - - - CII-SR-406 - warning - - - - [CII-SR-406] - PartialPaymentAmount should not be present - - - - - - - - - - CII-SR-407 - warning - - - - [CII-SR-407] - ApplicableTradePaymentPenaltyTerms should not be present - - - - - - - - - - CII-SR-408 - warning - - - - [CII-SR-408] - ApplicableTradePaymentDiscountTerms should not be present - - - - - - - - - - CII-SR-409 - warning - - - - [CII-SR-409] - PayeeTradeParty should not be present - - - - - - - - - - CII-SR-421 - warning - - - - [CII-SR-421] - SpecifiedFinancialAdjustment should not be present - - - - - - - - - - CII-SR-422 - warning - - - - [CII-SR-422] - LineID should not be present - - - - - - - - - - CII-SR-423 - warning - - - - [CII-SR-423] - ProFormaInvoiceReferencedDocument should not be present - - - - - - - - - - CII-SR-424 - warning - - - - [CII-SR-424] - LetterOfCreditReferencedDocument should not be present - - - - - - - - - - CII-SR-425 - warning - - - - [CII-SR-425] - FactoringAgreementReferencedDocument should not be present - - - - - - - - - - CII-SR-426 - warning - - - - [CII-SR-426] - FactoringListReferencedDocument should not be present - - - - - - - - - - CII-SR-427 - warning - - - - [CII-SR-427] - PayableSpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-SR-428 - warning - - - - [CII-SR-428] - SetTriggerCode should not be present - - - - - - - - - - CII-SR-429 - warning - - - - [CII-SR-429] - TypeCode should not be present - - - - - - - - - - CII-SR-430 - warning - - - - [CII-SR-430] - AmountTypeCode should not be present - - - - - - - - - - CII-SR-431 - warning - - - - [CII-SR-431] - Name should not be present - - - - - - - - - - CII-SR-432 - warning - - - - [CII-SR-432] - CostReferenceDimensionPattern should not be present - - - - - - - - - - CII-SR-433 - warning - - - - [CII-SR-433] - PurchaseSpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-SR-434 - warning - - - - [CII-SR-434] - SalesSpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-SR-435 - warning - - - - [CII-SR-435] - SpecifiedTradeSettlementFinancialCard should not be present - - - - - - - - - - CII-SR-436 - warning - - - - [CII-SR-436] - SpecifiedAdvancePayment should not be present - - - - - - - - - - CII-SR-437 - warning - - - - [CII-SR-437] - UltimatePayeeTradeParty should not be present - - - - - - - - - - - - - - - - CII-SR-411 - warning - - - - [CII-SR-411] - InformationAmount should not be present - - - - - - - - - - CII-SR-412 - warning - - - - [CII-SR-412] - TotalDiscountAmount should not be present - - - - - - - - - - CII-SR-413 - warning - - - - [CII-SR-413] - TotalAllowanceChargeAmount should not be present - - - - - - - - - - CII-SR-414 - warning - - - - [CII-SR-414] - RetailValueExcludingTaxInformationAmount should not be present - - - - - - - - - - CII-SR-415 - warning - - - - [CII-SR-415] - TotalDepositFeeInformationAmount should not be present - - - - - - - - - - CII-SR-416 - warning - - - - [CII-SR-416] - ProductValueExcludingTobaccoTaxInformationAmount should not be present - - - - - - - - - - CII-SR-417 - warning - - - - [CII-SR-417] - TotalRetailValueInformationAmount should not be present - - - - - - - - - - CII-SR-418 - warning - - - - [CII-SR-418] - GrossLineTotalAmount should not be present - - - - - - - - - - CII-SR-419 - warning - - - - [CII-SR-419] - NetLineTotalAmount should not be present - - - - - - - - - - CII-SR-420 - warning - - - - [CII-SR-420] - NetIncludingTaxesLineTotalAmount should not be present - - - - - - - - - - - - - - - - CII-DT-013 - fatal - - - - [CII-DT-013] - languageID should not be present - - - - - - - - - - CII-DT-014 - fatal - - - - [CII-DT-014] - languageLocaleID should not be present - - - - - - - - - - CII-SR-438 - warning - - - - [CII-SR-438] - ValuationBreakdownStatement should not be present - - - - - - - - - - - - - - - - CII-SR-04 - warning - - - - [CII-SR-004] - Value should not be present - - - - - - - - - - CII-SR-05 - warning - - - - [CII-SR-005] - SpecifiedDocumentVersion should not be present - - - - - - - - - - - - - - - - CII-DT-001 - fatal - - - - [CII-DT-001] - schemeName should not be present - - - - - - - - - - CII-DT-002 - fatal - - - - [CII-DT-002] - schemeAgencyName should not be present - - - - - - - - - - CII-DT-003 - fatal - - - - [CII-DT-003] - schemeDataURI should not be present - - - - - - - - - - CII-DT-004 - fatal - - - - [CII-DT-004] - schemeURI should not be present - - - - - - - - - - - - - - - - CII-DT-005 - fatal - - - - [CII-DT-005] - schemeID should not be present - - - - - - - - - - CII-DT-006 - fatal - - - - [CII-DT-006] - schemeAgencyID should not be present - - - - - - - - - - CII-DT-007 - fatal - - - - [CII-DT-007] - schemeVersionID should not be present - - - - - - - - - - - - - - - - CII-DT-008 - fatal - - - - [CII-DT-008] - name should not be present - - - - - - - - - - CII-DT-009 - fatal - - - - [CII-DT-009] - listURI should not be present - - - - - - - - - - - - - - - - CII-DT-010 - fatal - - - - [CII-DT-010] - listID should not be present - - - - - - - - - - CII-DT-011 - fatal - - - - [CII-DT-011] - listAgencyID should not be present - - - - - - - - - - CII-DT-012 - fatal - - - - [CII-DT-012] - listVersionID should not be present - - - - - - - - - - - - - - - - CII-DT-045 - warning - - - - [CII-DT-045] - @listID should not be present - - - - - - - - - - CII-DT-046 - warning - - - - [CII-DT-046] - @listAgencyID should not be present - - - - - - - - - - CII-DT-047 - warning - - - - [CII-DT-047] - @listVersionID should not be present - - - - - - - - - - CII-DT-048 - warning - - - - [CII-DT-048] - @listURI should not be present - - - - - - - - - - - - - - - - CII-DT-015 - fatal - - - - [CII-DT-015] - URIID should not be present - - - - - - - - - - CII-DT-016 - fatal - - - - [CII-DT-016] - StatusCode should not be present - - - - - - - - - - CII-DT-017 - fatal - - - - [CII-DT-017] - CopyIndicator should not be present - - - - - - - - - - CII-DT-018 - fatal - - - - [CII-DT-018] - TypeCode should not be present - - - - - - - - - - CII-DT-019 - fatal - - - - [CII-DT-019] - GlobalID should not be present - - - - - - - - - - CII-DT-020 - fatal - - - - [CII-DT-020] - RevisionID should not be present - - - - - - - - - - CII-DT-021 - fatal - - - - [CII-DT-021] - Name should not be present - - - - - - - - - - CII-DT-022 - fatal - - - - [CII-DT-022] - AttachmentBinaryObject should not be present - - - - - - - - - - CII-DT-023 - fatal - - - - [CII-DT-023] - Information should not be present - - - - - - - - - - CII-DT-024 - fatal - - - - [CII-DT-024] - ReferenceTypeCode should not be present - - - - - - - - - - CII-DT-025 - fatal - - - - [CII-DT-025] - SectionName should not be present - - - - - - - - - - CII-DT-026 - fatal - - - - [CII-DT-026] - PreviousRevisionID should not be present - - - - - - - - - - CII-DT-027 - fatal - - - - [CII-DT-027] - FormattedIssueDateTime should not be present - - - - - - - - - - CII-DT-028 - fatal - - - - [CII-DT-028] - EffectiveSpecifiedPeriod should not be present - - - - - - - - - - CII-DT-029 - fatal - - - - [CII-DT-029] - IssuerTradeParty should not be present - - - - - - - - - - CII-DT-030 - fatal - - - - [CII-DT-030] - AttachedSpecifiedBinaryFile should not be present - - - - - - - - - - - - - - - - CII-DT-031 - fatal - - - - [CII-DT-031] - currencyID should not be present - - - - - - - - - - CII-DT-032 - fatal - - - - [CII-DT-032] - currencyCodeListVersionID should not be present - - - - - - - - - - - - - - - - CII-DT-033 - fatal - - - - [CII-DT-033] - unitCode should not be present - - - - - - - - - - CII-DT-034 - fatal - - - - [CII-DT-034] - unitCodeListID should not be present - - - - - - - - - - CII-DT-035 - fatal - - - - [CII-DT-035] - unitCodeListAgencyID should not be present - - - - - - - - - - CII-DT-036 - fatal - - - - [CII-DT-036] - unitCodeListAgencyName should not be present - - - - - - - - - - - - - - - - CII-DT-037 - fatal - - - - [CII-DT-037] - TypeCode shall be 'VAT' - - - - - - - - - - CII-DT-038 - warning - - - - [CII-DT-038] - CalculatedRate should not be present - - - - - - - - - - CII-DT-039 - warning - - - - [CII-DT-039] - CalculationSequenceNumeric should not be present - - - - - - - - - - CII-DT-040 - warning - - - - [CII-DT-040] - BasisQuantity should not be present - - - - - - - - - - CII-DT-041 - warning - - - - [CII-DT-041] - BasisAmount should not be present - - - - - - - - - - CII-DT-042 - warning - - - - [CII-DT-042] - UnitBasisAmount should not be present - - - - - - - - - - CII-DT-043 - warning - - - - [CII-DT-043] - LineTotalBasisAmount should not be present - - - - - - - - - - CII-DT-044 - warning - - - - [CII-DT-044] - AllowanceChargeBasisAmount should not be present - - - - - - - - - - CII-DT-049 - warning - - - - [CII-DT-049] - CurrencyCode should not be present - - - - - - - - - - CII-DT-050 - warning - - - - [CII-DT-050] - Jurisdiction should not be present - - - - - - - - - - CII-DT-051 - warning - - - - [CII-DT-051] - CustomsDutyIndicator should not be present - - - - - - - - - - CII-DT-052 - warning - - - - [CII-DT-052] - ExemptionReasonCode should not be present - - - - - - - - - - CII-DT-098 - warning - - - - [CII-DT-098] - ExemptionReason should not be present - - - - - - - - - - CII-DT-053 - warning - - - - [CII-DT-053] - TaxBasisAllowanceRate should not be present - - - - - - - - - - CII-DT-054 - warning - - - - [CII-DT-054] - TaxPointDate should not be present - - - - - - - - - - CII-DT-055 - warning - - - - [CII-DT-055] - Type should not be present - - - - - - - - - - CII-DT-056 - warning - - - - [CII-DT-056] - InformationAmount should not be present - - - - - - - - - - CII-DT-057 - warning - - - - [CII-DT-057] - CategoryName should not be present - - - - - - - - - - CII-DT-058 - warning - - - - [CII-DT-058] - DueDateTypeCode should not be present - - - - - - - - - - CII-DT-059 - warning - - - - [CII-DT-059] - @format should not be present - - - - - - - - - - CII-DT-060 - warning - - - - [CII-DT-060] - SpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-DT-061 - warning - - - - [CII-DT-061] - ServiceSupplyTradeCountry should not be present - - - - - - - - - - CII-DT-062 - warning - - - - [CII-DT-062] - BuyerRepayableTaxSpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-DT-063 - warning - - - - [CII-DT-063] - SellerPayableTaxSpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-DT-064 - warning - - - - [CII-DT-064] - SellerRefundableTaxSpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-DT-065 - warning - - - - [CII-DT-065] - BuyerDeductibleTaxSpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-DT-066 - warning - - - - [CII-DT-066] - BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount should not be present - - - - - - - - - - CII-DT-067 - warning - - - - [CII-DT-067] - PlaceApplicableTradeLocation should not be present - - - - - - - - - - - - - - - - CII-DT-068 - fatal - - - - [CII-DT-068] - DateTime shall not be used. - - - - - - - - - - CII-DT-069 - fatal - - - - [CII-DT-069] - DurationMeasure shall not be used. - - - - - - - - - - CII-DT-070 - fatal - - - - [CII-DT-070] - InclusiveIndicator shall not be used. - - - - - - - - - - CII-DT-071 - fatal - - - - [CII-DT-071] - Description shall not be used. - - - - - - - - - - CII-DT-072 - fatal - - - - [CII-DT-072] - DateTime shall not be used. - - - - - - - - - - CII-DT-073 - fatal - - - - [CII-DT-073] - CompleteDateTime shall not be used. - - - - - - - - - - CII-DT-074 - fatal - - - - [CII-DT-074] - OpenIndicator shall not be used. - - - - - - - - - - CII-DT-075 - fatal - - - - [CII-DT-075] - SeasonCode shall not be used. - - - - - - - - - - CII-DT-076 - fatal - - - - [CII-DT-076] - ID shall not be used. - - - - - - - - - - CII-DT-077 - fatal - - - - [CII-DT-077] - Name shall not be used. - - - - - - - - - - CII-DT-078 - fatal - - - - [CII-DT-078] - SequenceNumeric shall not be used. - - - - - - - - - - CII-DT-079 - fatal - - - - [CII-DT-079] - StartDateFlexibilityCode shall not be used. - - - - - - - - - - CII-DT-080 - fatal - - - - [CII-DT-080] - ContinuousIndicator shall not be used. - - - - - - - - - - CII-DT-081 - fatal - - - - [CII-DT-081] - PurposeCode shall not be used. - - - - - - - - - - - - - - - - CII-DT-082 - fatal - - - - [CII-DT-082] - ID shall not be used. - - - - - - - - - - CII-DT-083 - fatal - - - - [CII-DT-083] - PostOfficeBox shall not be used. - - - - - - - - - - CII-DT-084 - fatal - - - - [CII-DT-084] - BuildingName shall not be used. - - - - - - - - - - CII-DT-086 - fatal - - - - [CII-DT-086] - LineFour shall not be used. - - - - - - - - - - CII-DT-087 - fatal - - - - [CII-DT-087] - LineFive shall not be used. - - - - - - - - - - CII-DT-088 - fatal - - - - [CII-DT-088] - StreetName shall not be used. - - - - - - - - - - CII-DT-089 - fatal - - - - [CII-DT-089] - CitySubDivisionName shall not be used. - - - - - - - - - - CII-DT-090 - fatal - - - - [CII-DT-090] - CountryName shall not be used. - - - - - - - - - - CII-DT-091 - fatal - - - - [CII-DT-091] - CountrySubDivisionID shall not be used. - - - - - - - - - - CII-DT-092 - fatal - - - - [CII-DT-092] - AttentionOf shall not be used. - - - - - - - - - - CII-DT-093 - fatal - - - - [CII-DT-093] - CareOf shall not be used. - - - - - - - - - - CII-DT-094 - fatal - - - - [CII-DT-094] - BuildingNumber shall not be used. - - - - - - - - - - CII-DT-095 - fatal - - - - [CII-DT-095] - DepartmentName shall not be used. - - - - - - - - - - CII-DT-096 - fatal - - - - [CII-DT-096] - AdditionalStreetName shall not be used. - - - - - - - - - - - - - - - - CII-DT-097 - fatal - - - - [CII-DT-097] - Date time string with format attribute 102 shall be YYYYMMDD. - - - - - - - - - - - - - - - - - - - - - - - BR-CL-01 - fatal - - - - [BR-CL-01]-The document type code MUST be coded by the invoice and credit note related code lists of UNTDID 1001. - - - - - - - - - - - - - - - - BR-CL-03 - fatal - - - - [BR-CL-03]-currencyID MUST be coded using ISO code list 4217 alpha-3 - - - - - - - - - - - - - - - - BR-CL-04 - fatal - - - - [BR-CL-04]-Invoice currency code MUST be coded using ISO code list 4217 alpha-3 - - - - - - - - - - - - - - - - BR-CL-05 - fatal - - - - [BR-CL-05]-Tax currency code MUST be coded using ISO code list 4217 alpha-3 - - - - - - - - - - - - - - - - BR-CL-06 - fatal - - - - [BR-CL-06]-Value added tax point date code MUST be coded using a restriction of UNTDID 2475. - - - - - - - - - - - - - - - - BR-CL-07 - fatal - - - - [BR-CL-07]-Object identifier identification scheme identifier MUST be coded using a restriction of UNTDID 1153. - - - - - - - - - - - - - - - - BR-CL-08 - fatal - - - - [BR-CL-08]-Subject Code MUST be coded using a restriction of UNTDID 4451. - - - - - - - - - - - - - - - - BR-CL-10 - fatal - - - - [BR-CL-10]-Any identifier identification scheme identifier MUST be coded using one of the ISO 6523 ICD list. - - - - - - - - - - - - - - - - BR-CL-11 - fatal - - - - [BR-CL-11]-Any registration identifier identification scheme identifier MUST be coded using one of the ISO 6523 ICD list. - - - - - - - - - - - - - - - - BR-CL-13 - fatal - - - - [BR-CL-13]-Item classification identifier identification scheme identifier MUST be coded using one of the UNTDID 7143 list. - - - - - - - - - - - - - - - - BR-CL-14 - fatal - - - - [BR-CL-14]-Country codes in an invoice MUST be coded using ISO code list 3166-1 - - - - - - - - - - - - - - - - BR-CL-15 - fatal - - - - [BR-CL-15]-Country codes in an invoice MUST be coded using ISO code list 3166-1 - - - - - - - - - - - - - - - - BR-CL-16 - fatal - - - - [BR-CL-16]-Payment means in an invoice MUST be coded using UNTDID 4461 code list - - - - - - - - - - - - - - - - BR-CL-17 - fatal - - - - [BR-CL-17]-Invoice tax categories MUST be coded using UNCL 5305 code list - - - - - - - - - - - - - - - - BR-CL-18 - fatal - - - - [BR-CL-18]-Invoice tax categories MUST be coded using UNCL 5305 code list - - - - - - - - - - - - - - - - BR-CL-19 - fatal - - - - [BR-CL-19]-Coded allowance reasons MUST belong to the UNCL 5189 code list - - - - - - - - - - - - - - - - BR-CL-20 - fatal - - - - [BR-CL-20]-Coded charge reasons MUST belong to the UNCL 7161 code list - - - - - - - - - - - - - - - - BR-CL-21 - fatal - - - - [BR-CL-21]-Item standard identifier scheme identifier MUST belong to the ISO 6523 ICD - code list - - - - - - - - - - - - - - - - BR-CL-22 - fatal - - - - [BR-CL-22]-Tax exemption reason code identifier scheme identifier MUST belong to the CEF VATEX code list - - - - - - - - - - - - - - - - BR-CL-23 - fatal - - - - [BR-CL-23]-Unit code MUST be coded according to the UN/ECE Recommendation 20 with Rec 21 extension - - - - - - - - - - - - - - - - BR-CL-24 - fatal - - - - [BR-CL-24]-For Mime code in attribute use MIMEMediaType. - - - - - - - - - - - - - - - - BR-CL-25 - fatal - - - - [BR-CL-25]-Endpoint identifier scheme identifier MUST belong to the CEF EAS code list - - - - - - - - - - - - - - - - BR-CL-26 - fatal - - - - [BR-CL-26]-Delivery location identifier scheme identifier MUST belong to the ISO 6523 ICD - code list - - - - - - - - - - diff --git a/src/zugferd2/Schema/EN16931/Schematron/FACTUR-X_EN16931.sch b/src/zugferd2/Schema/EN16931/Schematron/FACTUR-X_EN16931.sch deleted file mode 100644 index 56555ec4..00000000 --- a/src/zugferd2/Schema/EN16931/Schematron/FACTUR-X_EN16931.sch +++ /dev/null @@ -1,8924 +0,0 @@ - - - Schema for FACTUR-X; 1.0; EN16931-COMPLIANT (FULLY) - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - Element 'ram:CategoryCode' is marked as not used in the given context. - - - - - - Element 'ram:ControlRequirementIndicator' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - Element 'ram:ContentCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - - Value of 'ram:SubjectCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LanguageID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:Purpose' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionDateTime' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:VersionID' is marked as not used in the given context. - - - - - - Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. - - Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. - - - - - - Element 'ram:ApplicationSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:BIMSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - Element 'ram:MessageStandardSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:ScenarioSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTransactionID' is marked as not used in the given context. - - - - - - Element 'ram:SubsetSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:TestIndicator' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. - - - - - - Element 'ram:SellerTradeParty' must occur exactly 1 times. - - Element 'ram:BuyerTradeParty' must occur exactly 1 times. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:Name' may occur at maximum 1 times. - - Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute '@mimeCode' is required in this context. - - Attribute '@filename' is required in this context. - - - - - - Attribute @characterSetCode' marked as not used in the given context. - - - - - - Attribute @encodingCode' marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - Value of '@mimeCode' is not allowed. - - - - - - Attribute @uri' marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - Element 'ram:BuyerAgentTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:BuyerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:BuyerTaxRepresentativeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:FaxUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:OrderResponseReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PriceListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ProductEndUserTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseConditionsReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:Reference' is marked as not used in the given context. - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:SalesAgentTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SellerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:Description' may occur at maximum 1 times. - - Element 'ram:DefinedTradeContact' may occur at maximum 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 2 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:FaxUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:SupplyInstructionReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DescriptionBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:EarliestOccurrenceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LatestOccurrenceDateTime' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:OccurrenceLogisticsLocation' is marked as not used in the given context. - - - - - - Element 'ram:OccurrenceSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PreviousDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PaymentReference' may occur at maximum 1 times. - - Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. - - Element 'ram:SpecifiedTradeSettlementPaymentMeans' may occur at maximum 1 times. - - Element 'ram:ApplicableTradeTax' must occur at least 1 times. - - Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. - - Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. - - Element 'ram:InvoiceReferencedDocument' may occur at maximum 1 times. - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:BasisAmount' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'udt:Date' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:CreditReason' is marked as not used in the given context. - - - - - - Element 'ram:CreditReasonCode' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceIssuerID' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceType' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:DuePayableAmount' is marked as not used in the given context. - - - - - - Element 'ram:FactoringAgreementReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:FactoringListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:InvoiceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:InvoicerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LetterOfCreditReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:NextInvoiceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PayerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PaymentApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Element 'ram:PaymentCurrencyCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ProFormaInvoiceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedAdvancePayment' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - Element 'ram:ActualAmount' must occur exactly 1 times. - - Element 'ram:CategoryTradeTax' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:Description' may occur at maximum 1 times. - - Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. - - - - - - Element 'ram:ApplicableTradePaymentDiscountTerms' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradePaymentPenaltyTerms' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:FromEventCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstructionTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:PartialPaymentAmount' is marked as not used in the given context. - - - - - - Element 'ram:PartialPaymentPercent' is marked as not used in the given context. - - - - - - Element 'ram:PayeeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PaymentMeansID' is marked as not used in the given context. - - - - - - Element 'ram:SettlementPeriodMeasure' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. - - Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. - - Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. - - Element 'ram:TaxTotalAmount' may occur at maximum 2 times. - - Element 'ram:RoundingAmount' may occur at maximum 1 times. - - Element 'ram:GrandTotalAmount' must occur exactly 1 times. - - Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. - - Element 'ram:DuePayableAmount' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:ProductValueExcludingTobaccoTaxInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:RetailValueExcludingTaxInformationAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute '@currencyID' is required in this context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - Value of '@currencyID' is not allowed. - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalDepositFeeInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalDiscountAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:Information' may occur at maximum 1 times. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CreditAvailableAmount' is marked as not used in the given context. - - - - - - Element 'ram:CreditLimitAmount' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:ExpiryDate' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:InterestRatePercent' is marked as not used in the given context. - - - - - - Element 'ram:IssuingCompanyName' is marked as not used in the given context. - - - - - - Element 'ram:MicrochipIndicator' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ValidFromDateTime' is marked as not used in the given context. - - - - - - Element 'ram:VerificationNumeric' is marked as not used in the given context. - - - - - - Element 'ram:GuaranteeMethodCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:BICID' must occur exactly 1 times. - - - - - - Element 'ram:AustralianBSBID' is marked as not used in the given context. - - - - - - Element 'ram:AustrianBankleitzahlID' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CHIPSParticipantID' is marked as not used in the given context. - - - - - - Element 'ram:CHIPSUniversalID' is marked as not used in the given context. - - - - - - Element 'ram:CanadianPaymentsAssociationID' is marked as not used in the given context. - - - - - - Element 'ram:ClearingSystemName' is marked as not used in the given context. - - - - - - Element 'ram:FedwireRoutingNumberID' is marked as not used in the given context. - - - - - - Element 'ram:GermanBankleitzahlID' is marked as not used in the given context. - - - - - - Element 'ram:HellenicBankID' is marked as not used in the given context. - - - - - - Element 'ram:HongKongBankID' is marked as not used in the given context. - - - - - - Element 'ram:IndianFinancialSystemID' is marked as not used in the given context. - - - - - - Element 'ram:IrishNSCID' is marked as not used in the given context. - - - - - - Element 'ram:ItalianDomesticID' is marked as not used in the given context. - - - - - - Element 'ram:JapanFinancialInstitutionCommonID' is marked as not used in the given context. - - - - - - Element 'ram:LocationFinancialInstitutionAddress' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:NewZealandNCCID' is marked as not used in the given context. - - - - - - Element 'ram:PolishNationalClearingID' is marked as not used in the given context. - - - - - - Element 'ram:PortugueseNCCID' is marked as not used in the given context. - - - - - - Element 'ram:RussianCentralBankID' is marked as not used in the given context. - - - - - - Element 'ram:SICID' is marked as not used in the given context. - - - - - - Element 'ram:SouthAfricanNCCID' is marked as not used in the given context. - - - - - - Element 'ram:SpanishDomesticInterbankingID' is marked as not used in the given context. - - - - - - Element 'ram:SubDivisionBranchFinancialInstitution' is marked as not used in the given context. - - - - - - Element 'ram:SwissBCID' is marked as not used in the given context. - - - - - - Element 'ram:UKSortCodeID' is marked as not used in the given context. - - - - - - Element 'ram:IBANID' must occur exactly 1 times. - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ProprietaryID' is marked as not used in the given context. - - - - - - Element 'ram:PayerSpecifiedDebtorFinancialInstitution' is marked as not used in the given context. - - - - - - Element 'ram:PaymentChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:PaymentMethodCode' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:TaxApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UltimatePayeeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. - - Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. - - Element 'ram:SpecifiedLineTradeDelivery' must occur exactly 1 times. - - - - - - Element 'ram:LineID' must occur exactly 1 times. - - Element 'ram:IncludedNote' may occur at maximum 1 times. - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - Element 'ram:ContentCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - Element 'ram:SubjectCode' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LineStatusCode' is marked as not used in the given context. - - - - - - Element 'ram:LineStatusReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:ParentLineID' is marked as not used in the given context. - - - - - - Element 'ram:DescriptionCode' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSubordinateTradeLineItem' is marked as not used in the given context. - - - - - - Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' is marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:BuyerReference' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ContractReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ChargeAmount' must occur exactly 1 times. - - Element 'ram:AppliedTradeAllowanceCharge' may occur at maximum 1 times. - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:CalculationPercent' is marked as not used in the given context. - - - - - - Element 'ram:CategoryTradeTax' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Reason' is marked as not used in the given context. - - - - - - Element 'ram:ReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:ChangeReason' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:DeliveryTradeLocation' is marked as not used in the given context. - - - - - - Element 'ram:IncludedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:MaximumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:MinimumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:OrderUnitConversionFactorNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TradeComparisonReferencePrice' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ValiditySpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSpecifiedMarketplace' is marked as not used in the given context. - - - - - - Element 'ram:ItemBuyerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ItemSellerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ChargeAmount' must occur exactly 1 times. - - - - - - Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:ChangeReason' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:DeliveryTradeLocation' is marked as not used in the given context. - - - - - - Element 'ram:IncludedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:MaximumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:MinimumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:OrderUnitConversionFactorNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TradeComparisonReferencePrice' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ValiditySpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:BilledQuantity' must occur exactly 1 times. - - - - - - Element 'ram:ActualDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Attribute '@unitCode' is required in this context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:ChargeFreeQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DespatchAdviceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DespatchedQuantity' is marked as not used in the given context. - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSupplyChainPackaging' is marked as not used in the given context. - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:PackageQuantity' is marked as not used in the given context. - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PerPackageUnitQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ProductUnitQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ReceivedQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ReceivingAdviceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - Element 'ram:RequestedDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:RequestedQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ShipToTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDeliveryAdjustment' is marked as not used in the given context. - - - - - - Element 'ram:TheoreticalWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradeTax' must occur exactly 1 times. - - Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. - - Element 'ram:AdditionalReferencedDocument' may occur at maximum 1 times. - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:DiscountIndicator' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:PaymentReference' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:CategoryTradeTax' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradePaymentTerms' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:ChargeTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:GrandTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:ProductWeightLossInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:TaxTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:TotalAdjustmentAmount' is marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - Element 'ram:AdditionalReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableMaterialGoodsCharacteristic' is marked as not used in the given context. - - - - - - Element 'ram:Description' must occur exactly 1 times. - - Element 'ram:Value' must occur exactly 1 times. - - - - - - Element 'ram:ApplicableProductCharacteristicCondition' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableReferencedStandard' is marked as not used in the given context. - - - - - - Element 'ram:ContentTypeCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:MeasurementMethodCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ValueCode' is marked as not used in the given context. - - - - - - Element 'ram:ValueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ValueIndicator' is marked as not used in the given context. - - - - - - Element 'ram:ValueMeasure' is marked as not used in the given context. - - - - - - Element 'ram:ValueSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:AreaDensityMeasure' is marked as not used in the given context. - - - - - - Element 'ram:BrandName' is marked as not used in the given context. - - - - - - Element 'ram:BrandOwnerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CertificationEvidenceReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ColourCode' is marked as not used in the given context. - - - - - - Element 'ram:ColourDescription' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ApplicableReferencedStandard' is marked as not used in the given context. - - - - - - - Value of 'ram:ClassCode' is not allowed. - - Attribute '@listID' is required in this context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - Value of '@listID' is not allowed. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:ClassName' is marked as not used in the given context. - - - - - - Element 'ram:ClassProductCharacteristic' is marked as not used in the given context. - - - - - - Element 'ram:SubClassCode' is marked as not used in the given context. - - - - - - Element 'ram:SystemID' is marked as not used in the given context. - - - - - - Element 'ram:SystemName' is marked as not used in the given context. - - - - - - Element 'ram:Designation' is marked as not used in the given context. - - - - - - Element 'ram:DrainedNetWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:EndItemName' is marked as not used in the given context. - - - - - - Element 'ram:EndItemTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:FormattedCancellationAnnouncedLaunchDateTime' is marked as not used in the given context. - - - - - - Element 'ram:FormattedLatestProductDataChangeDateTime' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:IncludedReferencedProduct' is marked as not used in the given context. - - - - - - Element 'ram:IndividualTradeProductInstance' is marked as not used in the given context. - - - - - - Element 'ram:InformationNote' is marked as not used in the given context. - - - - - - Element 'ram:InspectionReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:LegalRightsOwnerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LinearSpatialDimension' is marked as not used in the given context. - - - - - - Element 'ram:MSDSReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ManufacturerAssignedID' is marked as not used in the given context. - - - - - - Element 'ram:ManufacturerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:MaximumLinearSpatialDimension' is marked as not used in the given context. - - - - - - Element 'ram:MinimumLinearSpatialDimension' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:SubordinateTradeCountrySubDivision' is marked as not used in the given context. - - - - - - Element 'ram:PresentationSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:ProductGroupID' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SubBrandName' is marked as not used in the given context. - - - - - - Element 'ram:TradeName' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UseDescription' is marked as not used in the given context. - - - - - - Element 'ram:VariableMeasureIndicator' is marked as not used in the given context. - - - - - - Element 'rsm:ValuationBreakdownStatement' is marked as not used in the given context. - - - diff --git a/src/zugferd2/Schema/EN16931/_XSLT_EN16931/FACTUR-X_1.0.07_EN16931.xslt b/src/zugferd2/Schema/EN16931/_XSLT_EN16931/FACTUR-X_1.0.07_EN16931.xslt new file mode 100644 index 00000000..d80cb5e1 --- /dev/null +++ b/src/zugferd2/Schema/EN16931/_XSLT_EN16931/FACTUR-X_1.0.07_EN16931.xslt @@ -0,0 +1,16299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + *: + + [namespace-uri()=' + + '] + + + + [ + + ] + + + + / + + @ + + + @*[local-name()=' + + ' and namespace-uri()=' + + '] + + + + + + + + + / + + + [ + + ] + + + + /@ + + + + + + + + / + + + [ + + ] + + + + /@ + + + + + + + + + + + + + + + + + + + + + + + + . + + + + +U + + U + + + + U. + + n + + + + U. + + _ + + _ + + + + + + + + +   +   +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Schema for Factur-X; 1.0.07; EN16931-COMPLIANT (FULLY) + + + + + + + + + + + + + + + + + + [BR-52]-Each Additional supporting document (BG-24) shall contain a Supporting document reference (BT-122). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-45]-Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). + + + + + + + + + + + + + + [BR-46]-Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). + + + + + + + + + + + + + + [BR-47]-Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). + + + + + + + + + + + + + + [BR-48]-Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. + + + + + + + + + + + + + + [BR-CO-03]-Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. + + + + + + + + + + + + + + [BR-CO-17]-VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. + + + + + + + + + + + + + + [BR-DEC-19]-The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. + + + + + + + + + + + + + + [BR-DEC-20]-The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amount (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Zero rated". + + + + + + + + + + + + + + [BR-Z-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). + + + + + + + + + + + + + + [BR-Z-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-S-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + [BR-S-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "Standard rated", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "Standard rated" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-29]-If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). + + + + + + + + + + + + + + [BR-CO-19]-If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-31]-Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). + + + + + + + + + + + + + + [BR-32]-Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). + + + + + + + + + + + + + + [BR-33]-Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). + + + + + + + + + + + + + + [BR-CO-05]-Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. + + + + + + + + + + + + + + [BR-CO-21]-Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. + + + + + + + + + + + + + + [BR-DEC-01]-The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. + + + + + + + + + + + + + + [BR-DEC-02]-The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-36]-Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). + + + + + + + + + + + + + + [BR-37]-Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). + + + + + + + + + + + + + + [BR-38]-Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). + + + + + + + + + + + + + + [BR-CO-06]-Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. + + + + + + + + + + + + + + [BR-CO-22]-Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. + + + + + + + + + + + + + + [BR-DEC-05]-The allowed maximum number of decimals for the Document level charge amount (BT-99) is 2. + + + + + + + + + + + + + + [BR-DEC-06]-The allowed maximum number of decimals for the Document level charge base amount (BT-100) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-54]-Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-51]-In accordance with card payments security standards an invoice should never include a full card primary account number (BT-87). At the moment PCI Security Standards Council has defined that the first 6 digits and last 4 digits are the maximum number of digits to be shown. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-21]-Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). + + + + + + + + + + + + + + [BR-22]-Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). + + + + + + + + + + + + + + [BR-23]-An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). + + + + + + + + + + + + + + [BR-24]-Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). + + + + + + + + + + + + + + [BR-25]-Each Invoice line (BG-25) shall contain the Item name (BT-153). + + + + + + + + + + + + + + [BR-26]-Each Invoice line (BG-25) shall contain the Item net price (BT-146). + + + + + + + + + + + + + + [BR-27]-The Item net price (BT-146) shall NOT be negative. + + + + + + + + + + + + + + [BR-28]-The Item gross price (BT-148) shall NOT be negative. + + + + + + + + + + + + + + [BR-64]-The Item standard identifier (BT-157) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-65]-The Item classification identifier (BT-158) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-CO-04]-Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). + + + + + + + + + + + + + + [BR-DEC-23]-The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-17]-The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-18]-The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-19]-The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-20]-The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-56]-Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-26]-In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-30]-If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). + + + + + + + + + + + + + + [BR-CO-20]-If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-42]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-41]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). + + + + + + + + + + + + + + [BR-CO-07]-Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. + + + + + + + + + + + + + + [BR-CO-23]-Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. + + + + + + + + + + + + + + [BR-DEC-24]-The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. + + + + + + + + + + + + + + [BR-DEC-25]-The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-43]-Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). + + + + + + + + + + + + + + [BR-44]-Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). + + + + + + + + + + + + + + [BR-CO-08]-Invoice line charge reason code (BT-145) and Invoice line charge reason (BT-144) shall indicate the same type of charge reason. + + + + + + + + + + + + + + [BR-CO-24]-Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. + + + + + + + + + + + + + + [BR-DEC-27]-The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. + + + + + + + + + + + + + + [BR-DEC-28]-The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-09]-The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-66]-Each Specified Trade Allowance Charge (BG-20)(BG-21) shall contain a Charge Indicator. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + + + + + + + + + + + + + [BR-AE-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-E-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-G-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-IC-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AF-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AG-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-O-06]-A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-S-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-Z-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + + + + + + + + + + + + + [BR-AE-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-E-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-G-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-IC-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AF-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AG-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-O-07]-A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-S-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-04]-An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-Z-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-10]-Sum of Invoice line net amount (BT-106) = Σ Invoice line net amount (BT-131). + + + + + + + + + + + + + + [BR-12]-An Invoice shall have the Sum of Invoice line net amount (BT-106). + + + + + + + + + + + + + + [BR-13]-An Invoice shall have the Invoice total amount without VAT (BT-109). + + + + + + + + + + + + + + [BR-14]-An Invoice shall have the Invoice total amount with VAT (BT-112). + + + + + + + + + + + + + + [BR-15]-An Invoice shall have the Amount due for payment (BT-115). + + + + + + + + + + + + + + [BR-CO-11]-Sum of allowances on document level (BT-107) = Σ Document level allowance amount (BT-92). + + + + + + + + + + + + + + [BR-CO-12]-Sum of charges on document level (BT-108) = Σ Document level charge amount (BT-99). + + + + + + + + + + + + + + [BR-CO-13]-Invoice total amount without VAT (BT-109) = Σ Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). + + + + + + + + + + + + + + [BR-CO-15]-Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). + + + + + + + + + + + + + + [BR-CO-16]-Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). + + + + + + + + + + + + + + [BR-DEC-09]-The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. + + + + + + + + + + + + + + [BR-DEC-10]-The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. + + + + + + + + + + + + + + [BR-DEC-11]-The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. + + + + + + + + + + + + + + [BR-DEC-12]-The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. + + + + + + + + + + + + + + [BR-DEC-13]-The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. + + + + + + + + + + + + + + [BR-DEC-14]-The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. + + + + + + + + + + + + + + [BR-DEC-15]-The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. + + + + + + + + + + + + + + [BR-DEC-16]-The allowed maximum number of decimals for the Paid amount (BT-113) is 2. + + + + + + + + + + + + + + [BR-DEC-17]-The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. + + + + + + + + + + + + + + [BR-DEC-18]-The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. + + + + + + + + + + + + + + [BR-53]-If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-14]-Invoice total VAT amount (BT-110) = Σ VAT category tax amount (BT-117). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-49]-A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). + + + + + + + + + + + + + + [BR-CO-27]-Either the IBAN or a Proprietary ID (BT-84) shall be used. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-50]-A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. + + + + + + + + + + + + + + [BR-61]-If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-18]-An Invoice shall at least have one VAT breakdown group (BG-23). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Reverse charge". + + + + + + + + + + + + + + [BR-AE-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" shall be 0 (zero). + + + + + + + + + + + + + + [BR-AE-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Exempt from VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Exempt from VAT". + + + + + + + + + + + + + + [BR-E-09]-The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). + + + + + + + + + + + + + + [BR-E-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Export outside the EU". + + + + + + + + + + + + + + [BR-G-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" shall be 0 (zero). + + + + + + + + + + + + + + [BR-G-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Intra-community supply". + + + + + + + + + + + + + + [BR-IC-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" shall be 0 (zero). + + + + + + + + + + + + + + [BR-IC-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). + + + + + + + + + + + + + + [BR-IC-11]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. + + + + + + + + + + + + + + [BR-IC-12]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IGIC", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IGIC" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AF-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AF-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IPSI", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IPSI" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AG-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AG-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-08]-In a VAT breakdown (BG-23) where the VAT category code (BT-118) is " Not subject to VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Not subject to VAT". + + + + + + + + + + + + + + [BR-O-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Not subject to VAT" shall be 0 (zero). + + + + + + + + + + + + + + [BR-O-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). + + + + + + + + + + + + + + [BR-O-11]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). + + + + + + + + + + + + + + [BR-O-12]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is not "Not subject to VAT". + + + + + + + + + + + + + + [BR-O-13]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". + + + + + + + + + + + + + + [BR-O-14]-An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + + + + + + + + + + + + + [BR-AE-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-E-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-G-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-IC-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AF-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be greater than 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AG-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-46). + + + + + + + + + + + + + + [BR-O-05]-An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-S-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-02]-An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-Z-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-16]-An Invoice shall have at least one Invoice line (BG-25). + + + + + + + + + + + + + + [BR-CO-25]-In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. + + + + + + + + + + + + + + [BR-01]-An Invoice shall have a Specification identifier (BT-24). + + + + + + + + + + + + + + [BR-02]-An Invoice shall have an Invoice number (BT-1). + + + + + + + + + + + + + + [BR-03]-An Invoice shall have an Invoice issue date (BT-2). + + + + + + + + + + + + + + [BR-04]-An Invoice shall have an Invoice type code (BT-3). + + + + + + + + + + + + + + [BR-05]-An Invoice shall have an Invoice currency code (BT-5). + + + + + + + + + + + + + + [BR-06]-An Invoice shall contain the Seller name (BT-27). + + + + + + + + + + + + + + [BR-07]-An Invoice shall contain the Buyer name (BT-44). + + + + + + + + + + + + + + [BR-08]-An Invoice shall contain the Seller postal address (BG-5). + + + + + + + + + + + + + + [BR-09]-The Seller postal address (BG-5) shall contain a Seller country code (BT-40). + + + + + + + + + + + + + + [BR-10]-An Invoice shall contain the Buyer postal address (BG-8). + + + + + + + + + + + + + + [BR-11]-The Buyer postal address shall contain a Buyer country code (BT-55). + + + + + + + + + + + + + + [BR-62]-The Seller electronic address (BT-34) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-63]-The Buyer electronic address (BT-49) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-S-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Standard rated" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". + + + + + + + + + + + + + + [BR-Z-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Zero rated" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". + + + + + + + + + + + + + + [BR-E-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Exempt from VAT” shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". + + + + + + + + + + + + + + [BR-AE-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Reverse charge" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". + + + + + + + + + + + + + + [BR-IC-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Intra-community supply" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". + + + + + + + + + + + + + + [BR-G-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Export outside the EU" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". + + + + + + + + + + + + + + [BR-O-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Not subject to VAT" shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". + + + + + + + + + + + + + + [BR-AF-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IGIC" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". + + + + + + + + + + + + + + [BR-AG-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IPSI" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". + + + + + + + + + + + + + + [BR-B-01]-An Invoice where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment” shall be a domestic Italian invoice. + + + + + + + + + + + + + + [BR-B-02]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment" shall not contain an invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated”. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Content' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SubjectCode' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:SubjectCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SellerTradeParty' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:BuyerTradeParty' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:AdditionalReferencedDocument[ not(ram:TypeCode="916") and not(ram:TypeCode="50") and not(ram:TypeCode="130")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Name' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@mimeCode' is required in this context. + + + + + + + + + + + + + + Attribute '@filename' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@mimeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:DefinedTradeContact' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DefinedTradeContact' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:GlobalID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:DefinedTradeContact' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="VA"]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="FC"]' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ not(ram:ID/@schemeID="VA") and not(ram:ID/@schemeID="FC")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-57]-Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:OccurrenceDateTime' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DefinedTradeContact' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedLegalOrganization' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:PaymentReference' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ApplicableTradeTax' must occur at least 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradePaymentTerms' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:BasisAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:DueDateTypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:InvoiceCurrencyCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-55]-Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GlobalID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DefinedTradeContact' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TradingBusinessName' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:InvoiceCurrencyCode]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:TaxCurrencyCode]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:RoundingAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GrandTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:DuePayableAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[ not(@currencyID=../../ram:InvoiceCurrencyCode) and not(@currencyID=../../ram:TaxCurrencyCode)]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@currencyID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@currencyID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Information' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:PayeePartyCreditorFinancialAccount' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BICID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IBANID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TaxCurrencyCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AssociatedDocumentLineDocument' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedLineTradeDelivery' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:IncludedNote' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Content' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SubjectCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element variant 'ram:AppliedTradeAllowanceCharge[ram:ChargeIndicator/udt:Indicator="false"]' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:AppliedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculationPercent' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Reason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BilledQuantity' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ApplicableTradeTax' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:AdditionalReferencedDocument' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Value' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@listID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@listID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + diff --git a/src/zugferd2/Schema/EN16931/_XSLT_EN16931/FACTUR-X_1.0.07_EN16931_codedb.xml b/src/zugferd2/Schema/EN16931/_XSLT_EN16931/FACTUR-X_1.0.07_EN16931_codedb.xml new file mode 100644 index 00000000..d0ad2b33 --- /dev/null +++ b/src/zugferd2/Schema/EN16931/_XSLT_EN16931/FACTUR-X_1.0.07_EN16931_codedb.xml @@ -0,0 +1,5812 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd b/src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd deleted file mode 100644 index 6d42751b..00000000 --- a/src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd +++ /dev/null @@ -1,2575 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED.sch b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED.sch new file mode 100644 index 00000000..e2362ec4 --- /dev/null +++ b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED.sch @@ -0,0 +1,7069 @@ + + + Schema for Factur-X; 1.0.07; EN16931-CONFORMANT-EXTENDED + + + + + + + + [BR-52]-Each Additional supporting document (BG-24) shall contain a Supporting document reference (BT-122). + + + + + + [BR-45]-Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). + + [BR-46]-Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). + + [BR-47]-Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). + + [BR-48]-Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. + + [BR-CO-03]-Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. + + [BR-DEC-19]-The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. + + [BR-DEC-20]-The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. + + + + + + [BR-FXEXT-Z-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “Z” ("Zero Rated"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charge amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is "Zero Rated" (Z). + + [BR-Z-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). + + [BR-Z-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-S-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + [BR-FXEXT-S-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is equal to “S” ("Standard rated"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is "Standard rated" (S) and the VAT rate (BT-152, BT-96, BT-103, BT-X-274) equals the VAT category rate (BT-119). + + + + + + [BR-FXEXT-S-09]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is equal to “S” ("Standard rated"), Absolute Value of (VAT category tax amount (BT-117) - VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119)/100) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Standard rated " (S), and the VAT rate (BT-152, BT-96, BT-103, BT-X-274) equals the VAT category rate (BT-119). + + + + + + [BR-29]-If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). + + [BR-CO-19]-If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. + + + + + + [BR-31]-Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). + + [BR-32]-Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). + + [BR-33]-Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). + + [BR-CO-05]-Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. + + [BR-CO-21]-Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. + + [BR-DEC-01]-The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. + + [BR-DEC-02]-The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. + + + + + + [BR-36]-Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). + + [BR-37]-Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). + + [BR-38]-Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). + + [BR-CO-06]-Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. + + [BR-CO-22]-Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. + + [BR-DEC-05]-The allowed maximum number of decimals for the Document level charge amount (BT-99) is 2. + + [BR-DEC-06]-The allowed maximum number of decimals for the Document level charge base amount (BT-100) is 2. + + + + + + [BR-54]-Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). + + + + + + [BR-51]-In accordance with card payments security standards an invoice should never include a full card primary account number (BT-87). At the moment PCI Security Standards Council has defined that the first 6 digits and last 4 digits are the maximum number of digits to be shown. + + + + + + [BR-FXEXT-02]-If the invoice line item free text subject code (BT-X-10) is specified, either the coded invoice line item free text (BT-X-9) or the invoice line item free text (BT-127) must be specified, or both. If both BT-X-9 and BT-127 are specified, both must have the same meaning. + + + + + + [BR-21]-Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). + + [BR-22]-Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). + + [BR-23]-An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). + + [BR-24]-Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). + + [BR-25]-Each Invoice line (BG-25) shall contain the Item name (BT-153). + + [BR-26]-Each Invoice line (BG-25) shall contain the Item net price (BT-146). + + [BR-27]-The Item net price (BT-146) shall NOT be negative. + + [BR-28]-The Item gross price (BT-148) shall NOT be negative. + + [BR-64]-The Item standard identifier (BT-157) shall have a Scheme identifier. + + [BR-65]-The Item classification identifier (BT-158) shall have a Scheme identifier. + + [BR-CO-04]-Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). + + [BR-DEC-23]-The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. + + + + + + [BR-17]-The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). + + + + + + [BR-18]-The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-19]-The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-20]-The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). + + [BR-56]-Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). + + + + + + [BR-CO-26]-In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. + + + + + + [BR-30]-If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). + + [BR-CO-20]-If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. + + + + + + [BR-42]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). + + + + + + [BR-41]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). + + [BR-CO-07]-Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. + + [BR-CO-23]-Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. + + [BR-DEC-24]-The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. + + [BR-DEC-25]-The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. + + + + + + [BR-43]-Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). + + [BR-44]-Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). + + [BR-CO-08]-Invoice line charge reason code (BT-145) and Invoice line charge reason (BT-144) shall indicate the same type of charge reason. + + [BR-CO-24]-Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. + + [BR-DEC-27]-The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. + + [BR-DEC-28]-The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. + + + + + + [BR-CO-09]-The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. + + + + + + [BR-FXEXT-03]-Only a VAT registration ID may be provided for the following business partners: the line level Ship-To (BT-X-66), the line level Ultimate-Ship-To (BT-X-84), the Sales-Agent (BT-X-340), the Buyer-Tax-Representative (BT-X-367), the Product-Enduser (BT-X-144), the Buyer-Agent (BT-X-411), the document level Ship-To (BT-X-161), the document level Ultimate-Ship-To (BT-X-180), the Ship-From (BT-X-199), the Invoicer (BT-X-223), the Invoicee (BT-X-242), the document level Payee (BT-X-257), the Payer (BT-X-481), or the payment-term-specific Payee (BT-X-509). + + + + + + [BR-66]-Each Specified Trade Allowance Charge (BG-20)(BG-21) shall contain a Charge Indicator. + + + + + + [BR-AE-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + [BR-AE-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-E-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-E-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-G-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + [BR-G-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-IC-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + [BR-IC-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-AF-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AF-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + [BR-AG-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AG-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + [BR-O-06]-A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). + + + + + + [BR-S-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-S-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. + + + + + + [BR-Z-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-Z-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + [BR-AE-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + [BR-AE-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-E-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-E-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-G-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + [BR-G-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-IC-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + [BR-IC-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-AF-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AF-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + [BR-AG-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AG-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + [BR-O-07]-A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). + + + + + + [BR-S-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-S-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. + + + + + + [BR-Z-04]-An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-Z-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + [BR-FXEXT-CO-10]-Absolute Value of (Sum of Invoice line net amount (BT-106) - Σ Invoice line net amounts (BT-131))<= 0,01 * Number of line net amounts (BT-131). + + [BR-12]-An Invoice shall have the Sum of Invoice line net amount (BT-106). + + [BR-13]-An Invoice shall have the Invoice total amount without VAT (BT-109). + + [BR-14]-An Invoice shall have the Invoice total amount with VAT (BT-112). + + [BR-15]-An Invoice shall have the Amount due for payment (BT-115). + + [BR-FXEXT-CO-11]-Absolute Value of (Sum of allowances on document level (BT-107) - Σ Document level allowance amounts (BT-92))<= 0,01 * Number of Document level allowance amounts (BT-92). + + [BR-FXEXT-CO-12]-Absolute Value of (Sum of charges on document level (BT-108) - Σ Document level charge amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272))<= 0,01 * (Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)). + + [BR-FXEXT-CO-13]-Absolute Value of (Invoice total amount without VAT (BT-109) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charge amounts (BT-99)) <= 0,01 * (Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99)). + + [BR-FXEXT-CO-15]-If Invoice Total VAT amount (BT-110) ,where currency (BT-110-0) is equal to BT-5, is present, then the Absolute Value of (Invoice total amount with VAT (BT-112) - Invoice total amount without VAT (BT-109) - Invoice total VAT amount (BT-110)) <= 0,01 * (Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charges amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272). Else, Invoice total amount with VAT (BT-112) is equal to Invoice total amount without VAT (BT-109). + + [BR-CO-16]-Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). + + [BR-DEC-09]-The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. + + [BR-DEC-10]-The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. + + [BR-DEC-11]-The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. + + [BR-DEC-12]-The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. + + [BR-DEC-13]-The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. + + [BR-DEC-14]-The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. + + [BR-DEC-15]-The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. + + [BR-DEC-16]-The allowed maximum number of decimals for the Paid amount (BT-113) is 2. + + [BR-DEC-17]-The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. + + [BR-DEC-18]-The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. + + [BR-53]-If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. + + + + + + [BR-CO-14]-Invoice total VAT amount (BT-110) = Σ VAT category tax amount (BT-117). + + + + + + [BR-49]-A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). + + [BR-CO-27]-Either the IBAN or a Proprietary ID (BT-84) shall be used. + + + + + + [BR-50]-A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. + + [BR-61]-If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. + + + + + + [BR-CO-18]-An Invoice shall at least have one VAT breakdown group (BG-23). + + + + + + [BR-FXEXT-AE-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “AE” ("Reverse Charge"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charge amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is "Reversed Charge" (AE). + + [BR-AE-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" shall be 0 (zero). + + [BR-AE-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). + + + + + + [BR-FXEXT-E-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “E” ("Exempt from VAT"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Exempt from VAT" (E). + + [BR-E-09]-The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). + + [BR-E-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). + + + + + + [BR-FXEXT-G-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “G” ("Export outside the EU"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Export outside the EU " (G). + + [BR-G-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" shall be 0 (zero). + + [BR-G-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). + + + + + + [BR-FXEXT-IC-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “K” ("Intra-community supply"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Intra-community supply " (K) + + [BR-IC-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" shall be 0 (zero). + + [BR-IC-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). + + [BR-IC-11]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. + + [BR-IC-12]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. + + + + + + [BR-FXEXT-AF-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “L” ("Canary Islands tax"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Canary Islands tax " (L). + + [BR-AF-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + [BR-AF-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-FXEXT-AG-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “M” ("Ceuta and Mellita tax"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Ceuta and Mellita tax " (M). + + [BR-AG-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + [BR-AG-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + [BR-FXEXT-O-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “O” ("Not subject to VAT"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Not subject to VAT " (O). + + [BR-O-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Not subject to VAT" shall be 0 (zero). + + [BR-O-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). + + + + + + [BR-AE-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + [BR-AE-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-E-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-E-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-G-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + [BR-G-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-IC-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + [BR-IC-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-AF-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AF-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be greater than 0 (zero). + + + + + + [BR-AG-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-AG-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. + + + + + + [BR-O-05]-An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). + + + + + + [BR-S-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-S-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. + + + + + + [BR-Z-02]-An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + [BR-Z-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + [BR-16]-An Invoice shall have at least one Invoice line (BG-25). + + [BR-CO-25]-In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. + + [BR-01]-An Invoice shall have a Specification identifier (BT-24). + + [BR-02]-An Invoice shall have an Invoice number (BT-1). + + [BR-03]-An Invoice shall have an Invoice issue date (BT-2). + + [BR-04]-An Invoice shall have an Invoice type code (BT-3). + + [BR-05]-An Invoice shall have an Invoice currency code (BT-5). + + [BR-06]-An Invoice shall contain the Seller name (BT-27). + + [BR-07]-An Invoice shall contain the Buyer name (BT-44). + + [BR-08]-An Invoice shall contain the Seller postal address (BG-5). + + [BR-09]-The Seller postal address (BG-5) shall contain a Seller country code (BT-40). + + [BR-10]-An Invoice shall contain the Buyer postal address (BG-8). + + [BR-11]-The Buyer postal address shall contain a Buyer country code (BT-55). + + [BR-62]-The Seller electronic address (BT-34) shall have a Scheme identifier. + + [BR-63]-The Buyer electronic address (BT-49) shall have a Scheme identifier. + + [BR-S-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Standard rated" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". + + [BR-Z-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Zero rated" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". + + [BR-E-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Exempt from VAT” shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". + + [BR-AE-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Reverse charge" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". + + [BR-IC-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Intra-community supply" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". + + [BR-G-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Export outside the EU" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". + + [BR-O-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Not subject to VAT" shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". + + [BR-AF-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IGIC" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". + + [BR-AG-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IPSI" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". + + [BR-B-01]-An Invoice where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment” shall be a domestic Italian invoice. + + [BR-B-02]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment" shall not contain an invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated”. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + Element 'ram:Name' may occur at maximum 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:LanguageID' may occur at maximum 1 times. + + + + + + Element 'ram:CompleteDateTime' must occur exactly 1 times. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Element 'ram:EndDateTime' is marked as not used in the given context. + + + + + + Element 'ram:StartDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Content' may occur at maximum 1 times. + + Element 'ram:SubjectCode' may occur at maximum 1 times. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of 'ram:SubjectCode' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + [BR-FXEXT-01]-If the Invoice Free Text subject Code (BT-21) is specified, either the coded message free text (BT-X-5) or the message free text (BT-22) must be specified, or both. If both BT-X-5 and BT-22 are specified, both must have the same meaning. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. + + Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. + + + + + + Element 'ram:SellerTradeParty' must occur exactly 1 times. + + Element 'ram:BuyerTradeParty' must occur exactly 1 times. + + + + + + Element variant 'ram:AdditionalReferencedDocument[ not(ram:TypeCode="916") and not(ram:TypeCode="50") and not(ram:TypeCode="130")]' is marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:Name' may occur at maximum 1 times. + + Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. + + + + + + Attribute '@mimeCode' is required in this context. + + Attribute '@filename' is required in this context. + + + + + + + Value of '@mimeCode' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:DeliveryTypeCode' must occur exactly 1 times. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:Description' may occur at maximum 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:Description' may occur at maximum 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="VA"]' may occur at maximum 1 times. + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="FC"]' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ not(ram:ID/@schemeID="VA") and not(ram:ID/@schemeID="FC")]' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + [BR-57]-Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). + + + + + + Element 'ram:OccurrenceDateTime' must occur exactly 1 times. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ModeCode' must occur exactly 1 times. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:PaymentReference' may occur at maximum 1 times. + + Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. + + Element 'ram:ApplicableTradeTax' must occur at least 1 times. + + Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:BasisAmount' must occur exactly 1 times. + + Element 'ram:LineTotalBasisAmount' may occur at maximum 1 times. + + Element 'ram:AllowanceChargeBasisAmount' may occur at maximum 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + Value of 'ram:DueDateTypeCode' is not allowed. + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + Element 'ram:CompleteDateTime' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + Value of 'ram:InvoiceCurrencyCode' is not allowed. + + + + + + [BR-55]-Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:IncludedTradeTax' must occur at least 1 times. + + Element 'ram:InvoiceSpecifiedReferencedDocument' may occur at maximum 1 times. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:Description' must occur exactly 1 times. + + Element 'ram:AppliedAmount' must occur exactly 1 times. + + Element 'ram:AppliedTradeTax' must occur at least 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + Element 'ram:RateApplicablePercent' must occur exactly 1 times. + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. + + Element 'ram:PartialPaymentAmount' may occur at maximum 1 times. + + Element 'ram:PayeeTradeParty' may occur at maximum 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute '@unitCode' is required in this context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. + + Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. + + Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:InvoiceCurrencyCode]' may occur at maximum 1 times. + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:TaxCurrencyCode]' may occur at maximum 1 times. + + Element 'ram:RoundingAmount' may occur at maximum 1 times. + + Element 'ram:GrandTotalAmount' must occur exactly 1 times. + + Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. + + Element 'ram:DuePayableAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element variant 'ram:TaxTotalAmount[ not(@currencyID=../../ram:InvoiceCurrencyCode) and not(@currencyID=../../ram:TaxCurrencyCode)]' is marked as not used in the given context. + + + + + + + Value of '@currencyID' is not allowed. + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + Value of '@currencyID' is not allowed. + + + + + + Attribute '@currencyID' is required in this context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:Information' may occur at maximum 1 times. + + Element 'ram:PayeePartyCreditorFinancialAccount' may occur at maximum 1 times. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:BICID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:IBANID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + + Value of 'ram:SourceCurrencyCode' is not allowed. + + + + + + + Value of 'ram:TargetCurrencyCode' is not allowed. + + + + + + + Value of 'ram:TaxCurrencyCode' is not allowed. + + + + + + Element 'ram:AssociatedDocumentLineDocument' must occur exactly 1 times. + + Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. + + Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. + + Element 'ram:SpecifiedLineTradeDelivery' must occur exactly 1 times. + + + + + + Element 'ram:LineID' must occur exactly 1 times. + + + + + + Element 'ram:Content' may occur at maximum 1 times. + + Element 'ram:SubjectCode' may occur at maximum 1 times. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of 'ram:SubjectCode' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:Name' may occur at maximum 1 times. + + Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. + + + + + + Attribute '@mimeCode' is required in this context. + + Attribute '@filename' is required in this context. + + + + + + + Value of '@mimeCode' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + + + + + Element variant 'ram:AppliedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:BasisQuantity' is marked as not used in the given context. + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:SequenceNumeric' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:BasisQuantity' is marked as not used in the given context. + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:SequenceNumeric' is marked as not used in the given context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:IncludedTradeTax' is marked as not used in the given context. + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + Element 'ram:IncludedTradeTax' may occur at maximum 1 times. + + + + + + Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + Element 'ram:RateApplicablePercent' must occur exactly 1 times. + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:BilledQuantity' must occur exactly 1 times. + + + + + + Element 'ram:OccurrenceDateTime' must occur exactly 1 times. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:RoleCode' may occur at maximum 1 times. + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:ApplicableTradeTax' must occur at least 1 times. + + Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. + + Element 'ram:InvoiceReferencedDocument' may occur at maximum 1 times. + + Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Element 'ram:CalculatedAmount' may occur at maximum 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:CompleteDateTime' is marked as not used in the given context. + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:BasisQuantity' is marked as not used in the given context. + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:SequenceNumeric' is marked as not used in the given context. + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:BasisQuantity' is marked as not used in the given context. + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + Element 'ram:SequenceNumeric' is marked as not used in the given context. + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. + + Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. + + Element 'ram:TaxTotalAmount' may occur at maximum 1 times. + + Element 'ram:GrandTotalAmount' may occur at maximum 1 times. + + Element 'ram:TotalAllowanceChargeAmount' may occur at maximum 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + Element 'ram:Description' must occur exactly 1 times. + + Element 'ram:Value' must occur exactly 1 times. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ClassName' may occur at maximum 1 times. + + + + + + Attribute '@listID' is required in this context. + + + + + + + Value of '@listID' is not allowed. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + Element 'ram:IndustryAssignedID' may occur at maximum 1 times. + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:Description' may occur at maximum 1 times. + + Element 'ram:UnitQuantity' may occur at maximum 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + Value of '@unitCode' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + diff --git a/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED.xsd b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED.xsd new file mode 100644 index 00000000..887366a6 --- /dev/null +++ b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED.xsd @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/EXTENDED/Schematron/FACTUR-X_EXTENDED_codedb.xml b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_codedb.xml similarity index 53% rename from src/zugferd2/Schema/EXTENDED/Schematron/FACTUR-X_EXTENDED_codedb.xml rename to src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_codedb.xml index b07b1c81..6f20669d 100644 --- a/src/zugferd2/Schema/EXTENDED/Schematron/FACTUR-X_EXTENDED_codedb.xml +++ b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_codedb.xml @@ -1,16 +1,23 @@ + + + + + + + @@ -18,8 +25,10 @@ + + @@ -37,17 +46,24 @@ + + + + + + + - + - + @@ -325,6 +341,15 @@ + + + + + + + + + @@ -354,7 +379,16 @@ + + + + + + + + + @@ -432,7 +466,7 @@ - + @@ -641,286 +675,511 @@ + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + - - - - - - - - - - - - - + + + - - - + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -936,15 +1195,10 @@ - - - - - @@ -989,7 +1243,6 @@ - @@ -1006,7 +1259,6 @@ - @@ -1033,25 +1285,12 @@ - - - - - - - - - - - - - @@ -1061,14 +1300,7 @@ - - - - - - - @@ -1100,12 +1332,10 @@ - - @@ -1137,12 +1367,7 @@ - - - - - @@ -1153,7 +1378,6 @@ - @@ -1167,7 +1391,6 @@ - @@ -1358,11 +1581,7 @@ - - - - @@ -1391,13 +1610,8 @@ - - - - - @@ -1409,7 +1623,6 @@ - @@ -1439,9 +1652,7 @@ - - @@ -1449,7 +1660,6 @@ - @@ -1771,8 +1981,6 @@ - - @@ -1849,7 +2057,6 @@ - @@ -1871,7 +2078,6 @@ - @@ -1880,15 +2086,12 @@ - - - @@ -1976,12 +2179,10 @@ - - @@ -2010,8 +2211,6 @@ - - @@ -2035,7 +2234,6 @@ - @@ -2485,12 +2683,8 @@ - - - - @@ -2504,7 +2698,6 @@ - @@ -2610,7 +2803,6 @@ - @@ -2653,7 +2845,6 @@ - @@ -2675,7 +2866,6 @@ - @@ -2710,7 +2900,6 @@ - @@ -2728,15 +2917,7 @@ - - - - - - - - @@ -3143,3906 +3324,1131 @@ + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + - - - - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + - + + + + + + + - + + - + + + + + + + + + - + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + - - - + + + + + + - - + + + + + + + + - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7251,8 +4657,25 @@ + + + + + + + + + + + + + + + + + - + @@ -7461,147 +4884,1108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -7731,7 +6115,7 @@ - + @@ -7782,15 +6166,127 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd new file mode 100644 index 00000000..6531a67f --- /dev/null +++ b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd similarity index 95% rename from src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd rename to src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd index fe25afe9..7e42a4f8 100644 --- a/src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd +++ b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd @@ -5,13 +5,14 @@ xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" targetNamespace="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" elementFormDefault="qualified"> - - + + + @@ -59,7 +60,7 @@ - + @@ -115,7 +116,7 @@ - + @@ -129,6 +130,7 @@ + @@ -166,7 +168,7 @@ - + @@ -177,7 +179,7 @@ - + @@ -207,7 +209,7 @@ - + @@ -279,7 +281,7 @@ - + @@ -307,7 +309,7 @@ - + @@ -334,7 +336,7 @@ - + @@ -386,8 +388,13 @@ + + + + + @@ -406,10 +413,10 @@ - + - + @@ -437,7 +444,7 @@ - + diff --git a/src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd similarity index 89% rename from src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd rename to src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd index 78e78a0d..fc6f3b2f 100644 --- a/src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd +++ b/src/zugferd2/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd @@ -2,8 +2,7 @@ + elementFormDefault="qualified"> @@ -23,7 +22,7 @@ - + @@ -56,7 +55,7 @@ - + @@ -68,7 +67,7 @@ - + @@ -85,7 +84,7 @@ - + diff --git a/src/zugferd2/Schema/EXTENDED/Schematron/FACTUR-X_EXTENDED.sch b/src/zugferd2/Schema/EXTENDED/Schematron/FACTUR-X_EXTENDED.sch deleted file mode 100644 index e8f3c5ff..00000000 --- a/src/zugferd2/Schema/EXTENDED/Schematron/FACTUR-X_EXTENDED.sch +++ /dev/null @@ -1,28384 +0,0 @@ - - - Schema for FACTUR-X; 1.0; EN16931-CONFORMANT-EXTENDED - - - - - - - - Each Additional supporting document (BG-24) shall contain a Supporting document reference (BT-122). - - - - - - Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). - - Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). - - Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). - - Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. - - - - VAT category tax amount (BT-117) = VAT category taxable amount (BT-116) x (VAT category rate (BT-119) / 100), rounded to two decimals. - - The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. - - The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. - - - - - - [BR-Z-08] - In a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amount (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Zero rated". - - [BR-Z-09] - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - [BR-S-09] - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Standard rated" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). - - If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. - - - - - - Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). - - Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). - - Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). - - - - Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. - - The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. - - The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. - - - - - - Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). - - Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). - - Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). - - - - Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. - - The allowed maximum number of decimals for the Document level charge amount (BT-92) is 2. - - The allowed maximum number of decimals for the Document level charge base amount (BT-93) is 2. - - - - - - Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). - - - - - - The last 4 to 6 digits of the Payment card primary account number (BT-87) shall be present if Payment card information (BG-18) is provided in the Invoice. - - - - - - Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). - - Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). - - An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). - - Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). - - Each Invoice line (BG-25) shall contain the Item name (BT-153). - - Each Invoice line (BG-25) shall contain the Item net price (BT-146). - - The Item net price (BT-146) shall NOT be negative. - - The Item gross price (BT-148) shall NOT be negative. - - The Item standard identifier (BT-157) shall have a Scheme identifier - - The Item classification identifier (BT-158) shall have a Scheme identifier - - - - An Invoice shall at least have one VAT breakdown group (BG-23). - - - - - - The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). - - - - - - The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). - - The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). - - Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). - - - - - - In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. - - - - - - If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). - - If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. - - - - - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). - - Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). - - - - Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. - - - - - - Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). - - Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). - - - - Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. - - - - - - - - - - - - [BR-AE-03] - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - [BR-AE-06] - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - [BR-E-03] - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-E-06] - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - [BR-G-03] - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - [BR-G-06] - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - [BR-IC-03] - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - [BR-IC-06] - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - [BR-IG-03] - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - - [BR-IG-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - [BR-IP-03] - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-IP-06] - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. - - - - - - [BR-O-03] - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - [BR-O-06] - A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). - - - - - - [BR-S-03] - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-S-06] - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. - - - - - - [BR-Z-03] - An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-Z-06] - In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). - - - - - - [BR-AE-04] - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - [BR-AE-07] - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - [BR-E-04] - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-E-07] - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - [BR-G-04] - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - [BR-G-07] - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - [BR-IC-04] - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - [BR-IC-07] - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - [BR-IG-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-IG-07] - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - [BR-IP-04] - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-IP-07] - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. - - - - - - [BR-O-04] - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - [BR-O-07] - A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). - - - - - - [BR-S-04] - An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-S-07] - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. - - - - - - [BR-Z-04] - An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-Z-07] - In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). - - - - - - An Invoice shall have the Sum of Invoice line net amount (BT-106). - - An Invoice shall have the Invoice total amount without VAT (BT-109). - - An Invoice shall have the Invoice total amount with VAT (BT-112). - - An Invoice shall have the Amount due for payment (BT-115). - - If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. - - Sum of Invoice line net amount (BT-106) = S Invoice line net amount (BT-131). - - Sum of allowances on document level (BT-107) = S Document level allowance amount (BT-92). - - Sum of charges on document level (BT-108) = S Document level charge amount (BT-99). - - Invoice total amount without VAT (BT-109) = S Invoice line net amount (BT-131) - Sum of allowances on document level (BT-107) + Sum of charges on document level (BT-108). - - Invoice total amount with VAT (BT-112) = Invoice total amount without VAT (BT-109) + Invoice total VAT amount (BT-110). - - Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). - - The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. - - The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. - - The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. - - The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. - - The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. - - The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. - - The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. - - The allowed maximum number of decimals for the Paid amount (BT-113) is 2. - - The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. - - The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. - - - - - - Invoice total VAT amount (BT-110) = S VAT category tax amount (BT-117). - - - - - - A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). - - - - - - A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. - - If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. - - - - - - [BR-AE-08] - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Reverse charge". - - - [BR-AE-09] - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" shall be 0 (zero). - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). - - - - - - [BR-E-08] - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Exempt from VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Exempt from VAT". - - [BR-E-09] - The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). - - - - - - [BR-G-08] - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Export outside the EU". - - [BR-G-09] - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" shall be 0 (zero). - - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). - - - - - - [BR-IC-08] - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Intra-community supply". - - [BR-IC-09] - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" shall be 0 (zero). - - A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. - - In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. - - - - - - [BR-IG-08] - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IGIC", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IGIC" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - [BR-IG-09] - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - [BR-IP-08] - For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is "IPSI", the VAT category taxable amount (BT-116) in a VAT breakdown (BG-23) shall equal the sum of Invoice line net amounts (BT-131) plus the sum of document level charge amounts (BT-99) minus the sum of document level allowance amounts (BT-92) where the VAT category code (BT-151, BT-102, BT-95) is "IPSI" and the VAT rate (BT-152, BT-103, BT-96) equals the VAT category rate (BT-119). - - [BR-IP-09] - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). - - - - - - [BR-O-08] - In a VAT breakdown (BG-23) where the VAT category code (BT-118) is " Not subject to VAT" the VAT category taxable amount (BT-116) shall equal the sum of Invoice line net amounts (BT-131) minus the sum of Document level allowance amounts (BT-92) plus the sum of Document level charge amounts (BT-99) where the VAT category codes (BT-151, BT-95, BT-102) are "Not subject to VAT". - - [BR-O-09] - The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Not subject to VAT" shall be 0 (zero). - - A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain other VAT breakdown groups (BG-23). - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is not "Not subject to VAT". - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level allowances (BG-20) where Document level allowance VAT category code (BT-95) is not "Not subject to VAT". - - An Invoice that contains a VAT breakdown group (BG-23) with a VAT category code (BT-118) "Not subject to VAT" shall not contain Document level charges (BG-21) where Document level charge VAT category code (BT-102) is not "Not subject to VAT". - - - - - - [BR-AE-02] - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). - - [BR-AE-05] - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - [BR-E-02] - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-E-05] - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - [BR-G-02] - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). - - [BR-G-05] - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - [BR-IC-02] - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). - - [BR-IC-05] - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - [BR-IG-02] - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-IG-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be greater than 0 (zero). - - - - - - [BR-IP-02] - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-IP-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. - - - - - - [BR-O-02] - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Not subject to VAT" shall not contain the Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) or the Buyer VAT identifier (BT-48). - - [BR-O-05]-An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). - - - - - - [BR-S-02] - An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-S-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. - - - - - - [BR-Z-02] - An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). - - [BR-Z-05] - In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). - - - - - - [BR-01] - An Invoice shall have a Specification identifier (BT-24). - - [BR-02] - An Invoice shall have an Invoice number (BT-1). - - [BR-03] - An Invoice shall have an Invoice issue date (BT-2). - - [BR-04] - An Invoice shall have an Invoice type code (BT-3). - - [BR-05] - An Invoice shall have an Invoice currency code (BT-5). - - [BR-06] - An Invoice shall contain the Seller name (BT-27). - - [BR-07] - An Invoice shall contain the Buyer name (BT-44). - - [BR-08] - An Invoice shall contain the Seller postal address (BG-5). - - [BR-09] - The Seller postal address (BG-5) shall contain a Seller country code (BT-40). - - An Invoice shall contain the Buyer postal address (BG-8). - - The Buyer postal address shall contain a Buyer country code (BT-55). - - The Seller electronic address (BT-34) shall have a Scheme identifier. - - The Buyer electronic address (BT-49) shall have a Scheme identifier. - - In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. - - [BR-S-01] - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Standard rated" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". - - [BR-Z-01] - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Zero rated" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". - - [BR-E-01] - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Exempt from VAT" shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". - - [BR-AE-01] - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Reverse charge" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". - - [BR-IC-01] - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Intra-community supply" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". - - [BR-G-01] - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Export outside the EU" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". - - [BR-O-01] - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Not subject to VAT" shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". - - [BR-IP-01] - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IPSI" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". - - [BR-IG-01] - An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IGIC" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". - - - - - - Element 'ram:Name' may occur at maximum 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - Element 'ram:CategoryCode' is marked as not used in the given context. - - - - - - Element 'ram:ControlRequirementIndicator' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:CompleteDateTime' must occur exactly 1 times. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - Element 'ram:EndDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - Element 'ram:StartDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - - Value of 'ram:SubjectCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:Purpose' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionDateTime' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:VersionID' is marked as not used in the given context. - - - - - - Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. - - Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. - - - - - - Element 'ram:ApplicationSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:BIMSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - Element 'ram:MessageStandardSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:ScenarioSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTransactionID' is marked as not used in the given context. - - - - - - Element 'ram:SubsetSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. - - - - - - Element 'ram:SellerTradeParty' must occur exactly 1 times. - - Element 'ram:BuyerTradeParty' must occur exactly 1 times. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:Name' may occur at maximum 1 times. - - Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute '@mimeCode' is required in this context. - - Attribute '@filename' is required in this context. - - - - - - Attribute @characterSetCode' marked as not used in the given context. - - - - - - Attribute @encodingCode' marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - Value of '@mimeCode' is not allowed. - - - - - - Attribute @uri' marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:DeliveryTypeCode' must occur exactly 1 times. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:RelevantTradeLocation' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 2 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:BuyerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:Description' may occur at maximum 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 2 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:OrderResponseReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PriceListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseConditionsReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:Reference' is marked as not used in the given context. - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 2 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SellerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:Description' may occur at maximum 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 2 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:SupplyInstructionReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DescriptionBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:EarliestOccurrenceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LatestOccurrenceDateTime' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:OccurrenceLogisticsLocation' is marked as not used in the given context. - - - - - - Element 'ram:OccurrenceSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PreviousDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:AssociatedInvoiceAmount' is marked as not used in the given context. - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:CarrierTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ConsigneeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ConsignorTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:CustomsExportAgentTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:CustomsImportAgentTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:DeclaredValueForCustomsAmount' is marked as not used in the given context. - - - - - - Element 'ram:DeliveryTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:FreightForwarderTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:GrossVolumeMeasure' is marked as not used in the given context. - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:GroupingCentreTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSupplyChainConsignmentItem' is marked as not used in the given context. - - - - - - Element 'ram:InsurancePremiumAmount' is marked as not used in the given context. - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:PackageQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ModeCode' must occur exactly 1 times. - - - - - - Element 'ram:Mode' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StageCode' is marked as not used in the given context. - - - - - - Element 'ram:UsedLogisticsTransportMeans' is marked as not used in the given context. - - - - - - Element 'ram:TotalChargeAmount' is marked as not used in the given context. - - - - - - Element 'ram:TransportContractReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:UtilizedLogisticsTransportEquipment' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:PaymentReference' may occur at maximum 1 times. - - Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. - - Element 'ram:ApplicableTradeTax' must occur at least 1 times. - - Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. - - Element 'ram:InvoiceReferencedDocument' may occur at maximum 1 times. - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:BasisAmount' must occur exactly 1 times. - - Element 'ram:LineTotalBasisAmount' may occur at maximum 1 times. - - Element 'ram:AllowanceChargeBasisAmount' may occur at maximum 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'udt:Date' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:Description' may occur at maximum 1 times. - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:CreditReason' is marked as not used in the given context. - - - - - - Element 'ram:CreditReasonCode' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceIssuerID' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceType' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:DuePayableAmount' is marked as not used in the given context. - - - - - - Element 'ram:FactoringAgreementReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:FactoringListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:InvoiceDateTime' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LetterOfCreditReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:NextInvoiceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:RoleCode' may occur at maximum 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:RoleCode' may occur at maximum 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:PaymentApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Element 'ram:PaymentCurrencyCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ProFormaInvoiceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:IncludedTradeTax' must occur at least 1 times. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - Element 'ram:Description' must occur exactly 1 times. - - Element 'ram:AppliedAmount' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceCharge' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:AppliedFromLogisticsLocation' is marked as not used in the given context. - - - - - - Element 'ram:AppliedToLogisticsLocation' is marked as not used in the given context. - - - - - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:CalculationBasis' is marked as not used in the given context. - - - - - - Element 'ram:CalculationBasisCode' is marked as not used in the given context. - - - - - - Element 'ram:ChargeCategoryCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DisbursementAmount' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:PayingPartyRoleCode' is marked as not used in the given context. - - - - - - Element 'ram:PaymentArrangementCode' is marked as not used in the given context. - - - - - - Element 'ram:PaymentPlaceLogisticsLocation' is marked as not used in the given context. - - - - - - Element 'ram:ServiceCategoryCode' is marked as not used in the given context. - - - - - - Element 'ram:TariffClassCode' is marked as not used in the given context. - - - - - - Element 'ram:TransportPaymentMethodCode' is marked as not used in the given context. - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - Element 'ram:ActualAmount' must occur exactly 1 times. - - Element 'ram:CategoryTradeTax' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedAmount' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReason' is marked as not used in the given context. - - - - - - Element 'ram:ExemptionReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:Description' may occur at maximum 1 times. - - Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. - - Element 'ram:PartialPaymentAmount' may occur at maximum 1 times. - - Element 'ram:PayeeTradeParty' may occur at maximum 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Attribute @unitCodeListVersionID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Attribute @unitCodeListVersionID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:FromEventCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstructionTypeCode' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:PartialPaymentPercent' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:GlobalID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:RoleCode' may occur at maximum 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:PaymentMeansID' is marked as not used in the given context. - - - - - - Element 'ram:SettlementPeriodMeasure' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. - - Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. - - Element 'ram:TaxBasisTotalAmount' must occur at least 1 times. - - Element 'ram:TaxBasisTotalAmount' may occur at maximum 2 times. - - Element 'ram:TaxTotalAmount' may occur at maximum 2 times. - - Element 'ram:RoundingAmount' may occur at maximum 1 times. - - Element 'ram:GrandTotalAmount' must occur at least 1 times. - - Element 'ram:GrandTotalAmount' may occur at maximum 2 times. - - Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. - - Element 'ram:DuePayableAmount' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - Value of '@currencyID' is not allowed. - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:ProductValueExcludingTobaccoTaxInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:RetailValueExcludingTaxInformationAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - Value of '@currencyID' is not allowed. - - - - - - Attribute '@currencyID' is required in this context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - Value of '@currencyID' is not allowed. - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalDepositFeeInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalDiscountAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:Information' may occur at maximum 1 times. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CreditAvailableAmount' is marked as not used in the given context. - - - - - - Element 'ram:CreditLimitAmount' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:ExpiryDate' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:InterestRatePercent' is marked as not used in the given context. - - - - - - Element 'ram:IssuingCompanyName' is marked as not used in the given context. - - - - - - Element 'ram:MicrochipIndicator' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ValidFromDateTime' is marked as not used in the given context. - - - - - - Element 'ram:VerificationNumeric' is marked as not used in the given context. - - - - - - Element 'ram:GuaranteeMethodCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:BICID' must occur exactly 1 times. - - - - - - Element 'ram:AustralianBSBID' is marked as not used in the given context. - - - - - - Element 'ram:AustrianBankleitzahlID' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CHIPSParticipantID' is marked as not used in the given context. - - - - - - Element 'ram:CHIPSUniversalID' is marked as not used in the given context. - - - - - - Element 'ram:CanadianPaymentsAssociationID' is marked as not used in the given context. - - - - - - Element 'ram:ClearingSystemName' is marked as not used in the given context. - - - - - - Element 'ram:FedwireRoutingNumberID' is marked as not used in the given context. - - - - - - Element 'ram:GermanBankleitzahlID' is marked as not used in the given context. - - - - - - Element 'ram:HellenicBankID' is marked as not used in the given context. - - - - - - Element 'ram:HongKongBankID' is marked as not used in the given context. - - - - - - Element 'ram:IndianFinancialSystemID' is marked as not used in the given context. - - - - - - Element 'ram:IrishNSCID' is marked as not used in the given context. - - - - - - Element 'ram:ItalianDomesticID' is marked as not used in the given context. - - - - - - Element 'ram:JapanFinancialInstitutionCommonID' is marked as not used in the given context. - - - - - - Element 'ram:LocationFinancialInstitutionAddress' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:NewZealandNCCID' is marked as not used in the given context. - - - - - - Element 'ram:PolishNationalClearingID' is marked as not used in the given context. - - - - - - Element 'ram:PortugueseNCCID' is marked as not used in the given context. - - - - - - Element 'ram:RussianCentralBankID' is marked as not used in the given context. - - - - - - Element 'ram:SICID' is marked as not used in the given context. - - - - - - Element 'ram:SouthAfricanNCCID' is marked as not used in the given context. - - - - - - Element 'ram:SpanishDomesticInterbankingID' is marked as not used in the given context. - - - - - - Element 'ram:SubDivisionBranchFinancialInstitution' is marked as not used in the given context. - - - - - - Element 'ram:SwissBCID' is marked as not used in the given context. - - - - - - Element 'ram:UKSortCodeID' is marked as not used in the given context. - - - - - - Element 'ram:IBANID' must occur exactly 1 times. - - - - - - Element 'ram:AccountName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ProprietaryID' is marked as not used in the given context. - - - - - - Element 'ram:PayerSpecifiedDebtorFinancialInstitution' is marked as not used in the given context. - - - - - - Element 'ram:PaymentChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:PaymentMethodCode' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:MarketID' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:SourceUnitBasisNumeric' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:TargetUnitBaseNumeric' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UltimatePayeeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. - - Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. - - Element 'ram:SpecifiedLineTradeDelivery' must occur exactly 1 times. - - - - - - Element 'ram:LineID' must occur exactly 1 times. - - - - - - Element 'ram:Content' must occur exactly 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:Subject' is marked as not used in the given context. - - - - - - - Value of 'ram:SubjectCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:DescriptionCode' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSubordinateTradeLineItem' is marked as not used in the given context. - - - - - - Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute '@mimeCode' is required in this context. - - Attribute '@filename' is required in this context. - - - - - - Attribute @characterSetCode' marked as not used in the given context. - - - - - - Attribute @encodingCode' marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - - Value of '@mimeCode' is not allowed. - - - - - - Attribute @uri' marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:BuyerReference' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ChargeAmount' must occur exactly 1 times. - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:CategoryTradeTax' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:ChangeReason' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:DeliveryTradeLocation' is marked as not used in the given context. - - - - - - Element 'ram:IncludedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:MaximumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:MinimumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:OrderUnitConversionFactorNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TradeComparisonReferencePrice' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ValiditySpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSpecifiedMarketplace' is marked as not used in the given context. - - - - - - Element 'ram:ItemBuyerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ItemSellerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ChargeAmount' must occur exactly 1 times. - - Element 'ram:IncludedTradeTax' may occur at maximum 1 times. - - - - - - Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. - - - - - - Element 'ram:AssociatedReferencedDocument' is marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:ChangeReason' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:DeliveryTradeLocation' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedAmount' must occur exactly 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - Element 'ram:RateApplicablePercent' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:MaximumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:MinimumQuantity' is marked as not used in the given context. - - - - - - Element 'ram:OrderUnitConversionFactorNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TradeComparisonReferencePrice' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:ValiditySpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:BilledQuantity' must occur exactly 1 times. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DescriptionBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:EarliestOccurrenceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LatestOccurrenceDateTime' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:OccurrenceLogisticsLocation' is marked as not used in the given context. - - - - - - Element 'ram:OccurrenceSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Attribute '@unitCode' is required in this context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:DespatchedQuantity' is marked as not used in the given context. - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSupplyChainPackaging' is marked as not used in the given context. - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PerPackageUnitQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ProductUnitQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ReceivedQuantity' is marked as not used in the given context. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - Element 'ram:RequestedDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:RequestedQuantity' is marked as not used in the given context. - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDeliveryAdjustment' is marked as not used in the given context. - - - - - - Element 'ram:TheoreticalWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DirectTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InstantMessagingUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:JobTitle' is marked as not used in the given context. - - - - - - Element 'ram:MobileTelephoneUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:PersonID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:Responsibility' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedContactPerson' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedNote' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:TelexUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:VOIPUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIID' must occur exactly 1 times. - - - - - - Element 'ram:ChannelCode' is marked as not used in the given context. - - - - - - Element 'ram:CompleteNumber' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradeTax' must occur at least 1 times. - - Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:CalculatedAmount' may occur at maximum 1 times. - - Element 'ram:TypeCode' must occur exactly 1 times. - - Element 'ram:CategoryCode' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Element 'ram:BuyerDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:BuyerRepayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:CalculatedRate' is marked as not used in the given context. - - - - - - Element 'ram:CalculationSequenceNumeric' is marked as not used in the given context. - - - - - - - Value of 'ram:CategoryCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:CategoryName' is marked as not used in the given context. - - - - - - Element 'ram:CurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:CustomsDutyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:DueDateTypeCode' is marked as not used in the given context. - - - - - - - Value of 'ram:ExemptionReasonCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:Jurisdiction' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:PlaceApplicableTradeLocation' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:SellerPayableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SellerRefundableTaxSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ServiceSupplyTradeCountry' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisAllowanceRate' is marked as not used in the given context. - - - - - - Element 'ram:TaxPointDate' is marked as not used in the given context. - - - - - - Element 'ram:Type' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:CompleteDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ContinuousIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:DurationMeasure' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:InclusiveIndicator' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:OpenIndicator' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:SeasonCode' is marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:StartDateFlexibilityCode' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:DiscountIndicator' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:PaymentReference' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:AmountTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:CostReferenceDimensionPattern' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:SetTriggerCode' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - Element 'ram:ChargeIndicator' must occur exactly 1 times. - - Element 'ram:ActualAmount' must occur exactly 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:ActualTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:BasisQuantity' is marked as not used in the given context. - - - - - - Attribute @format' marked as not used in the given context. - - - - - - Element 'ram:CategoryTradeTax' is marked as not used in the given context. - - - - - - Element 'udt:IndicatorString' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:PrepaidIndicator' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:SequenceNumeric' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UnitBasisAmount' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradePaymentTerms' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalAmount' must occur exactly 1 times. - - Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. - - Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. - - Element 'ram:TaxTotalAmount' may occur at maximum 1 times. - - Element 'ram:GrandTotalAmount' may occur at maximum 1 times. - - Element 'ram:TotalAllowanceChargeAmount' may occur at maximum 1 times. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:ProductWeightLossInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisTotalAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:TotalAdjustmentAmount' is marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - Element 'ram:AdditionalReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableMaterialGoodsCharacteristic' is marked as not used in the given context. - - - - - - Element 'ram:Description' must occur exactly 1 times. - - Element 'ram:Value' must occur exactly 1 times. - - - - - - Element 'ram:ApplicableProductCharacteristicCondition' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableReferencedStandard' is marked as not used in the given context. - - - - - - Element 'ram:ContentTypeCode' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:MeasurementMethodCode' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:ValueCode' is marked as not used in the given context. - - - - - - Element 'ram:ValueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ValueIndicator' is marked as not used in the given context. - - - - - - Attribute @unitCodeListVersionID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:ValueSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:AreaDensityMeasure' is marked as not used in the given context. - - - - - - Element 'ram:BrandName' is marked as not used in the given context. - - - - - - Element 'ram:BrandOwnerTradeParty' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CertificationEvidenceReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ColourCode' is marked as not used in the given context. - - - - - - Element 'ram:ColourDescription' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ClassName' may occur at maximum 1 times. - - - - - - Element 'ram:ApplicableReferencedStandard' is marked as not used in the given context. - - - - - - - Value of 'ram:ClassCode' is not allowed. - - Attribute '@listID' is required in this context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listAgencyName' marked as not used in the given context. - - - - - - - Value of '@listID' is not allowed. - - - - - - Attribute @listName' marked as not used in the given context. - - - - - - Attribute @listSchemeURI' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:ClassProductCharacteristic' is marked as not used in the given context. - - - - - - Element 'ram:SubClassCode' is marked as not used in the given context. - - - - - - Element 'ram:SystemID' is marked as not used in the given context. - - - - - - Element 'ram:SystemName' is marked as not used in the given context. - - - - - - Element 'ram:Designation' is marked as not used in the given context. - - - - - - Element 'ram:DrainedNetWeightMeasure' is marked as not used in the given context. - - - - - - Element 'ram:EndItemName' is marked as not used in the given context. - - - - - - Element 'ram:EndItemTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:FormattedCancellationAnnouncedLaunchDateTime' is marked as not used in the given context. - - - - - - Element 'ram:FormattedLatestProductDataChangeDateTime' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:GrossWeightMeasure' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ID' may occur at maximum 1 times. - - Element 'ram:IndustryAssignedID' may occur at maximum 1 times. - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:Description' may occur at maximum 1 times. - - Element 'ram:UnitQuantity' may occur at maximum 1 times. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:ManufacturerAssignedID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:RelationshipTypeCode' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Attribute '@unitCode' is required in this context. - - - - - - Attribute @unitCodeListAgencyID' marked as not used in the given context. - - - - - - Attribute @unitCodeListAgencyName' marked as not used in the given context. - - - - - - Attribute @unitCodeListID' marked as not used in the given context. - - - - - - - Value of '@unitCode' is not allowed. - - - - - - Element 'ram:ApplicableMaterialGoodsCharacteristic' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableProductCharacteristic' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:BestBeforeDateTime' is marked as not used in the given context. - - - - - - Element 'ram:ExpiryDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalSerialID' is marked as not used in the given context. - - - - - - Element 'ram:KanbanID' is marked as not used in the given context. - - - - - - Element 'ram:PackagingSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ProductionSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:RegistrationID' is marked as not used in the given context. - - - - - - Element 'ram:SellByDateTime' is marked as not used in the given context. - - - - - - Element 'ram:SerialID' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:InformationNote' is marked as not used in the given context. - - - - - - Element 'ram:InspectionReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:LegalRightsOwnerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LinearSpatialDimension' is marked as not used in the given context. - - - - - - Element 'ram:MSDSReferenceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ManufacturerAssignedID' is marked as not used in the given context. - - - - - - Element 'ram:ManufacturerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:MaximumLinearSpatialDimension' is marked as not used in the given context. - - - - - - Element 'ram:MinimumLinearSpatialDimension' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:NetWeightMeasure' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:SubordinateTradeCountrySubDivision' is marked as not used in the given context. - - - - - - Element 'ram:PresentationSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:ProductGroupID' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SubBrandName' is marked as not used in the given context. - - - - - - Element 'ram:TradeName' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:UseDescription' is marked as not used in the given context. - - - - - - Element 'ram:VariableMeasureIndicator' is marked as not used in the given context. - - - - - - Element 'rsm:ValuationBreakdownStatement' is marked as not used in the given context. - - - diff --git a/src/zugferd2/Schema/EXTENDED/_XSLT_EXTENDED/FACTUR-X_1.0.07_EXTENDED.xslt b/src/zugferd2/Schema/EXTENDED/_XSLT_EXTENDED/FACTUR-X_1.0.07_EXTENDED.xslt new file mode 100644 index 00000000..c3e3270a --- /dev/null +++ b/src/zugferd2/Schema/EXTENDED/_XSLT_EXTENDED/FACTUR-X_1.0.07_EXTENDED.xslt @@ -0,0 +1,38674 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + *: + + [namespace-uri()=' + + '] + + + + [ + + ] + + + + / + + @ + + + @*[local-name()=' + + ' and namespace-uri()=' + + '] + + + + + + + + + / + + + [ + + ] + + + + /@ + + + + + + + + / + + + [ + + ] + + + + /@ + + + + + + + + + + + + + + + + + + + + + + + + . + + + + +U + + U + + + + U. + + n + + + + U. + + _ + + _ + + + + + + + + +   +   +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Schema for Factur-X; 1.0.07; EN16931-CONFORMANT-EXTENDED + + + + + + + + + + + + + + + + + + [BR-52]-Each Additional supporting document (BG-24) shall contain a Supporting document reference (BT-122). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-45]-Each VAT breakdown (BG-23) shall have a VAT category taxable amount (BT-116). + + + + + + + + + + + + + + [BR-46]-Each VAT breakdown (BG-23) shall have a VAT category tax amount (BT-117). + + + + + + + + + + + + + + [BR-47]-Each VAT breakdown (BG-23) shall be defined through a VAT category code (BT-118). + + + + + + + + + + + + + + [BR-48]-Each VAT breakdown (BG-23) shall have a VAT category rate (BT-119), except if the Invoice is not subject to VAT. + + + + + + + + + + + + + + [BR-CO-03]-Value added tax point date (BT-7) and Value added tax point date code (BT-8) are mutually exclusive. + + + + + + + + + + + + + + [BR-DEC-19]-The allowed maximum number of decimals for the VAT category taxable amount (BT-116) is 2. + + + + + + + + + + + + + + [BR-DEC-20]-The allowed maximum number of decimals for the VAT category tax amount (BT-117) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-Z-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “Z” ("Zero Rated"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charge amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is "Zero Rated" (Z). + + + + + + + + + + + + + + [BR-Z-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "Zero rated" shall equal 0 (zero). + + + + + + + + + + + + + + [BR-Z-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Zero rated" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Standard rate" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + [BR-FXEXT-S-08]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is equal to “S” ("Standard rated"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is "Standard rated" (S) and the VAT rate (BT-152, BT-96, BT-103, BT-X-274) equals the VAT category rate (BT-119). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-S-09]-For each different value of VAT category rate (BT-119) where the VAT category code (BT-118) is equal to “S” ("Standard rated"), Absolute Value of (VAT category tax amount (BT-117) - VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119)/100) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Standard rated " (S), and the VAT rate (BT-152, BT-96, BT-103, BT-X-274) equals the VAT category rate (BT-119). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-29]-If both Invoicing period start date (BT-73) and Invoicing period end date (BT-74) are given then the Invoicing period end date (BT-74) shall be later or equal to the Invoicing period start date (BT-73). + + + + + + + + + + + + + + [BR-CO-19]-If Invoicing period (BG-14) is used, the Invoicing period start date (BT-73) or the Invoicing period end date (BT-74) shall be filled, or both. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-31]-Each Document level allowance (BG-20) shall have a Document level allowance amount (BT-92). + + + + + + + + + + + + + + [BR-32]-Each Document level allowance (BG-20) shall have a Document level allowance VAT category code (BT-95). + + + + + + + + + + + + + + [BR-33]-Each Document level allowance (BG-20) shall have a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98). + + + + + + + + + + + + + + [BR-CO-05]-Document level allowance reason code (BT-98) and Document level allowance reason (BT-97) shall indicate the same type of allowance. + + + + + + + + + + + + + + [BR-CO-21]-Each Document level allowance (BG-20) shall contain a Document level allowance reason (BT-97) or a Document level allowance reason code (BT-98), or both. + + + + + + + + + + + + + + [BR-DEC-01]-The allowed maximum number of decimals for the Document level allowance amount (BT-92) is 2. + + + + + + + + + + + + + + [BR-DEC-02]-The allowed maximum number of decimals for the Document level allowance base amount (BT-93) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-36]-Each Document level charge (BG-21) shall have a Document level charge amount (BT-99). + + + + + + + + + + + + + + [BR-37]-Each Document level charge (BG-21) shall have a Document level charge VAT category code (BT-102). + + + + + + + + + + + + + + [BR-38]-Each Document level charge (BG-21) shall have a Document level charge reason (BT-104) or a Document level charge reason code (BT-105). + + + + + + + + + + + + + + [BR-CO-06]-Document level charge reason code (BT-105) and Document level charge reason (BT-104) shall indicate the same type of charge. + + + + + + + + + + + + + + [BR-CO-22]-Each Document level charge (BG-21) shall contain a Document level charge reason (BT-104) or a Document level charge reason code (BT-105), or both. + + + + + + + + + + + + + + [BR-DEC-05]-The allowed maximum number of decimals for the Document level charge amount (BT-99) is 2. + + + + + + + + + + + + + + [BR-DEC-06]-The allowed maximum number of decimals for the Document level charge base amount (BT-100) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-54]-Each Item attribute (BG-32) shall contain an Item attribute name (BT-160) and an Item attribute value (BT-161). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-51]-In accordance with card payments security standards an invoice should never include a full card primary account number (BT-87). At the moment PCI Security Standards Council has defined that the first 6 digits and last 4 digits are the maximum number of digits to be shown. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-02]-If the invoice line item free text subject code (BT-X-10) is specified, either the coded invoice line item free text (BT-X-9) or the invoice line item free text (BT-127) must be specified, or both. If both BT-X-9 and BT-127 are specified, both must have the same meaning. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-21]-Each Invoice line (BG-25) shall have an Invoice line identifier (BT-126). + + + + + + + + + + + + + + [BR-22]-Each Invoice line (BG-25) shall have an Invoiced quantity (BT-129). + + + + + + + + + + + + + + [BR-23]-An Invoice line (BG-25) shall have an Invoiced quantity unit of measure code (BT-130). + + + + + + + + + + + + + + [BR-24]-Each Invoice line (BG-25) shall have an Invoice line net amount (BT-131). + + + + + + + + + + + + + + [BR-25]-Each Invoice line (BG-25) shall contain the Item name (BT-153). + + + + + + + + + + + + + + [BR-26]-Each Invoice line (BG-25) shall contain the Item net price (BT-146). + + + + + + + + + + + + + + [BR-27]-The Item net price (BT-146) shall NOT be negative. + + + + + + + + + + + + + + [BR-28]-The Item gross price (BT-148) shall NOT be negative. + + + + + + + + + + + + + + [BR-64]-The Item standard identifier (BT-157) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-65]-The Item classification identifier (BT-158) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-CO-04]-Each Invoice line (BG-25) shall be categorized with an Invoiced item VAT category code (BT-151). + + + + + + + + + + + + + + [BR-DEC-23]-The allowed maximum number of decimals for the Invoice line net amount (BT-131) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-17]-The Payee name (BT-59) shall be provided in the Invoice, if the Payee (BG-10) is different from the Seller (BG-4). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-18]-The Seller tax representative name (BT-62) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-19]-The Seller tax representative postal address (BG-12) shall be provided in the Invoice, if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-20]-The Seller tax representative postal address (BG-12) shall contain a Tax representative country code (BT-69), if the Seller (BG-4) has a Seller tax representative party (BG-11). + + + + + + + + + + + + + + [BR-56]-Each Seller tax representative party (BG-11) shall have a Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-26]-In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-30]-If both Invoice line period start date (BT-134) and Invoice line period end date (BT-135) are given then the Invoice line period end date (BT-135) shall be later or equal to the Invoice line period start date (BT-134). + + + + + + + + + + + + + + [BR-CO-20]-If Invoice line period (BG-26) is used, the Invoice line period start date (BT-134) or the Invoice line period end date (BT-135) shall be filled, or both. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-42]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-41]-Each Invoice line allowance (BG-27) shall have an Invoice line allowance amount (BT-136). + + + + + + + + + + + + + + [BR-CO-07]-Invoice line allowance reason code (BT-140) and Invoice line allowance reason (BT-139) shall indicate the same type of allowance reason. + + + + + + + + + + + + + + [BR-CO-23]-Each Invoice line allowance (BG-27) shall contain an Invoice line allowance reason (BT-139) or an Invoice line allowance reason code (BT-140), or both. + + + + + + + + + + + + + + [BR-DEC-24]-The allowed maximum number of decimals for the Invoice line allowance amount (BT-136) is 2. + + + + + + + + + + + + + + [BR-DEC-25]-The allowed maximum number of decimals for the Invoice line allowance base amount (BT-137) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-43]-Each Invoice line charge (BG-28) shall have an Invoice line charge amount (BT-141). + + + + + + + + + + + + + + [BR-44]-Each Invoice line charge (BG-28) shall have an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145). + + + + + + + + + + + + + + [BR-CO-08]-Invoice line charge reason code (BT-145) and Invoice line charge reason (BT-144) shall indicate the same type of charge reason. + + + + + + + + + + + + + + [BR-CO-24]-Each Invoice line charge (BG-28) shall contain an Invoice line charge reason (BT-144) or an Invoice line charge reason code (BT-145), or both. + + + + + + + + + + + + + + [BR-DEC-27]-The allowed maximum number of decimals for the Invoice line charge amount (BT-141) is 2. + + + + + + + + + + + + + + [BR-DEC-28]-The allowed maximum number of decimals for the Invoice line charge base amount (BT-142) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-09]-The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-03]-Only a VAT registration ID may be provided for the following business partners: the line level Ship-To (BT-X-66), the line level Ultimate-Ship-To (BT-X-84), the Sales-Agent (BT-X-340), the Buyer-Tax-Representative (BT-X-367), the Product-Enduser (BT-X-144), the Buyer-Agent (BT-X-411), the document level Ship-To (BT-X-161), the document level Ultimate-Ship-To (BT-X-180), the Ship-From (BT-X-199), the Invoicer (BT-X-223), the Invoicee (BT-X-242), the document level Payee (BT-X-257), the Payer (BT-X-481), or the payment-term-specific Payee (BT-X-509). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-66]-Each Specified Trade Allowance Charge (BG-20)(BG-21) shall contain a Charge Indicator. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + + + + + + + + + + + + + [BR-AE-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Reverse charge" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-E-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Exempt from VAT", the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-G-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Export outside the EU" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-IC-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Intra-community supply" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AF-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IGIC" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AG-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "IPSI" the Document level allowance VAT rate (BT-96) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-06]-A Document level allowance (BG-20) where VAT category code (BT-95) is "Not subject to VAT" shall not contain a Document level allowance VAT rate (BT-96). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-S-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Standard rated" the Document level allowance VAT rate (BT-96) shall be greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-03]-An Invoice that contains a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-Z-06]-In a Document level allowance (BG-20) where the Document level allowance VAT category code (BT-95) is "Zero rated" the Document level allowance VAT rate (BT-96) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + + + + + + + + + + + + + [BR-AE-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Reverse charge" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-E-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Exempt from VAT", the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-G-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Export outside the EU" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-IC-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Intra-community supply" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AF-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IGIC" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AG-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "IPSI" the Document level charge VAT rate (BT-103) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-07]-A Document level charge (BG-21) where the VAT category code (BT-102) is "Not subject to VAT" shall not contain a Document level charge VAT rate (BT-103). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-04]-An Invoice that contains a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-S-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Standard rated" the Document level charge VAT rate (BT-103) shall be greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-04]-An Invoice that contains a Document level charge where the Document level charge VAT category code (BT-102) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-Z-07]-In a Document level charge (BG-21) where the Document level charge VAT category code (BT-102) is "Zero rated" the Document level charge VAT rate (BT-103) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-CO-10]-Absolute Value of (Sum of Invoice line net amount (BT-106) - Σ Invoice line net amounts (BT-131))<= 0,01 * Number of line net amounts (BT-131). + + + + + + + + + + + + + + [BR-12]-An Invoice shall have the Sum of Invoice line net amount (BT-106). + + + + + + + + + + + + + + [BR-13]-An Invoice shall have the Invoice total amount without VAT (BT-109). + + + + + + + + + + + + + + [BR-14]-An Invoice shall have the Invoice total amount with VAT (BT-112). + + + + + + + + + + + + + + [BR-15]-An Invoice shall have the Amount due for payment (BT-115). + + + + + + + + + + + + + + [BR-FXEXT-CO-11]-Absolute Value of (Sum of allowances on document level (BT-107) - Σ Document level allowance amounts (BT-92))<= 0,01 * Number of Document level allowance amounts (BT-92). + + + + + + + + + + + + + + [BR-FXEXT-CO-12]-Absolute Value of (Sum of charges on document level (BT-108) - Σ Document level charge amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272))<= 0,01 * (Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)). + + + + + + + + + + + + + + [BR-FXEXT-CO-13]-Absolute Value of (Invoice total amount without VAT (BT-109) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charge amounts (BT-99)) <= 0,01 * (Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99)). + + + + + + + + + + + + + + [BR-FXEXT-CO-15]-If Invoice Total VAT amount (BT-110) ,where currency (BT-110-0) is equal to BT-5, is present, then the Absolute Value of (Invoice total amount with VAT (BT-112) - Invoice total amount without VAT (BT-109) - Invoice total VAT amount (BT-110)) <= 0,01 * (Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charges amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272). Else, Invoice total amount with VAT (BT-112) is equal to Invoice total amount without VAT (BT-109). + + + + + + + + + + + + + + [BR-CO-16]-Amount due for payment (BT-115) = Invoice total amount with VAT (BT-112) -Paid amount (BT-113) +Rounding amount (BT-114). + + + + + + + + + + + + + + [BR-DEC-09]-The allowed maximum number of decimals for the Sum of Invoice line net amount (BT-106) is 2. + + + + + + + + + + + + + + [BR-DEC-10]-The allowed maximum number of decimals for the Sum of allowanced on document level (BT-107) is 2. + + + + + + + + + + + + + + [BR-DEC-11]-The allowed maximum number of decimals for the Sum of charges on document level (BT-108) is 2. + + + + + + + + + + + + + + [BR-DEC-12]-The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. + + + + + + + + + + + + + + [BR-DEC-13]-The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. + + + + + + + + + + + + + + [BR-DEC-14]-The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. + + + + + + + + + + + + + + [BR-DEC-15]-The allowed maximum number of decimals for the Invoice total VAT amount in accounting currency (BT-111) is 2. + + + + + + + + + + + + + + [BR-DEC-16]-The allowed maximum number of decimals for the Paid amount (BT-113) is 2. + + + + + + + + + + + + + + [BR-DEC-17]-The allowed maximum number of decimals for the Rounding amount (BT-114) is 2. + + + + + + + + + + + + + + [BR-DEC-18]-The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. + + + + + + + + + + + + + + [BR-53]-If the VAT accounting currency code (BT-6) is present, then the Invoice total VAT amount in accounting currency (BT-111) shall be provided. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-14]-Invoice total VAT amount (BT-110) = Σ VAT category tax amount (BT-117). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-49]-A Payment instruction (BG-16) shall specify the Payment means type code (BT-81). + + + + + + + + + + + + + + [BR-CO-27]-Either the IBAN or a Proprietary ID (BT-84) shall be used. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-50]-A Payment account identifier (BT-84) shall be present if Credit transfer (BG-16) information is provided in the Invoice. + + + + + + + + + + + + + + [BR-61]-If the Payment means type code (BT-81) means SEPA credit transfer, Local credit transfer or Non-SEPA international credit transfer, the Payment account identifier (BT-84) shall be present. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-18]-An Invoice shall at least have one VAT breakdown group (BG-23). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-AE-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “AE” ("Reverse Charge"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charge amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is "Reversed Charge" (AE). + + + + + + + + + + + + + + [BR-AE-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Reverse charge" shall be 0 (zero). + + + + + + + + + + + + + + [BR-AE-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Reverse charge" shall have a VAT exemption reason code (BT-121), meaning "Reverse charge" or the VAT exemption reason text (BT-120) "Reverse charge" (or the equivalent standard text in another language). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-E-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “E” ("Exempt from VAT"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Exempt from VAT" (E). + + + + + + + + + + + + + + [BR-E-09]-The VAT category tax amount (BT-117) In a VAT breakdown (BG-23) where the VAT category code (BT-118) equals "Exempt from VAT" shall equal 0 (zero). + + + + + + + + + + + + + + [BR-E-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "Exempt from VAT" shall have a VAT exemption reason code (BT-121) or a VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-G-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “G” ("Export outside the EU"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Export outside the EU " (G). + + + + + + + + + + + + + + [BR-G-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Export outside the EU" shall be 0 (zero). + + + + + + + + + + + + + + [BR-G-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Export outside the EU" shall have a VAT exemption reason code (BT-121), meaning "Export outside the EU" or the VAT exemption reason text (BT-120) "Export outside the EU" (or the equivalent standard text in another language). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-IC-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “K” ("Intra-community supply"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Intra-community supply " (K) + + + + + + + + + + + + + + [BR-IC-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" shall be 0 (zero). + + + + + + + + + + + + + + [BR-IC-10]-A VAT Breakdown (BG-23) with the VAT Category code (BT-118) "Intra-community supply" shall have a VAT exemption reason code (BT-121), meaning "Intra-community supply" or the VAT exemption reason text (BT-120) "Intra-community supply" (or the equivalent standard text in another language). + + + + + + + + + + + + + + [BR-IC-11]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Actual delivery date (BT-72) or the Invoicing period (BG-14) shall not be blank. + + + + + + + + + + + + + + [BR-IC-12]-In an Invoice with a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Intra-community supply" the Deliver to country code (BT-80) shall not be blank. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-AF-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “L” ("Canary Islands tax"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Canary Islands tax " (L). + + + + + + + + + + + + + + [BR-AF-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IGIC" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AF-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IGIC" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-AG-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “M” ("Ceuta and Mellita tax"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Ceuta and Mellita tax " (M). + + + + + + + + + + + + + + [BR-AG-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where VAT category code (BT-118) is "IPSI" shall equal the VAT category taxable amount (BT-116) multiplied by the VAT category rate (BT-119). + + + + + + + + + + + + + + [BR-AG-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) "IPSI" shall not have a VAT exemption reason code (BT-121) or VAT exemption reason text (BT-120). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-O-08]-In a VAT breakdown (BG-23) where VAT category code (BT-118) is equal to “O” ("Not subject to VAT"), Absolute Value of (VAT category taxable amount (BT-116) - ∑ Invoice line net amounts (BT-131) + Σ Document level allowance amounts (BT-92) - Σ Document level charges amounts (BT-99) - Σ Logistics Service fee amounts (BT-x-272)) <= 0,01 * ((Number of line net amounts (BT-131) + Number of Document level allowance amounts (BT-92) + Number of Document level charge amounts (BT-99) + Number of Logistics Service fee amounts (BT-X-272)), where the VAT category code (BT-151, BT-95, BT-102, BT-X-273) is " Not subject to VAT " (O). + + + + + + + + + + + + + + [BR-O-09]-The VAT category tax amount (BT-117) in a VAT breakdown (BG-23) where the VAT category code (BT-118) is "Not subject to VAT" shall be 0 (zero). + + + + + + + + + + + + + + [BR-O-10]-A VAT Breakdown (BG-23) with VAT Category code (BT-118) " Not subject to VAT" shall have a VAT exemption reason code (BT-121), meaning " Not subject to VAT" or a VAT exemption reason text (BT-120) " Not subject to VAT" (or the equivalent standard text in another language). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AE-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" shall contain the Seller VAT Identifier (BT-31), the Seller Tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) and/or the Buyer legal registration identifier (BT-47). + + + + + + + + + + + + + + [BR-AE-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Reverse charge" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-E-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-E-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Exempt from VAT", the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-G-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-G-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Export outside the EU" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-IC-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intra-community supply" shall contain the Seller VAT Identifier (BT-31) or the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48). + + + + + + + + + + + + + + [BR-IC-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Intracommunity supply" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AF-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AF-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IGIC" the invoiced item VAT rate (BT-152) shall be greater than 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-AG-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-AG-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "IPSI" the Invoiced item VAT rate (BT-152) shall be 0 (zero) or greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-O-05]-An Invoice line (BG-25) where the VAT category code (BT-151) is "Not subject to VAT" shall not contain an Invoiced item VAT rate (BT-152). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-S-02]-An Invoice that contains an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-S-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Standard rated" the Invoiced item VAT rate (BT-152) shall be greater than zero. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-Z-02]-An Invoice that contains an Invoice line where the Invoiced item VAT category code (BT-151) is "Zero rated" shall contain the Seller VAT Identifier (BT-31), the Seller tax registration identifier (BT-32) and/or the Seller tax representative VAT identifier (BT-63). + + + + + + + + + + + + + + [BR-Z-05]-In an Invoice line (BG-25) where the Invoiced item VAT category code (BT-151) is "Zero rated" the Invoiced item VAT rate (BT-152) shall be 0 (zero). + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-16]-An Invoice shall have at least one Invoice line (BG-25). + + + + + + + + + + + + + + [BR-CO-25]-In case the Amount due for payment (BT-115) is positive, either the Payment due date (BT-9) or the Payment terms (BT-20) shall be present. + + + + + + + + + + + + + + [BR-01]-An Invoice shall have a Specification identifier (BT-24). + + + + + + + + + + + + + + [BR-02]-An Invoice shall have an Invoice number (BT-1). + + + + + + + + + + + + + + [BR-03]-An Invoice shall have an Invoice issue date (BT-2). + + + + + + + + + + + + + + [BR-04]-An Invoice shall have an Invoice type code (BT-3). + + + + + + + + + + + + + + [BR-05]-An Invoice shall have an Invoice currency code (BT-5). + + + + + + + + + + + + + + [BR-06]-An Invoice shall contain the Seller name (BT-27). + + + + + + + + + + + + + + [BR-07]-An Invoice shall contain the Buyer name (BT-44). + + + + + + + + + + + + + + [BR-08]-An Invoice shall contain the Seller postal address (BG-5). + + + + + + + + + + + + + + [BR-09]-The Seller postal address (BG-5) shall contain a Seller country code (BT-40). + + + + + + + + + + + + + + [BR-10]-An Invoice shall contain the Buyer postal address (BG-8). + + + + + + + + + + + + + + [BR-11]-The Buyer postal address shall contain a Buyer country code (BT-55). + + + + + + + + + + + + + + [BR-62]-The Seller electronic address (BT-34) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-63]-The Buyer electronic address (BT-49) shall have a Scheme identifier. + + + + + + + + + + + + + + [BR-S-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Standard rated" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "Standard rated". + + + + + + + + + + + + + + [BR-Z-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Zero rated" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Zero rated". + + + + + + + + + + + + + + [BR-E-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Exempt from VAT” shall contain exactly one VAT breakdown (BG-23) with the VAT category code (BT-118) equal to "Exempt from VAT". + + + + + + + + + + + + + + [BR-AE-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Reverse charge" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "VAT reverse charge". + + + + + + + + + + + + + + [BR-IC-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Intra-community supply" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Intra-community supply". + + + + + + + + + + + + + + [BR-G-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Export outside the EU" shall contain in the VAT breakdown (BG-23) exactly one VAT category code (BT-118) equal with "Export outside the EU". + + + + + + + + + + + + + + [BR-O-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "Not subject to VAT" shall contain exactly one VAT breakdown group (BG-23) with the VAT category code (BT-118) equal to "Not subject to VAT". + + + + + + + + + + + + + + [BR-AF-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IGIC" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IGIC". + + + + + + + + + + + + + + [BR-AG-01]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is "IPSI" shall contain in the VAT breakdown (BG-23) at least one VAT category code (BT-118) equal with "IPSI". + + + + + + + + + + + + + + [BR-B-01]-An Invoice where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment” shall be a domestic Italian invoice. + + + + + + + + + + + + + + [BR-B-02]-An Invoice that contains an Invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Split payment" shall not contain an invoice line (BG-25), a Document level allowance (BG-20) or a Document level charge (BG-21) where the VAT category code (BT-151, BT-95 or BT-102) is “Standard rated”. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Name' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:LanguageID' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteDateTime' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:EndDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:StartDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Content' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SubjectCode' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:SubjectCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-FXEXT-01]-If the Invoice Free Text subject Code (BT-21) is specified, either the coded message free text (BT-X-5) or the message free text (BT-22) must be specified, or both. If both BT-X-5 and BT-22 are specified, both must have the same meaning. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IncludedSupplyChainTradeLineItem' must occur at least 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SellerTradeParty' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:BuyerTradeParty' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:AdditionalReferencedDocument[ not(ram:TypeCode="916") and not(ram:TypeCode="50") and not(ram:TypeCode="130")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Name' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@mimeCode' is required in this context. + + + + + + + + + + + + + + Attribute '@filename' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@mimeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DeliveryTypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="VA"]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="FC"]' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ not(ram:ID/@schemeID="VA") and not(ram:ID/@schemeID="FC")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-57]-Each Deliver to address (BG-15) shall contain a Deliver to country code (BT-80). + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:OccurrenceDateTime' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ModeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:PaymentReference' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ApplicableTradeTax' must occur at least 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:BasisAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:LineTotalBasisAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:AllowanceChargeBasisAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:DueDateTypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:InvoiceCurrencyCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-55]-Each Preceding Invoice reference (BG-3) shall contain a Preceding Invoice reference (BT-25). + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IncludedTradeTax' must occur at least 1 times. + + + + + + + + + + + + + + Element 'ram:InvoiceSpecifiedReferencedDocument' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:AppliedAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:AppliedTradeTax' must occur at least 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RateApplicablePercent' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReason' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ExemptionReasonCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:DirectDebitMandateID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:PartialPaymentAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:PayeeTradeParty' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:InvoiceCurrencyCode]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:TaxCurrencyCode]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:RoundingAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GrandTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TotalPrepaidAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:DuePayableAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[ not(@currencyID=../../ram:InvoiceCurrencyCode) and not(@currencyID=../../ram:TaxCurrencyCode)]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@currencyID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@currencyID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Information' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:PayeePartyCreditorFinancialAccount' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BICID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IBANID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:SourceCurrencyCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TargetCurrencyCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TaxCurrencyCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AssociatedDocumentLineDocument' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradeProduct' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedLineTradeAgreement' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedLineTradeDelivery' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Content' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SubjectCode' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:SubjectCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:NetPriceProductTradePrice' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Name' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@mimeCode' is required in this context. + + + + + + + + + + + + + + Attribute '@filename' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@mimeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:AppliedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisQuantity' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SequenceNumeric' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisQuantity' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SequenceNumeric' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IncludedTradeTax' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:IncludedTradeTax' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AppliedTradeAllowanceCharge' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:RateApplicablePercent' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BilledQuantity' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:OccurrenceDateTime' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:RoleCode' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:URIUniversalCommunication' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CountrySubDivisionName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteNumber' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ApplicableTradeTax' must occur at least 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradeSettlementLineMonetarySummation' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:InvoiceReferencedDocument' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:ReceivableSpecifiedTradeAccountingAccount' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReferenceTypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CalculatedAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:CategoryCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AllowanceChargeBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CategoryCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:DueDateTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ExemptionReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalBasisAmount' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TaxPointDate' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CompleteDateTime' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ReferenceTypeCode' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:URIID' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTradeAllowanceCharge[ not(ram:ChargeIndicator/udt:Indicator="false") and not(ram:ChargeIndicator/udt:Indicator="true")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisQuantity' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SequenceNumeric' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ChargeIndicator' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ActualAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BasisQuantity' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CategoryTradeTax' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ReasonCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SequenceNumeric' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:LineTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:ChargeTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:AllowanceTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:TaxTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GrandTotalAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:TotalAllowanceChargeAmount' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Description' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Value' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @listVersionID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ClassName' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@listID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@listID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:IndustryAssignedID' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:Description' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:UnitQuantity' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@unitCode' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@unitCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + diff --git a/src/zugferd2/Schema/EXTENDED/_XSLT_EXTENDED/FACTUR-X_1.0.07_EXTENDED_codedb.xml b/src/zugferd2/Schema/EXTENDED/_XSLT_EXTENDED/FACTUR-X_1.0.07_EXTENDED_codedb.xml new file mode 100644 index 00000000..6f20669d --- /dev/null +++ b/src/zugferd2/Schema/EXTENDED/_XSLT_EXTENDED/FACTUR-X_1.0.07_EXTENDED_codedb.xml @@ -0,0 +1,6292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM.xsd b/src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM.xsd deleted file mode 100644 index f52e628d..00000000 --- a/src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM.xsd +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd b/src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd deleted file mode 100644 index ee8db280..00000000 --- a/src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd +++ /dev/null @@ -1,511 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM.sch b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM.sch new file mode 100644 index 00000000..5452eefd --- /dev/null +++ b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM.sch @@ -0,0 +1,312 @@ + + + Schema for Factur-X; 1.0.07; Accounting, MINIMUM + + + + + + + + [BR-CO-26]-In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. + + + + + + [BR-CO-09]-The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. + + + + + + [BR-13]-An Invoice shall have the Invoice total amount without VAT (BT-109). + + [BR-14]-An Invoice shall have the Invoice total amount with VAT (BT-112). + + [BR-15]-An Invoice shall have the Amount due for payment (BT-115). + + [BR-DEC-12]-The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. + + [BR-DEC-13]-The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. + + [BR-DEC-14]-The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. + + [BR-DEC-18]-The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. + + + + + + [BR-01]-An Invoice shall have a Specification identifier (BT-24). + + [BR-02]-An Invoice shall have an Invoice number (BT-1). + + [BR-03]-An Invoice shall have an Invoice issue date (BT-2). + + [BR-04]-An Invoice shall have an Invoice type code (BT-3). + + [BR-05]-An Invoice shall have an Invoice currency code (BT-5). + + [BR-06]-An Invoice shall contain the Seller name (BT-27). + + [BR-07]-An Invoice shall contain the Buyer name (BT-44). + + [BR-08]-An Invoice shall contain the Seller postal address (BG-5). + + [BR-09]-The Seller postal address (BG-5) shall contain a Seller country code (BT-40). + + + + + + Element 'ram:ID' must occur exactly 1 times. + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Attribute '@format' is required in this context. + + + + + + + Value of '@format' is not allowed. + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. + + Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:SellerTradeParty' must occur exactly 1 times. + + Element 'ram:BuyerTradeParty' must occur exactly 1 times. + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + Element 'ram:Name' must occur exactly 1 times. + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="VA"]' may occur at maximum 1 times. + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="FC"]' may occur at maximum 1 times. + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + Value of '@schemeID' is not allowed. + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ not(ram:ID/@schemeID="VA") and not(ram:ID/@schemeID="FC")]' is marked as not used in the given context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + Attribute '@schemeID' is required in this context. + + + + + + Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. + + Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. + + + + + + + Value of 'ram:InvoiceCurrencyCode' is not allowed. + + + + + + Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:InvoiceCurrencyCode]' may occur at maximum 1 times. + + Element 'ram:GrandTotalAmount' must occur exactly 1 times. + + Element 'ram:DuePayableAmount' must occur exactly 1 times. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + Element variant 'ram:TaxTotalAmount[ not(@currencyID=../../ram:InvoiceCurrencyCode) and not(@currencyID=../../ram:TaxCurrencyCode)]' is marked as not used in the given context. + + + + + + + Value of '@currencyID' is not allowed. + + + + + + Attribute '@currencyID' is required in this context. + + + diff --git a/src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED.xsd b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM.xsd similarity index 73% rename from src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED.xsd rename to src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM.xsd index 87001649..5a153658 100644 --- a/src/zugferd2/Schema/EXTENDED/FACTUR-X_EXTENDED.xsd +++ b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM.xsd @@ -6,9 +6,9 @@ xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" targetNamespace="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" elementFormDefault="qualified"> - - - + + + diff --git a/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_codedb.xml b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_codedb.xml new file mode 100644 index 00000000..74a7b49c --- /dev/null +++ b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_codedb.xml @@ -0,0 +1,908 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd new file mode 100644 index 00000000..b842378b --- /dev/null +++ b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd similarity index 93% rename from src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd rename to src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd index b0dfe863..8fad95ed 100644 --- a/src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd +++ b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd @@ -5,8 +5,8 @@ xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100" targetNamespace="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" elementFormDefault="qualified"> - - + + @@ -78,7 +78,7 @@ - + diff --git a/src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd similarity index 90% rename from src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd rename to src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd index ac27fb40..bb7ccb2f 100644 --- a/src/zugferd2/Schema/MINIMUM/FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd +++ b/src/zugferd2/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd @@ -2,8 +2,7 @@ + elementFormDefault="qualified"> @@ -27,7 +26,7 @@ - + diff --git a/src/zugferd2/Schema/MINIMUM/Schematron/FACTUR-X_MINIMUM.sch b/src/zugferd2/Schema/MINIMUM/Schematron/FACTUR-X_MINIMUM.sch deleted file mode 100644 index ae9f436d..00000000 --- a/src/zugferd2/Schema/MINIMUM/Schematron/FACTUR-X_MINIMUM.sch +++ /dev/null @@ -1,1705 +0,0 @@ - - - Schema for FACTUR-X; 1.0; ACCOUNTING INFORMATION, No XML Invoice, (MINIMUM) - - - - - - - - Element 'ram:TypeCode' must occur exactly 1 times. - - - - - - Element 'ram:CategoryCode' is marked as not used in the given context. - - - - - - Element 'ram:ControlRequirementIndicator' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IncludedNote' is marked as not used in the given context. - - - - - - Element 'udt:DateTime' is marked as not used in the given context. - - - - - - - Value of '@format' is not allowed. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LanguageID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:Purpose' is marked as not used in the given context. - - - - - - Element 'ram:PurposeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionDateTime' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - - Value of 'ram:TypeCode' is not allowed. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Attribute @name' marked as not used in the given context. - - - - - - Element 'ram:VersionID' is marked as not used in the given context. - - - - - - Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. - - Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. - - - - - - Element 'ram:ApplicationSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:BIMSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:SpecifiedDocumentVersion' is marked as not used in the given context. - - - - - - Element 'ram:Value' is marked as not used in the given context. - - - - - - Element 'ram:MessageStandardSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:ScenarioSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTransactionID' is marked as not used in the given context. - - - - - - Element 'ram:SubsetSpecifiedDocumentContextParameter' is marked as not used in the given context. - - - - - - Element 'ram:TestIndicator' is marked as not used in the given context. - - - - - - Element 'ram:SellerTradeParty' must occur exactly 1 times. - - Element 'ram:BuyerTradeParty' must occur exactly 1 times. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ApplicableTradeDeliveryTerms' is marked as not used in the given context. - - - - - - Element 'ram:BuyerAgentTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:BuyerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:IssuerAssignedID' must occur exactly 1 times. - - - - - - Element 'ram:AttachedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Element 'ram:AttachmentBinaryObject' is marked as not used in the given context. - - - - - - Element 'ram:CopyIndicator' is marked as not used in the given context. - - - - - - Element 'ram:EffectiveSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:FormattedIssueDateTime' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:Information' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:IssuerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LineID' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PreviousRevisionID' is marked as not used in the given context. - - - - - - Element 'ram:ReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:RevisionID' is marked as not used in the given context. - - - - - - Element 'ram:SectionName' is marked as not used in the given context. - - - - - - Element 'ram:StatusCode' is marked as not used in the given context. - - - - - - Element 'ram:TypeCode' is marked as not used in the given context. - - - - - - Element 'ram:URIID' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:BuyerRequisitionerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:BuyerTaxRepresentativeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:ContractReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DemandForecastReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:OrderResponseReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PriceListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ProductEndUserTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PromotionalDealReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseConditionsReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:QuotationReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:Reference' is marked as not used in the given context. - - - - - - Element 'ram:RequisitionerReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:SalesAgentTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SellerAssignedAccountantTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:SellerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:SellerTaxRepresentativeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:Name' must occur exactly 1 times. - - Element 'ram:PostalTradeAddress' must occur exactly 1 times. - - Element 'ram:SpecifiedTaxRegistration' may occur at maximum 2 times. - - - - - - Element 'ram:DefinedTradeContact' is marked as not used in the given context. - - - - - - Element 'ram:Description' is marked as not used in the given context. - - - - - - Element 'ram:EndPointURIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:GlobalID' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LogoAssociatedSpecifiedBinaryFile' is marked as not used in the given context. - - - - - - Attribute @languageID' marked as not used in the given context. - - - - - - Attribute @languageLocaleID' marked as not used in the given context. - - - - - - Element 'ram:CountryID' must occur exactly 1 times. - - - - - - Element 'ram:AdditionalStreetName' is marked as not used in the given context. - - - - - - Element 'ram:AttentionOf' is marked as not used in the given context. - - - - - - Element 'ram:BuildingName' is marked as not used in the given context. - - - - - - Element 'ram:BuildingNumber' is marked as not used in the given context. - - - - - - Element 'ram:CareOf' is marked as not used in the given context. - - - - - - Element 'ram:CityName' is marked as not used in the given context. - - - - - - Element 'ram:CitySubDivisionName' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeID' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:CountryName' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionID' is marked as not used in the given context. - - - - - - Element 'ram:CountrySubDivisionName' is marked as not used in the given context. - - - - - - Element 'ram:DepartmentName' is marked as not used in the given context. - - - - - - Element 'ram:ID' is marked as not used in the given context. - - - - - - Element 'ram:LineFive' is marked as not used in the given context. - - - - - - Element 'ram:LineFour' is marked as not used in the given context. - - - - - - Element 'ram:LineOne' is marked as not used in the given context. - - - - - - Element 'ram:LineThree' is marked as not used in the given context. - - - - - - Element 'ram:LineTwo' is marked as not used in the given context. - - - - - - Element 'ram:PostOfficeBox' is marked as not used in the given context. - - - - - - Element 'ram:PostcodeCode' is marked as not used in the given context. - - - - - - Element 'ram:StreetName' is marked as not used in the given context. - - - - - - Element 'ram:RoleCode' is marked as not used in the given context. - - - - - - Element 'ram:AuthorizedLegalRegistration' is marked as not used in the given context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:LegalClassificationCode' is marked as not used in the given context. - - - - - - Element 'ram:Name' is marked as not used in the given context. - - - - - - Element 'ram:PostalTradeAddress' is marked as not used in the given context. - - - - - - Element 'ram:TradingBusinessName' is marked as not used in the given context. - - - - - - Element 'ram:ID' must occur exactly 1 times. - - - - - - Element 'ram:AssociatedRegisteredTax' is marked as not used in the given context. - - - - - - Attribute '@schemeID' is required in this context. - - - - - - Attribute @schemeAgencyID' marked as not used in the given context. - - - - - - Attribute @schemeAgencyName' marked as not used in the given context. - - - - - - Attribute @schemeDataURI' marked as not used in the given context. - - - - - - - Value of '@schemeID' is not allowed. - - - - - - Attribute @schemeName' marked as not used in the given context. - - - - - - Attribute @schemeURI' marked as not used in the given context. - - - - - - Attribute @schemeVersionID' marked as not used in the given context. - - - - - - Element 'ram:URIUniversalCommunication' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedProcuringProject' is marked as not used in the given context. - - - - - - Element 'ram:SupplyInstructionReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:UltimateCustomerOrderReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ActualDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualDespatchSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualPickUpSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ActualReceiptSupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:AdditionalReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:ConsumptionReportReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DeliveryNoteReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:DespatchAdviceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PackingListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PreviousDeliverySupplyChainEvent' is marked as not used in the given context. - - - - - - Element 'ram:ReceivingAdviceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:RelatedSupplyChainConsignment' is marked as not used in the given context. - - - - - - Element 'ram:ShipFromTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:ShipToTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:UltimateShipToTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. - - Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. - - - - - - Element 'ram:ApplicableTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:BillingSpecifiedPeriod' is marked as not used in the given context. - - - - - - Element 'ram:CreditReason' is marked as not used in the given context. - - - - - - Element 'ram:CreditReasonCode' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceID' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceIssuerID' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceType' is marked as not used in the given context. - - - - - - Element 'ram:CreditorReferenceTypeCode' is marked as not used in the given context. - - - - - - Element 'ram:DuePayableAmount' is marked as not used in the given context. - - - - - - Element 'ram:FactoringAgreementReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:FactoringListReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Attribute @listAgencyID' marked as not used in the given context. - - - - - - Attribute @listID' marked as not used in the given context. - - - - - - Attribute @listURI' marked as not used in the given context. - - - - - - Attribute @listVersionID' marked as not used in the given context. - - - - - - Element 'ram:InvoiceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceIssuerReference' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:InvoiceeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:InvoicerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:LetterOfCreditReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:NextInvoiceDateTime' is marked as not used in the given context. - - - - - - Element 'ram:PayableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:PayeeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PayerTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:PaymentApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Element 'ram:PaymentCurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:PaymentReference' is marked as not used in the given context. - - - - - - Element 'ram:ProFormaInvoiceReferencedDocument' is marked as not used in the given context. - - - - - - Element 'ram:PurchaseSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:ReceivableSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SalesSpecifiedTradeAccountingAccount' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedAdvancePayment' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedFinancialAdjustment' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedLogisticsServiceCharge' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeAllowanceCharge' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradePaymentTerms' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeSettlementFinancialCard' is marked as not used in the given context. - - - - - - Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. - - Element 'ram:TaxTotalAmount' may occur at maximum 1 times. - - Element 'ram:GrandTotalAmount' must occur exactly 1 times. - - Element 'ram:DuePayableAmount' must occur exactly 1 times. - - - - - - Element 'ram:AllowanceTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:ChargeTotalAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Element 'ram:GrossLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:InformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:LineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:NetIncludingTaxesLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:NetLineTotalAmount' is marked as not used in the given context. - - - - - - Element 'ram:ProductValueExcludingTobaccoTaxInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:RetailValueExcludingTaxInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:RoundingAmount' is marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - Attribute @currencyID' marked as not used in the given context. - - - - - - Attribute @currencyCodeListVersionID' marked as not used in the given context. - - - - - - - Value of '@currencyID' is not allowed. - - - - - - Element 'ram:TotalAllowanceChargeAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalDepositFeeInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalDiscountAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalPrepaidAmount' is marked as not used in the given context. - - - - - - Element 'ram:TotalRetailValueInformationAmount' is marked as not used in the given context. - - - - - - Element 'ram:SpecifiedTradeSettlementPaymentMeans' is marked as not used in the given context. - - - - - - Element 'ram:SubtotalCalculatedTradeTax' is marked as not used in the given context. - - - - - - Element 'ram:TaxApplicableTradeCurrencyExchange' is marked as not used in the given context. - - - - - - Element 'ram:TaxCurrencyCode' is marked as not used in the given context. - - - - - - Element 'ram:UltimatePayeeTradeParty' is marked as not used in the given context. - - - - - - Element 'ram:IncludedSupplyChainTradeLineItem' is marked as not used in the given context. - - - - - - Element 'rsm:ValuationBreakdownStatement' is marked as not used in the given context. - - - diff --git a/src/zugferd2/Schema/MINIMUM/Schematron/FACTUR-X_MINIMUM_codedb.xml b/src/zugferd2/Schema/MINIMUM/Schematron/FACTUR-X_MINIMUM_codedb.xml deleted file mode 100644 index bc54d53b..00000000 --- a/src/zugferd2/Schema/MINIMUM/Schematron/FACTUR-X_MINIMUM_codedb.xml +++ /dev/null @@ -1,658 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/zugferd2/Schema/MINIMUM/_XSLT_MINIMUM/FACTUR-X_1.0.07_MINIMUM.xslt b/src/zugferd2/Schema/MINIMUM/_XSLT_MINIMUM/FACTUR-X_1.0.07_MINIMUM.xslt new file mode 100644 index 00000000..37c2dc17 --- /dev/null +++ b/src/zugferd2/Schema/MINIMUM/_XSLT_MINIMUM/FACTUR-X_1.0.07_MINIMUM.xslt @@ -0,0 +1,1877 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + *: + + [namespace-uri()=' + + '] + + + + [ + + ] + + + + / + + @ + + + @*[local-name()=' + + ' and namespace-uri()=' + + '] + + + + + + + + + / + + + [ + + ] + + + + /@ + + + + + + + + / + + + [ + + ] + + + + /@ + + + + + + + + + + + + + + + + + + + + + + + + . + + + + +U + + U + + + + U. + + n + + + + U. + + _ + + _ + + + + + + + + +   +   +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Schema for Factur-X; 1.0.07; Accounting, MINIMUM + + + + + + + + + + + + + + + + + + [BR-CO-26]-In order for the buyer to automatically identify a supplier, the Seller identifier (BT-29), the Seller legal registration identifier (BT-30) and/or the Seller VAT identifier (BT-31) shall be present. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-CO-09]-The Seller VAT identifier (BT-31), the Seller tax representative VAT identifier (BT-63) and the Buyer VAT identifier (BT-48) shall have a prefix in accordance with ISO code ISO 3166-1 alpha-2 by which the country of issue may be identified. Nevertheless, Greece may use the prefix ‘EL’. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-13]-An Invoice shall have the Invoice total amount without VAT (BT-109). + + + + + + + + + + + + + + [BR-14]-An Invoice shall have the Invoice total amount with VAT (BT-112). + + + + + + + + + + + + + + [BR-15]-An Invoice shall have the Amount due for payment (BT-115). + + + + + + + + + + + + + + [BR-DEC-12]-The allowed maximum number of decimals for the Invoice total amount without VAT (BT-109) is 2. + + + + + + + + + + + + + + [BR-DEC-13]-The allowed maximum number of decimals for the Invoice total VAT amount (BT-110) is 2. + + + + + + + + + + + + + + [BR-DEC-14]-The allowed maximum number of decimals for the Invoice total amount with VAT (BT-112) is 2. + + + + + + + + + + + + + + [BR-DEC-18]-The allowed maximum number of decimals for the Amount due for payment (BT-115) is 2. + + + + + + + + + + + + + + + + + + + + + + + + + + + [BR-01]-An Invoice shall have a Specification identifier (BT-24). + + + + + + + + + + + + + + [BR-02]-An Invoice shall have an Invoice number (BT-1). + + + + + + + + + + + + + + [BR-03]-An Invoice shall have an Invoice issue date (BT-2). + + + + + + + + + + + + + + [BR-04]-An Invoice shall have an Invoice type code (BT-3). + + + + + + + + + + + + + + [BR-05]-An Invoice shall have an Invoice currency code (BT-5). + + + + + + + + + + + + + + [BR-06]-An Invoice shall contain the Seller name (BT-27). + + + + + + + + + + + + + + [BR-07]-An Invoice shall contain the Buyer name (BT-44). + + + + + + + + + + + + + + [BR-08]-An Invoice shall contain the Seller postal address (BG-5). + + + + + + + + + + + + + + [BR-09]-The Seller postal address (BG-5) shall contain a Seller country code (BT-40). + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:TypeCode' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@format' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@format' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:TypeCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:BusinessProcessSpecifiedDocumentContextParameter' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GuidelineSpecifiedDocumentContextParameter' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:ID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SellerTradeParty' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:BuyerTradeParty' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:IssuerAssignedID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @schemeID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:SpecifiedTaxRegistration' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:Name' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:PostalTradeAddress' must occur exactly 1 times. + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="VA"]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ram:ID/@schemeID="FC"]' may occur at maximum 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:CountryID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:CountryID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@schemeID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:SpecifiedTaxRegistration[ not(ram:ID/@schemeID="VA") and not(ram:ID/@schemeID="FC")]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:ID' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@schemeID' is required in this context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:InvoiceCurrencyCode' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:SpecifiedTradeSettlementHeaderMonetarySummation' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of 'ram:InvoiceCurrencyCode' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Element 'ram:TaxBasisTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[@currencyID=../../ram:InvoiceCurrencyCode]' may occur at maximum 1 times. + + + + + + + + + + + + + + Element 'ram:GrandTotalAmount' must occur exactly 1 times. + + + + + + + + + + + + + + Element 'ram:DuePayableAmount' must occur exactly 1 times. + + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Attribute @currencyID' marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + Element variant 'ram:TaxTotalAmount[ not(@currencyID=../../ram:InvoiceCurrencyCode) and not(@currencyID=../../ram:TaxCurrencyCode)]' is marked as not used in the given context. + + + + + + + + + + + + + + + + + + + + + + + + + + + Value of '@currencyID' is not allowed. + + + + + + + + + + + + + + + + + + + + + + + + + + + Attribute '@currencyID' is required in this context. + + + + + + + + + + diff --git a/src/zugferd2/Schema/MINIMUM/_XSLT_MINIMUM/FACTUR-X_1.0.07_MINIMUM_codedb.xml b/src/zugferd2/Schema/MINIMUM/_XSLT_MINIMUM/FACTUR-X_1.0.07_MINIMUM_codedb.xml new file mode 100644 index 00000000..74a7b49c --- /dev/null +++ b/src/zugferd2/Schema/MINIMUM/_XSLT_MINIMUM/FACTUR-X_1.0.07_MINIMUM_codedb.xml @@ -0,0 +1,908 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/zugferd2/Validator.php b/src/zugferd2/Validator.php index d923e22b..e8cff6bb 100644 --- a/src/zugferd2/Validator.php +++ b/src/zugferd2/Validator.php @@ -6,11 +6,11 @@ class Validator { - public const SCHEMA_BASIC = __DIR__ . '/Schema/BASIC/FACTUR-X_BASIC.xsd'; - public const SCHEMA_BASIC_WL = __DIR__ . '/Schema/BASIC-WL/FACTUR-X_BASIC-WL.xsd'; - public const SCHEMA_EN16931 = __DIR__ . '/Schema/EN16931/FACTUR-X_EN16931.xsd'; - public const SCHEMA_EXTENDED = __DIR__ . '/Schema/EXTENDED/FACTUR-X_EXTENDED.xsd'; - public const SCHEMA_MINIMUM = __DIR__ . '/Schema/MINIMUM/FACTUR-X_MINIMUM.xsd'; + public const SCHEMA_BASIC = __DIR__ . '/Schema/BASIC/Factur-X_1.0.07_BASIC.xsd'; + public const SCHEMA_BASIC_WL = __DIR__ . '/Schema/BASIC-WL/Factur-X_1.0.07_BASICWL.xsd'; + public const SCHEMA_EN16931 = __DIR__ . '/Schema/EN16931/Factur-X_1.0.07_EN16931.xsd'; + public const SCHEMA_EXTENDED = __DIR__ . '/Schema/EXTENDED/Factur-X_1.0.07_EXTENDED.xsd'; + public const SCHEMA_MINIMUM = __DIR__ . '/Schema/MINIMUM/Factur-X_1.0.07_MINIMUM.xsd'; public function validateAgainstXsd(string $xml, string $schemaFile): ?string { diff --git a/tests/zugferd2/Tests/Examples/BASIC WL/BASIC-WL_Einfach_2.3.xml b/tests/zugferd2/Tests/Examples/BASIC WL/BASIC-WL_Einfach_2.3.xml new file mode 100644 index 00000000..4cb15d95 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/BASIC WL/BASIC-WL_Einfach_2.3.xml @@ -0,0 +1,176 @@ + + + + + + + + + + urn:factur-x.eu:1p0:basicwl + + + + TX-471102 + 380 + + 20241115 + + + Rechnung gemäß Taxifahrt vom 14.11.2024 + + + Taxiunternehmen TX GmbH +Lieferantenstraße 20 +10369 Berlin +Deutschland +Geschäftsführer: Hans Mustermann +Handelsregisternummer: H A 123 + + + + Unsere GLN: 4000001123452 +Ihre GLN: 4000001987658 +Ihre Kundennummer: GE2020211 + + + + + + + Taxiunternehmen TX GmbH + + 10369 + Lieferantenstraße 20 + Berlin + DE + + + DE123456789 + + + + Taxi-Gast AG Mitte + + 13351 + Hans Mustermann + Kundenstraße 15 + Berlin + DE + + + + + + + 20240919 + + + + + EUR + + 1.18 + VAT + 16.90 + S + 7 + + + + 20241215 + + + + 16.90 + 0.00 + 0.00 + 16.90 + 1.18 + 18.08 + 18.08 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/BASIC/BASIC_Einfach_2.3.xml b/tests/zugferd2/Tests/Examples/BASIC/BASIC_Einfach_2.3.xml new file mode 100644 index 00000000..bd062f30 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/BASIC/BASIC_Einfach_2.3.xml @@ -0,0 +1,213 @@ + + + + + + + + + + urn:cen.eu:en16931:2017#compliant#urn:factur-x.eu:1p0:basic + + + + 471102 + 380 + + 20241115 + + + Rechnung gemäß Bestellung vom 01.11.2024. + + + Lieferant GmbH +Lieferantenstraße 20 +80333 München +Deutschland +Geschäftsführer: Hans Muster +Handelsregisternummer: H A 123 + + + + Unsere GLN: 4000001123452 +Ihre GLN: 4000001987658 +Ihre Kundennummer: GE2020211 + + +Zahlbar innerhalb 30 Tagen netto bis 25.12.2024, 3% Skonto innerhalb 10 Tagen bis 25.11.2024. + + + + + + + 1 + + + 4012345001235 + + GTIN: 4012345001235 +Unsere Art.-Nr.: TB100A4 +Trennblätter A4 + + + + + 9.90 + + + + 20.0000 + + + + VAT + S + 19 + + + 198.00 + + + + + + Lieferant GmbH + + 80333 + Lieferantenstraße 20 + München + DE + + + 201/113/40209 + + + DE123456789 + + + + Kunden AG Mitte + + 69876 + Hans Muster + Kundenstraße 15 + Frankfurt + DE + + + + + + + 20241114 + + + + + EUR + + 37.62 + VAT + 198.00 + S + 19.00 + + + + 20241215 + + + + 198.00 + 0.00 + 0.00 + 198.00 + 37.62 + 235.62 + 235.62 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/BASIC/BASIC_Rechnungskorrektur_2.3.xml b/tests/zugferd2/Tests/Examples/BASIC/BASIC_Rechnungskorrektur_2.3.xml new file mode 100644 index 00000000..502c6638 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/BASIC/BASIC_Rechnungskorrektur_2.3.xml @@ -0,0 +1,306 @@ + + + + + + + + + + urn:cen.eu:en16931:2017#compliant#urn:factur-x.eu:1p0:basic + + + RK21012345 + 384 + + 20241115 + + + Es bestehen Rabatt- oder Bonusvereinbarungen. + + + MUSTERLIEFERANT GMBH +BAHNHOFSTRASSE 99 +99199 MUSTERHAUSEN +Geschäftsführung: +Max Mustermann +USt-IdNr: DE123456789 +Telefon: +49 932 431 0 +www.musterlieferant.de +HRB Nr. 372876 +Amtsgericht Musterstadt +GLN 4304171000002 + + + + Bei Rückfragen: +Telefon: +49 932 431 500 +E-Mail : max.muster@musterlieferant.de + + + + Warenempfänger +GLN 430417088093 +MUSTER-MARKT + +HAUPTSTRASSE 44 +31157 SARSTEDT + +Abteilung : 8211 + + + + +Bestell-Nr : B123456789 +Bestell-Datum : 01.11.2024 + +Lieferschein-Nr : L87654321012345 +Lieferschein-Datum : 14.11.2024 +Ursprungsbeleg-Nr : R87654321012345 +Reklamationsnummer : REKLA-2024-235 + + + + Rechnungsempfänger +GLN 4304171000002 +MUSTER-KUNDE GMBH + +KUNDENWEG 88 +40235 DUESSELDORF +Kunden-Nr. : 009420 + + + + + + + + 1 + + + GTIN 4123456000014 +Art-Nr-Lieferant ZS9997 +Zitronensäure 100ml +Verpackung: Flasche +VKE/Geb: 1 + + + + + 1.00 + + + + -5.0000 + + + + VAT + S + 19.00 + + + -5.00 + + + + + + 2 + + + GTIN 4123456000021 +Art-Nr-Lieferant GZ250 +Gelierzucker Extra 250g +Verpackung: Karton +VKE/Geb: 1 + + + + + 1.45 + + + + -2.0000 + + + + VAT + S + 7.00 + + + -2.90 + + + + + + GLN 4333741000005 +Lief-Nr: 549910 +MUSTERLIEFERANT GMBH + + + 99199 + BAHNHOFSTRASSE 99 + MUSTERHAUSEN + DE + + + DE123456789 + + + + GLN 4304171000002 +Kunden-Nr. : 009420 +MUSTER-KUNDE GMBH + + + 40235 + KUNDENWEG 88 + DUESSELDORF + DE + + + + + + + 20241114 + + + + + EUR + + -0.92 + VAT + -4.85 + S + 19.00 + + + -0.20 + VAT + -2.82 + S + 7.00 + + + + false + + -0.15 + Rechnungsrabatt + + VAT + S + 19 + + + + + false + + -0.08 + Rechnungsrabatt + + VAT + S + 7 + + + + -7.90 + 0.00 + -0.23 + -7.67 + -1.12 + -8.79 + -8.79 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/BASIC/BASIC_Taxifahrt_2.3.xml b/tests/zugferd2/Tests/Examples/BASIC/BASIC_Taxifahrt_2.3.xml new file mode 100644 index 00000000..7f7dc1b9 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/BASIC/BASIC_Taxifahrt_2.3.xml @@ -0,0 +1,228 @@ + + + + + + + + + + urn:cen.eu:en16931:2017#compliant#urn:factur-x.eu:1p0:basic + + + + TX-471102 + 380 + + 20241115 + + + Rechnung gemäß Taxifahrt vom 14.11.2024 + + + Taxiunternehmen TX GmbH +Lieferantenstraße 20 +10369 Berlin +Deutschland +Geschäftsführer: Hans Mustermann +Handelsregisternummer: H A 123 + + + + Unsere GLN: 4000001123452 +Ihre GLN: 4000001987658 +Ihre Kundennummer: GE2020211 + + + + + + + 1 + + + Grundpreis (Pauschale) + + + + 3.90 + + + + 1 + + + + VAT + S + 7 + + + 3.90 + + + + + + 2 + + + Stadtfahrt - 2,00 Euro je gefahrene Kilometer + + + + 2.00 + + + + 6.50 + + + + VAT + S + 7 + + + 13 + + + + + + Taxiunternehmen TX GmbH + + 10369 + Lieferantenstraße 20 + Berlin + DE + + + DE123456789 + + + + Taxi-Gast AG Mitte + + 13351 + Hans Mustermann + Kundenstraße 15 + Berlin + DE + + + + + + + 20241114 + + + + + EUR + + 1.18 + VAT + 16.90 + S + 7 + + + + 20241215 + + + + 16.90 + 0.00 + 0.00 + 16.90 + 1.18 + 18.08 + 18.08 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/EN16931/EN16931_Einfach_2.3.xml b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Einfach_2.3.xml new file mode 100644 index 00000000..241578e9 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Einfach_2.3.xml @@ -0,0 +1,244 @@ + + + + + + + + + + urn:cen.eu:en16931:2017 + + + + 471102 + 380 + + 20241115 + + + Rechnung gemäß Bestellung vom 01.11.2024. + + + Lieferant GmbH +Lieferantenstraße 20 +80333 München +Deutschland +Geschäftsführer: Hans Muster +Handelsregisternummer: H A 123 + + REG + + + + + + 1 + + + 4012345001235 + TB100A4 + Trennblätter A4 + + + + 9.9000 + + + 9.9000 + + + + 20.0000 + + + + VAT + S + 19.00 + + + 198.00 + + + + + + 2 + + + 4000050986428 + ARNR2 + Joghurt Banane + + + + 5.5000 + + + 5.5000 + + + + 50.0000 + + + + VAT + S + 7.00 + + + 275.00 + + + + + + 549910 + 4000001123452 + Lieferant GmbH + + 80333 + Lieferantenstraße 20 + München + DE + + + 201/113/40209 + + + DE123456789 + + + + GE2020211 + Kunden AG Mitte + + 69876 + Kundenstraße 15 + Frankfurt + DE + + + + + + + 20241114 + + + + + EUR + + 19.25 + VAT + 275.00 + S + 7.00 + + + 37.62 + VAT + 198.00 + S + 19.00 + + + Zahlbar innerhalb 30 Tagen netto bis 15.12.2024, 3% Skonto innerhalb 10 Tagen bis 25.11.2024 + + + 473.00 + 0.00 + 0.00 + 473.00 + 56.87 + 529.87 + 0.00 + 529.87 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/EN16931/EN16931_Einfach_2.3_due_date.xml b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Einfach_2.3_due_date.xml new file mode 100644 index 00000000..381e869e --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Einfach_2.3_due_date.xml @@ -0,0 +1,246 @@ + + + + + + + + + + urn:cen.eu:en16931:2017 + + + + 471102 + 380 + + 20241115 + + + Rechnung gemäß Bestellung vom 01.11.2018. + + + Lieferant GmbH +Lieferantenstraße 20 +80333 München +Deutschland +Geschäftsführer: Hans Muster +Handelsregisternummer: H A 123 + + REG + + + + + + 1 + + + 4012345001235 + TB100A4 + Trennblätter A4 + + + + 9.9000 + + + 9.9000 + + + + 20.0000 + + + + VAT + S + 19.00 + + + 198.00 + + + + + + 2 + + + 4000050986428 + ARNR2 + Joghurt Banane + + + + 5.5000 + + + 5.5000 + + + + 50.0000 + + + + VAT + S + 7.00 + + + 275.00 + + + + + + 549910 + 4000001123452 + Lieferant GmbH + + 80333 + Lieferantenstraße 20 + München + DE + + + 201/113/40209 + + + DE123456789 + + + + GE2020211 + Kunden AG Mitte + + 69876 + Kundenstraße 15 + Frankfurt + DE + + + + + + + 20241114 + + + + + EUR + + 19.25 + VAT + 275.00 + S + 7.00 + + + 37.62 + VAT + 198.00 + S + 19.00 + + + + 20241215 + + + + 473.00 + 0.00 + 0.00 + 473.00 + 56.87 + 529.87 + 0.00 + 529.87 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/EN16931/EN16931_Elektron_2.3.xml b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Elektron_2.3.xml new file mode 100644 index 00000000..9f7cd5c7 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Elektron_2.3.xml @@ -0,0 +1,260 @@ + + + + + + + + + + Baurechnung + + + urn:cen.eu:en16931:2017 + + + + 181301674 + 204 + + 20241115 + + + Rapport-Nr.: 42389 vom 01.11.2024 + +Im 2. OG BT1 Besprechungsraum eine Beamerhalterung an die Decke montiert. Dafür eine Deckenplatte ausgesägt. Beamerhalterung zur Montage auseinander gebaut. Ein Stromkabel für den Beamer, ein HDMI Kabel und ein VGA Kabel durch die Halterung gezogen. Beamerhalterung wieder zusammengebaut und Beamer montiert. Beamer verkabelt und ausgerichtet. Decke geschlossen. + + + + + + 01 + + 01 Beamermontage +Für die doppelte Verlegung, falls erforderlich. + + + + TGA Obermonteur/Monteur + + + + 43.2 + + + 43.2 + + + + 3 + + + + VAT + S + 19 + + + 129.6 + + + + + + 02 + + 02 Außerhalb Angebot + + + + Beamer-Deckenhalterung + + + + 122.5 + + + 122.5 + + + + 1 + + + + VAT + S + 19 + + + 122.5 + + + + + Liselotte Müller-Lüdenscheidt + + 549910 + ELEKTRON Industrieservice GmbH + Geschäftsführer Egon Schrempp Amtsgericht Stuttgart HRB 1234 + + 74465 + Erfurter Strasse 13 + Demoort + DE + + + DE136695976 + + + + 16259 + ConsultingService GmbH + + 76138 + Musterstr. 18 + Karlsruhe + DE + + + + per Mail vom 01.09.2024 + + + 13130162 + #ef=Aufmass.png + 916 + + + 42389 + #ef=ElektronRapport_neu-red.pdf + 916 + + + 13130162 + Projekt + + + + + + 20241101 + + + + + Rechnung 181301674 + EUR + + 58 + + DE91100000000123456789 + + + + 47.9 + VAT + 252.1 + S + 19 + + + Zahlbar sofort rein netto + + + 252.1 + 0 + 0 + 252.1 + 47.9 + 300 + 0 + 300 + + + 420 + + + + diff --git a/tests/zugferd2/Tests/Examples/EN16931/EN16931_Gutschrift_2.3.xml b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Gutschrift_2.3.xml new file mode 100644 index 00000000..7358037b --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Gutschrift_2.3.xml @@ -0,0 +1,247 @@ + + + + + + + + + + urn:cen.eu:en16931:2017 + + + + 471102 + 389 + + 20241115 + + + Rechnung gemäß Bestellung vom 01.11.2024. + + + Lieferant GmbH +Lieferantenstraße 20 +80333 München +Deutschland +Geschäftsführer: Hans Muster +Handelsregisternummer: H A 123 + + REG + + + + + + 1 + + + 4012345001235 + TB100A4 + Trennblätter A4 + + + + 9.9000 + + + 9.9000 + + + + 20.0000 + + + + VAT + S + 19.00 + + + 198.00 + + + + + + 2 + + + 4000050986428 + ARNR2 + Joghurt Banane + + + + 5.5000 + + + 5.5000 + + + + 50.0000 + + + + VAT + S + 7.00 + + + 275.00 + + + + + + 549910 + 4000001123452 + Lieferant GmbH + + 80333 + Lieferantenstraße 20 + München + DE + + + 201/113/40209 + + + DE123456789 + + + + GE2020211 + Kunden AG Mitte + + 69876 + Kundenstraße 15 + Frankfurt + DE + + + DE136695976 + + + + + + + 20241114 + + + + + EUR + + 19.25 + VAT + 275.00 + S + 7.00 + + + 37.62 + VAT + 198.00 + S + 19.00 + + + Der Betrag wird ihrem Kundenkonto gutgeschrieben und mit der nächsten Rechnung verrechnet. + + + 473.00 + 0.00 + 0.00 + 473.00 + 56.87 + 529.87 + 0.00 + 529.87 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/EN16931/EN16931_Rechnungskorrektur_2.3.xml b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Rechnungskorrektur_2.3.xml new file mode 100644 index 00000000..e0cf2ebd --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Rechnungskorrektur_2.3.xml @@ -0,0 +1,333 @@ + + + + + + + + + + urn:cen.eu:en16931:2017 + + + + RK21012345 + 384 + + 20241115 + + + Es bestehen Rabatt- oder Bonusvereinbarungen. + AAK + + + MUSTERLIEFERANT GMBH +BAHNHOFSTRASSE 99 +99199 MUSTERHAUSEN +Geschäftsführung: +Max Mustermann +USt-IdNr: DE123456789 +Telefon: +49 932 431 0 +www.musterlieferant.de +HRB Nr. 372876 +Amtsgericht Musterstadt +GLN 4304171000002 + + REG + + + Bei Rückfragen: +Telefon: +49 932 431 500 +E-Mail : max.muster@musterlieferant.de + + + + Ursprungsbeleg-Nr : R87654321012345 +Reklamationsnummer : REKLA-2018-235 + + + + Warenempfänger +GLN 430417088093 +MUSTER-MARKT + +HAUPTSTRASSE 44 +31157 SARSTEDT + +Abteilung : 8211 + + + + + + + 1 + + + 4123456000014 + ZS997 + Zitronensäure 100ml + Verpackung: Flasche +VKE/Geb: 1 + + + + + 1.0000 + + + 1.0000 + + + + -5.0000 + + + + VAT + S + 19.00 + + + -5.00 + + + + + + 2 + + + 4123456000021 + GZ250 + Gelierzucker Extra 250g + Verpackung: Karton +VKE/Geb: 1 + + + + + + 1.5000 + + + false + + 0.05 + + + + 1.4500 + + + + -2.0000 + + + + VAT + S + 7.00 + + + -2.90 + + + + + + 549910 + 4333741000005 + MUSTERLIEFERANT GMBH + + 99199 + BAHNHOFSTRASSE 99 + MUSTERHAUSEN + DE + + + DE123456789 + + + + 009420 + MUSTER-KUNDE GMBH + + 40235 + KUNDENWEG 88 + DUESSELDORF + DE + + + + B123456789 + + + + + + 20241110 + + + + L87654321012345 + + + + EUR + + -0.92 + VAT + -4.85 + S + 19.00 + + + -0.20 + VAT + -2.82 + S + 7.00 + + + + false + + -0.10 + Rechnungsrabatt 1 -2,00% Basisbetrag: -5,00, MwSt. % 19,0 + + VAT + S + 19.00 + + + + + false + + -0.06 + Rechnungsrabatt 1 -2,00% Basisbetrag: -2,90, MwSt. % 7,0 + + VAT + S + 7.00 + + + + + false + + -0.05 + Rechnungsrabatt 2 Basisbetrag: -5,00, MwSt. % 19,0 + + VAT + S + 19.00 + + + + + false + + -0.02 + Rechnungsrabatt 2 Basisbetrag: -2,90, MwSt. % 7,0 + + VAT + S + 7.00 + + + + -7.90 + 0.00 + -0.23 + -7.67 + -1.12 + -8.79 + 0.00 + -8.79 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/EN16931/EN16931_Reisekostenabrechnung_2.3.xml b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Reisekostenabrechnung_2.3.xml new file mode 100644 index 00000000..2bab0736 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EN16931/EN16931_Reisekostenabrechnung_2.3.xml @@ -0,0 +1,327 @@ + + + + + + + + + + urn:cen.eu:en16931:2017 + + + + 280081 + 380 + + 20241115 + + + Listelotte Müllermann, Kumpelstr. 54, 12345 Berlin +Handelsregisternummer: H A 713 + + REG + + + Flug wurde vom Auftraggeber gebucht. + + AAI + + + Reise: Musterreisekostenabrechnung +Zweck: Workshop in Nürnberg +Land: Deutschland +Strecke: Berlin - Berlin + + AAI + + + + + + 1 + + + Übernachtung. 2 Nächte Hotel + + + + 158.88 + + + 158.88 + + + + 1 + + + + VAT + S + 7.00 + + + 158.88 + + + + + + 2 + + + Verpflegung Frühstück + + + + 11.76 + + + 11.76 + + + + 1 + + + + VAT + S + 19.00 + + + 11.76 + + + + + + 3 + + + Fahrtkosten, Taxi Berlin + + + + 23.36 + + + 23.36 + + + + 1 + + + + VAT + S + 7.00 + + + 23.36 + + + + + + 4 + + + Fahrtkosten, Taxi Nürnberg + + + + 20.09 + + + 20.09 + + + + 1 + + + + VAT + S + 7.00 + + + 20.09 + + + + + + 549910 + 4000001123452 + Lieferant GmbH + + 80333 + Lieferantenstraße 20 + München + DE + + + 201/113/40209 + + + DE123456789 + + + + GE2020211 + Kunden AG Mitte + + 69876 + Kundenstraße 15 + Frankfurt + DE + + + + 42389 + #ef=Hotelrechung-Immo.pdf + 916 + + + 42390 + #ef=Taxi-Nue-und-Berlin.pdf + 916 + + + + + Musterfirma Nürnberg + + 75319 + Am Bahnhof 42 + Nürnberg + DE + + + + + 20241105 + + + + + EUR + + 14.16 + VAT + 202.33 + S + 7.00 + + + 2.23 + VAT + 11.76 + S + 19.00 + + + 20241103 + 20241105 + + + Zahlbar innerhalb 30 Tagen netto bis 15.12.2024, 3% Skonto innerhalb 10 Tagen bis 25.11.2024 + + + 214.09 + 0.00 + 0.00 + 214.09 + 16.39 + 230.48 + 0.00 + 230.48 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/EN16931/EN16931_SEPA_Prenotification_2.3.xml b/tests/zugferd2/Tests/Examples/EN16931/EN16931_SEPA_Prenotification_2.3.xml new file mode 100644 index 00000000..34133598 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EN16931/EN16931_SEPA_Prenotification_2.3.xml @@ -0,0 +1,257 @@ + + + + + + + + + + urn:cen.eu:en16931:2017 + + + + 471102 + 380 + + 20241115 + + + Rechnung gemäß Bestellung Nr. 2018-471331 vom 01.11.2024. + + + Es bestehen Rabatt- und Bonusvereinbarungen. + AAK + + + Lieferant GmbH +Lieferantenstraße 20 +80333 München +Deutschland +Geschäftsführer: Hans Muster +Handelsregisternummer: H A 123 + + + REG + + + + + + 1 + + + 4012345001235 + TB100A4 + Trennblätter A4 + + + + 9.9000 + + + 9.9000 + + + + 20.0000 + + + + VAT + S + 19.00 + + + 198.00 + + + + + + 2 + + + 4000050986428 + ARNR2 + Joghurt Banane + + + + 5.5000 + + + 5.5000 + + + + 50.0000 + + + + VAT + S + 7.00 + + + 275.00 + + + + + + 549910 + 4000001123452 + Lieferant GmbH + + 80333 + Lieferantenstraße 20 + München + DE + + + 201/113/40209 + + + DE123456789 + + + + GE2020211 + Kunden AG Mitte + + 69876 + Kundenstraße 15 + Frankfurt + DE + + + + + + + 20241114 + + + + + DE98ZZZ09999999999 + EUR + + 59 + + DE21860000000086001055 + + + 19.25 + VAT + 275.00 + S + 7.00 + + + 37.62 + VAT + 198.00 + S + 19.00 + + + Der Betrag in Höhe von EUR 529,87 wird am 20.11.2024 von Ihrem Konto per SEPA-Lastschrift eingezogen. + + REF A-123 + + + 473.00 + 0.00 + 0.00 + 473.00 + 56.87 + 529.87 + 0.00 + 529.87 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Fremdwaehrung_2.3.xml b/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Fremdwaehrung_2.3.xml new file mode 100644 index 00000000..4d10dea8 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Fremdwaehrung_2.3.xml @@ -0,0 +1,345 @@ + + + + + + + + + + Beispielgeschäftsprozess + + + urn:cen.eu:en16931:2017#conformant#urn:factur-x.eu:1p0:extended + + + + 47110815 + RECHNUNG + 380 + + 20241115 + + + Mitglieder der Geschäftsleitung + H. Meier Geschäftsführer + T. Müller Prokurist + HRB Braunschweig 12345 + REG + + + Vom 17. Dezember 2024 bis 6. Januar 2025 haben wir Betriebsferien. + AAI + + + Aus konzern-internen Gründen wird der Steuerbetrag sowohl in der Rechungswährung (EUR) als auch in der Buchwährung (GBP) ausgegeben. + TXD + + + + + + 1 + + Materialzertifikat X-234 gem ISO XYZ. + Ware bleibt bis zur vollständigen Bezahlung unser Eigentum. + + + + + CO-123/V2A + Toolbox 0815 + Stahlcoil + + DE + + + + + ORDER84359 + 1 + + + 100.00 + 1 + + + 100 + 1 + + + + 10 + + + + VAT + S + 19 + + + + false + + 10 + 1000 + 100 + 64 + Lagerware + + + + false + + 1000 + 50 + 70 + Direktbelieferung + + + 850 + + + + + + 12345676 + Rohstoff AG Salzgitter + + 38226 + Marktstr. 153 + Salzgitter + DE + + + DE123456789 + + + + 75969813 + Metallbau Leipzig GmbH & Co. KG + + 12345 + Pappelallee 15 + Hof 3 + Leipzig + DE + + + 04 0 11 000 - 12345 12345 - 35 + + + + Global Supplies Financial Services + + 12345 + Friedrichstraße 165 + Berlin + DE + + + DE1334567 + + + + + + 75969815 + Metallbau Leipzig GmbH & Co. KG + + 12347 + Eichenpromenade 37 + Tor 1 + Metallstadt + DE + + + 999999999 + + + + + 20241111 + + + + + EUR + GBP + + 432156789 + Global Supplies Financial Services + + 12345 + Friedrichstraße 165 + Berlin + DE + + + + GBP + EUR + 1.12244 + + 20181031 + + + + 58 + + DE77 3707 0060 0321 9870 00 + Global Supplies Financial Services + + + + 163.16 + VAT + 858.75 + 850 + 8.75 + S + 19 + + + + 20181001 + + + 20181031 + + + + + true + + 30 + ABK + Einwegverpackung + + VAT + S + 19 + + + + + false + + 2.5 + 850 + 21.25 + 102 + Stammkundenrabatt + + VAT + S + 19 + + + + Zahlbar ohne Abschlag bis + + 20241201 + + + + Zahlbar mit 2% Skonto bis + + 20241120 + + + + 850 + 30 + 21.25 + 858.75 + 163.16 + 183.14 + 1021.91 + 500 + 521.91 + + + + diff --git a/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_InnergemeinschLieferungMehrereBestellungen_2.3.xml b/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_InnergemeinschLieferungMehrereBestellungen_2.3.xml new file mode 100644 index 00000000..5bea876c --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_InnergemeinschLieferungMehrereBestellungen_2.3.xml @@ -0,0 +1,324 @@ + + + + + + + + + + Beispielgeschäftsprozess + + + urn:cen.eu:en16931:2017#conformant#urn:factur-x.eu:1p0:extended + + + + 47110818 + 380 + + 20241115 + + + Mitglieder der Geschäftsleitung: +Geschäftsführerin: Johanna Musterfrau +Prokuristin: Isabell Herrlich +HRB Berlin 13086 + REG + + + + + + 1 + + + CO-123/V2A + Toolbox 0815 + Windschutzscheibe + + DE + + + + + ORDER84359 + 1 + + + 100 + 1 + + + 100 + 1 + + + + 10 + + + + VAT + Kein Ausweis der Umsatzsteuer bei innergemeinschaftlichen Lieferungen + K + 0 + + + + 20241001 + + + 20241031 + + + + 1000 + + + + + + 2 + + + IM-712/A2A + BR-4529-ZF + Stoßfänger + + DE + + + + + ORDER84753 + 7 + + + 100 + 1 + + + 100 + 1 + + + + 10 + + + + VAT + Kein Ausweis der Umsatzsteuer bei innergemeinschaftlichen Lieferungen + K + 0 + + + + 20241001 + + + 20241031 + + + + 1000 + + + + + + 12345676 + Global Supplies Ltd. + + SW1B 3BN + 153 Victoria Street + London + GB + + + GB999999999 + + + + 75969813 + Metallbau Leipzig GmbH & Co. KG + + 12345 + Pappelallee 15 + Hof 3 + Leipzig + DE + + + 04 0 11 000 - 12345 12345 - 35 + + + DE123456789 + + + + Global Supplies Financial Services + + 12345 + Friedrichstraße 165 + Berlin + DE + + + DE987654321 + + + + + + 75969815 + Metallbau Leipzig GmbH & Co. KG + + 12347 + Eichenpromenade 37 + Tor 1 + Metallstadt + DE + + + 999999999 + + + + + 20241031 + + + + + EUR + + 432156789 + Global Supplies Financial Services + + 12345 + Friedrichstraße 165 + Berlin + DE + + + + 58 + + DE77 3707 0060 0321 9870 00 + Global Supplies Financial Services + + + + 0 + VAT + Kein Ausweis der Umsatzsteuer bei innergemeinschaftlichen Lieferungen + 2000 + K + 0 + + + + 20241001 + + + 20241031 + + + + + 20241130 + + + + 2000.00 + 2000.00 + 0.00 + 2000.00 + 2000.00 + + + + diff --git a/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Kostenrechnung_2.3.xml b/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Kostenrechnung_2.3.xml new file mode 100644 index 00000000..cfb77358 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Kostenrechnung_2.3.xml @@ -0,0 +1,427 @@ + + + + + + + + + + true + + + urn:cen.eu:en16931:2017#conformant#urn:factur-x.eu:1p0:extended + + + + KR87654321012 + KOSTENRECHNUNG + 380 + + 20241115 + + + ST3 + Es bestehen Rabatt- oder Bonusvereinbarungen. + AAK + + + EEV + Der Verkäufer bleibt Eigentümer der Waren bis zur vollständigen Erfüllung der Kaufpreisforderung. + AAJ + + + MUSTERLIEFERANT GMBH +BAHNHOFSTRASSE 99 +99199 MUSTERHAUSEN +Geschäftsführung: +Max Mustermann +USt-IdNr: DE123456789 +Telefon: +49 932 431 0 +www.musterlieferant.de +HRB Nr. 372876 +Amtsgericht Musterstadt +GLN 4304171000002 + + REG + + + + + + 1 + + + 4123456000014 + WA997 + Wirkarbeit HT + + Zählpunkt + DE0001346484600000000000000100038 + + + + + 0.0520 + + + 0.0520 + + + + 1000.0000 + + + + VAT + S + 19.00 + + + 52.00 + + + + + + 2 + + + 4123456000021 + ÖST250 + Ökosteuer Lieferant + + + + 0.0205 + + + 0.0205 + + + + 1000.0000 + + + + VAT + S + 19.00 + + + 20.50 + + + + + + 3 + + + 4260331811362 + Kommissionierer 1250032 D. Muster + Besteller: Hr. Mayer, Personalnr. 4488 + + + + 15.0000 + + + false + + 4.50 + Artikelrabatt 1 + + + + 10.5000 + + + + 27.5000 + + + + VAT + S + 19.00 + + + 288.75 + + + + + + 4 + + + 2001015001325 + FB05 + FALTENBEUTEL 16x6x28 CM + + + + 0.0105 + + + 0.0105 + + + + 3500.0000 + + + + VAT + S + 19.00 + + + 36.75 + + + + + + 5 + + + 4123456000038 + KOP05 + Kopierpapier A4 + Zählerstand von-bis: 543210 - 544420 + + Zähler-Nr. + MG-X79318 + + + + + 0.0100 + + + 0.0100 + + + + 1210.0000 + + + + VAT + S + 19.00 + + + 12.10 + + + + + + 549910 + 4333741000005 + MUSTERLIEFERANT GMBH + + + +49 932 431 500 + + + max.mustermann@musterlieferant.de + + + + 99199 + BAHNHOFSTRASSE 99 + MUSTERHAUSEN + DE + + + 201/113/40209 + + + + 339420 + 4304171000002 + MUSTER-KUNDE GMBH + + 40235 + KUNDENWEG 88 + DUESSELDORF + DE + + + + A777123 + 130 + + + + + 4304171088093 + MUSTER-MARKT + + 7322 + + + 31157 + HAUPTSTRASSE 44 + SARSTEDT + DE + + + + + 20241030 + + + + L87654321012 + + + + EUR + + 339420 + 4304171000002 + MUSTER-KUNDE GMBH + + 40235 + KUNDENWEG 88 + DUESSELDORF + DE + + + + 76.67 + VAT + 403.55 + 410.10 + -6.55 + S + 19.00 + + + + false + + 410.10 + 21.55 + Sonderrabatt + + VAT + S + 19.00 + + + + Transportkosten: Frachbetrag + 15.00 + + VAT + S + 19.00 + + + + Skontovereinbarung: 2% bei Zahlung innerhalb 10 Tagen nach Rechnungsdatum + + 10 + 2.00 + + + + 410.10 + 15.00 + 21.55 + 403.55 + 76.67 + 480.22 + 0.00 + 480.22 + + + + diff --git a/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Rechnungskorrektur_2.3.xml b/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Rechnungskorrektur_2.3.xml new file mode 100644 index 00000000..8b1dc3d9 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Rechnungskorrektur_2.3.xml @@ -0,0 +1,373 @@ + + + + + + + + + + true + + + Beispielgeschäftsprozess + + + urn:cen.eu:en16931:2017#conformant#urn:factur-x.eu:1p0:extended + + + + RK21012345 + RECHNUNGS-KORREKTUR + 384 + + 20241115 + + + ST3 + Es bestehen Rabatt- oder Bonusvereinbarungen. + AAK + + + MUSTERLIEFERANT GMBH +BAHNHOFSTRASSE 99 +99199 MUSTERHAUSEN +Geschäftsführung: +Max Mustermann +USt-IdNr: DE123456789 +Telefon: +49 932 431 0 +www.musterlieferant.de +HRB Nr. 372876 +Amtsgericht Musterstadt +GLN 4304171000002 + + REG + + + + + + 1 + + + 4123456000014 + ZS997 + Zitronensäure 100ml + + + + 1.0000 + + + 1.0000 + + + + -5.0000 + 1.0000 + + + + VAT + S + 19.00 + + + -5.00 + + + + + + 2 + + + 4123456000021 + GZ250 + Gelierzucker Extra 250g + + + + 1.5000 + + + false + + 0.0300 + Artikelrabatt 1 + + + + false + + 0.0200 + Artikelrabatt 2 + + + + 1.4500 + + + + -2.0000 + 1.0000 + + + + VAT + S + 7.00 + + + -2.90 + + + + + + 549910 + 4333741000005 + MUSTERLIEFERANT GMBH + + + +49 932 431 500 + + + max.mustermann@musterlieferant.de + + + + 99199 + BAHNHOFSTRASSE 99 + MUSTERHAUSEN + DE + + + DE123456789 + + + + 009420 + 4304171000002 + MUSTER-KUNDE GMBH + + 40235 + KUNDENWEG 88 + DUESSELDORF + DE + + + + B123456789 + + + REKLA-2018-235 + 130 + + + R87654321012345 + 130 + + + + + 4304171088093 + MUSTER-MARKT + + 8211 + + + 31157 + HAUPTSTRASSE 44 + SARSTEDT + DE + + + + + 20180805 + + + + L87654321012345 + + + + EUR + + 009420 + 4304171000002 + MUSTER-KUNDE GMBH + + 40235 + KUNDENWEG 88 + DUESSELDORF + DE + + + + -0.92 + VAT + -4.85 + -5.00 + 0.15 + S + 19.00 + + + -0.20 + VAT + -2.82 + -2.90 + 0.08 + S + 7.00 + + + + false + + -2.00 + 5.00 + -0.10 + Rechnungsrabatt 1 + + VAT + S + 19.00 + + + + + false + + -2.00 + 2.90 + -0.06 + Rechnungsrabatt 1 + + VAT + S + 7.00 + + + + + false + + 5.00 + -0.05 + Rechnungsrabatt 2 + + VAT + S + 19.00 + + + + + false + + -2.90 + -0.02 + Rechnungsrabatt 2 + + VAT + S + 7.00 + + + + -7.90 + 0.00 + -0.23 + -7.67 + -1.12 + -8.79 + 0.00 + -8.79 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Warenrechnung_2.3.xml b/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Warenrechnung_2.3.xml new file mode 100644 index 00000000..ecda9f25 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/EXTENDED/EXTENDED_Warenrechnung_2.3.xml @@ -0,0 +1,565 @@ + + + + + + + + + + true + + + urn:cen.eu:en16931:2017#conformant#urn:factur-x.eu:1p0:extended + + + + R87654321012345 + WARENRECHNUNG + 380 + + 20241115 + + + ST3 + Es bestehen Rabatt- oder Bonusvereinbarungen. + AAK + + + EEV + Der Verkäufer bleibt Eigentümer der Waren bis zu vollständigen Erfüllung der Kaufpreisforderung. + AAJ + + + MUSTERLIEFERANT GMBH +BAHNHOFSTRASSE 99 +99199 MUSTERHAUSEN +Geschäftsführung: +Max Mustermann +USt-IdNr: DE123456789 +Telefon: +49 932 431 0 +www.musterlieferant.de +HRB Nr. 372876 +Amtsgericht Musterstadt +GLN 4304171000002 +WEEE-Reg-Nr.: DE87654321 + + REG + + + Leergutwert: 46,50 + + + Wichtige Information: Bei Bestellungen bis zum 19.12. ist die Auslieferung bis spätestens 23.12. garantiert. + + + + + + 1 + + + 4123456000014 + ZS997 + Zitronensäure 100ml + + Verpackungsart + BO + + + + + 1.0000 + + + 1.0000 + + + + 100.0000 + 4.0000 + + + + VAT + S + 19.00 + + + 100.00 + + + + + + 2 + + + 4123456000021 + GZ250 + Gelierzucker Extra 250g + + + + 1.5000 + + + false + + 0.03 + Artikelrabatt 1 + + + + false + + 0.02 + Artikelrabatt 2 + + + + 1.4500 + + + + 50.0000 + 1.0000 + + + + VAT + S + 7.00 + + + 72.50 + + + + + + 3 + + + 4123456000021 + GZ250 + Gelierzucker Extra 250g + Artikel wie vereinbart ohne Berechnung + + + + 0.0000 + + + 0.0000 + + + + 10.0000 + 1.0000 + + + + VAT + S + 7.00 + + + 0.00 + + + + + + 4 + + + 4100130013294 + 2031 + Bierbrau Pils 20/0500 + EAN-VKE: 4100130913297 + + Verpackung + Kiste + + + + + 12.0000 + + + 12.0000 + + + + 15.0000 + 20.0000 + + + + VAT + S + 19.00 + + + 180.00 + + + + + + 5 + + + 2001015001325 + 1805 + Leergutpfand 20 x 0,5l + + Verpackung + unverpackt + + + + + 3.1000 + + + 3.1000 + + + + 15.0000 + 1.0000 + + + + VAT + S + 19.00 + + + 46.50 + + + + + + 6 + + + 4123456000038 + MP107 + Mischpalette Joghurt Karton 3 x 20 + + Verpackung + Karton + + + 4123456001035 + JOG103 + Erdbeer 20 x 150g Becher + 20.0000 + + + 4123456002032 + JOG203 + Banane 20 x 150g Becher + 20.0000 + + + 4123456003039 + JOG303 + Schoko 20 x 150g Becher + 20.0000 + + + + + 30.0000 + + + false + + 0.90 + Artikelrabatt 1 + + + + 29.1000 + + + + 2.0000 + 1.0000 + + + + VAT + S + 7.00 + + + 58.20 + + + + + + 549910 + 4333741000005 + MUSTERLIEFERANT GMBH + + + +49 932 431 500 + + + max.mustermann@musterlieferant.de + + + + 99199 + BAHNHOFSTRASSE 99 + MUSTERHAUSEN + DE + + + DE123456789 + + + + 009420 + 4304171000002 + MUSTER-KUNDE GMBH + + 40235 + KUNDENWEG 88 + DUESSELDORF + DE + + + + B123456789 + + + A456123 + 130 + + + + + 4304171088093 + MUSTER-MARKT + + 8211 + + + 31157 + HAUPTSTRASSE 44 + SARSTEDT + DE + + + + + 20180805 + + + + L87654321012345 + + + + EUR + + 009420 + 4304171000002 + MUSTER-KUNDE GMBH + + 40235 + KUNDENWEG 88 + DUESSELDORF + DE + + + + 61.07 + VAT + 321.40 + 326.50 + -5.10 + S + 19.00 + + + 8.93 + VAT + 127.59 + 130.70 + -3.11 + S + 7.00 + + + + false + + 2.00 + 280.00 + 5.60 + Rechnungsrabatt 1 + + VAT + S + 19.00 + + + + + false + + 2.00 + 130.70 + 2.61 + Rechnungsrabatt 1 + + VAT + S + 7.00 + + + + + false + + 280.00 + 2.50 + Rechnungsrabatt 2 + + VAT + S + 19.00 + + + + + false + + 130.70 + 0.50 + Rechnungsrabatt 2 + + VAT + S + 7.00 + + + + Transportkosten + 3.00 + + VAT + S + 19.00 + + + + Bei Zahlung innerhalb 14 Tagen gewähren wir 2,0% Skonto. + + 14 + 2.00 + + + + 457.20 + 3.00 + 11.21 + 448.99 + 70.00 + 518.99 + 0.00 + 518.99 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/MINIMUM/MINIMUM_Buchungshilfe_2.3.xml b/tests/zugferd2/Tests/Examples/MINIMUM/MINIMUM_Buchungshilfe_2.3.xml new file mode 100644 index 00000000..cafa2330 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/MINIMUM/MINIMUM_Buchungshilfe_2.3.xml @@ -0,0 +1,130 @@ + + + + + + + + + + urn:factur-x.eu:1p0:minimum + + + + 471102 + 751 + + 20241115 + + + + + + Lieferant GmbH + + DE + + + 201/113/40209 + + + DE123456789 + + + + Kunden AG Mitte + + + + + EUR + + 198.00 + 37.62 + 235.62 + 235.62 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/MINIMUM/MINIMUM_RECHNUNG_2.3.xml b/tests/zugferd2/Tests/Examples/MINIMUM/MINIMUM_RECHNUNG_2.3.xml new file mode 100644 index 00000000..030c4000 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/MINIMUM/MINIMUM_RECHNUNG_2.3.xml @@ -0,0 +1,130 @@ + + + + + + + + + + urn:factur-x.eu:1p0:minimum + + + + 471102 + 380 + + 20241115 + + + + + + Lieferant GmbH + + DE + + + 201/113/40209 + + + DE123456789 + + + + Kunden AG Frankreich + + + + + EUR + + 198.00 + 37.62 + 235.62 + 235.62 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/XRECHNUNG/XRECHNUNG_Betriebskostenabrechnung_2.3.xml b/tests/zugferd2/Tests/Examples/XRECHNUNG/XRECHNUNG_Betriebskostenabrechnung_2.3.xml new file mode 100644 index 00000000..0f9a89f0 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/XRECHNUNG/XRECHNUNG_Betriebskostenabrechnung_2.3.xml @@ -0,0 +1,256 @@ + + + + + + + + + + urn:fdc:peppol.eu:2017:poacc:billing:01:1.0 + + + urn:cen.eu:en16931:2017#compliant#urn:xeinkauf.de:kosit:xrechnung_3.0 + + + + 471102 + 380 + + 20241115 + + + Rechnung gemäß Betriebskostenrechnung vom 01.11.2024. + + + Grundbesitz GmbH & Co. + Musterstraße 42 + 75645 Frankfurt + Deutschland + Geschäftsführer: Hans Muster + Handelsregisternummer: H A 123 + + REG + + + + + + 1 + + + 4012345001235 + Abrechnungskreis 1 + + + + 15387.08 + + + + 1.0000 + + + + VAT + S + 19 + + + 15387.08 + + + + + 04011000-12345-34 + + 4000001123452 + Grundbesitz GmbH & Co. + + Max Mustermann + Muster-Einkauf + + +49891234567 + + + Max@Mustermann.de + + + + 75645 + Musterstraße 42 + Frankfurt + DE + + + info@Mustermann.de + + + 201/113/40209 + + + DE136695976 + + + + Beispielmieter GmbH + + 12345 + Verwaltung Straße 40 + Musterstadt + DE + + + info@kunde.de + + + + Abrechnung 2010 + 916 + Betriebskostenabrechnung + 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CCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIDAVQFP36t5cggggECeELh3cJ7YDXYCAQQQuCpgc7uaJ4cAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAJ5SyAgZ3d8nJ1VhApVQa49KobcYkr9+sVaqZ1OPv9itW++WpaU4ZiSkpKODsx5YDIIIIDArwlMioqapBqua1BvTc5Uut3r9RpYU73bTWeKZm/54tD2E796pN6yhSOmxCVWTkysrP9+N5XyiC5VWaRwdBmvQiLhIuXEkRb92n6wHAEE8pDAf/Lpnel8ZNxtpqWBq1vHpQV6nJVCZ6VceTPFzEiKlvJ60kHlf5+6jpe+uzx+ejOz+V6dMv+Th946dgWBP00g1DxSAf2nM3qy+Svl7KqcKyq/hFtsJ92s2J4NqSHVuve5uDbJPp3cmmSfzm1Nypl0S+ovSDGBk5OSStxpAEqOie8SVjIwOXBQcqDEJkuwmQYF/okp7mjzgkcnXDj4RN1TL9X9A6ldRN0eoU/+ae8/D4TAXyHQ6yYPuuZRpQLqvVTcPt1fr1ctM9Wr1eua6cnbbRPdsN3gZWP1kn1Z9YYte+BVnf/m8Xr1PphSb1RilbQKlW8/SXzlymXcReyTjjIeVqSx395p0Pmd7QsH6wKvvdX7kTtJqfMyIl/M8InQqfjlqAj7ZOb+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MmYyMWYxZjFmZWRlZGVkMjAyMDIwZGNkY2RjZWNlY2VjMDYwNjA2MDkwOTA5MDMwMzAzMDgwODA4YjdiN2I3OGI4YjhiZjVmNWY1ZWVlZWVlZWJlYmViZjFmMWYxMWIxYjFiMGMwYzBjMTMxMzEzZTRlNGU0ZTBlMGUwMTQxNDE0ZTllOWU5MDcwNzA3MzgzODM4MGEwYTBhMGIwYjBiMGYwZjBmZGJkYmRiYjNiM2IzMzEzMTMxMTIxMjEyMTgxODE4Y2FjYWNhNjE2MTYxYWVhZWFlMjcyNzI3ZGZkZmRmMjIyMjIyMGQwZDBkMWUxZTFlNmI2YjZiMjQyNDI0ZDlkOWQ5YjJiMmIyZGVkZWRlMTUxNTE1YWZhZmFmMTExMTExNDg0ODQ4OTg5ODk4Y2RjZGNkYjFiMWIxMGUwZTBlMzIzMjMyMWMxYzFjZTZlNmU2MWQxZDFkZGRkZGRkZDRkNGQ0Y2NjY2NjNzM3MzczZGFkYWRhYzljOWM5ZTNlM2UzOGQ4ZDhkNGM0YzRjMTAxMDEwZThlOGU4MzUzNTM1Y2ZjZmNmNDM0MzQzZTJlMmUyNjg2ODY4YWJhYmFiZDVkNWQ1YzBjMGMwMmQyZDJkNGQ0ZDRkY2VjZWNlMjUyNTI1MmEyYTJhZTdlN2U3YjViNWI1OTM5MzkzZTFlMWUxZTVlNWU1NGU0ZTRlYzdjN2M3ZDBkMGQwMWExYTFhMzMzMzMzMjkyOTI5MTkxOTE5YThhOGE4MzkzOTM5YzZjNmM2ZDhkOGQ4MjEyMTIxYTRhNGE0NWM1YzVjNTE1MTUxZDFkMWQxYTNhM2EzNGY0ZjRmYTVhNWE1ZDZkNmQ2NWI1YjViNmM2YzZjMTcxNzE3M2YzZjNmNjc2NzY3MTYxNjE2ZDdkN2Q3YWRhZGFkYmRiZGJkOTQ5NDk0NzI3MjcyMjgyODI4NDY0NjQ2ODY4Njg2Njk2OTY5ZDNkM2QzMmIyYjJiNzg3ODc4NzQ3NDc0OWU5ZTllNzk3OTc5YzhjOGM4NTQ1NDU0MzQzNDM0YWNhY2FjODU4NTg1MzAzMDMwZDJkMmQyMjYyNjI2OGM4YzhjNTc1NzU3MmMyYzJjYjZiNmI2MmUyZTJlY2JjYmNiYWFhYWFhYTZhNmE2YjBiMGIwNGI0YjRiYmFiYWJhOTA5MDkwODc4Nzg3NmY2ZjZmNDc0NzQ3OTY5Njk2NTg1ODU4YjhiOGI4YmJiYmJiYTdhN2E3MmYyZjJmYjliOWI5OTc5Nzk3MzYzNjM2YzVjNWM1OTE5MTkxYzFjMWMxYTJhMmEyNTI1MjUyYTlhOWE5YzJjMmMyNmQ2ZDZkYzRjNGM0OTU5NTk1OGY4ZjhmYjRiNGI0M2MzYzNjYTBhMGEwNTY1NjU2YmNiY2JjOWY5ZjlmOTI5MjkyODk4OTg5NTA1MDUwYmZiZmJmMzczNzM3OGE4YThhOTk5OTk5NDI0MjQyNmE2YTZhNzY3Njc2NzA3MDcwOGU4ZThlOWQ5ZDlkNjU2NTY1NGE0YTRhNDk0OTQ5M2UzZTNlNWY1ZjVmNDQ0NDQ0NjY2NjY2NTU1NTU1ODg4ODg4YmViZWJlNzc3Nzc3M2QzZDNkYTFhMWExNmU2ZTZlNDU0NTQ1NDE0MTQxYzNjM2MzNzE3MTcxNzU3NTc1M2IzYjNiNjM2MzYzNDA0MDQwNWQ1ZDVkNTk1OTU5N2M3YzdjNTM1MzUzM2EzYTNhNjI2MjYyOWM5YzljODA4MDgwNjA2MDYwOWE5YTlhNjQ2NDY0N2E3YTdhN2Y3ZjdmOWI5YjliN2I3YjdiNWU1ZTVlODI4MjgyNWE1YTVhODQ4NDg0ODM4MzgzN2Q3ZDdkODE4MTgxN2U3ZTdlPgpdCmVuZG9iagoxMSAwIG9iago8PCAvTGVuZ3RoIDEyIDAgUiAvTiAzIC9BbHRlcm5hdGUgL0RldmljZVJHQiAvRmlsdGVyIC9GbGF0ZURlY29kZSA+PgpzdHJlYW0KeAGdlndUU9kWh8+9N73QEiIgJfQaegkg0jtIFQRRiUmAUAKGhCZ2RAVGFBEpVmRUwAFHhyJjRRQLg4Ji1wnyEFDGwVFEReXdjGsJ7601896a/cdZ39nnt9fZZ+9917oAUPyCBMJ0WAGANKFYFO7rwVwSE8vE9wIYEAEOWAHA4WZmBEf4RALU/L09mZmoSMaz9u4ugGS72yy/UCZz1v9/kSI3QyQGAApF1TY8fiYX5QKUU7PFGTL/BMr0lSkyhjEyFqEJoqwi48SvbPan5iu7yZiXJuShGlnOGbw0noy7UN6aJeGjjAShXJgl4GejfAdlvVRJmgDl9yjT0/icTAAwFJlfzOcmoWyJMkUUGe6J8gIACJTEObxyDov5OWieAHimZ+SKBIlJYqYR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KQplbmRvYmoKMTggMCBvYmoKKCkKZW5kb2JqCjE5IDAgb2JqClsgXQplbmRvYmoKMSAwIG9iago8PCAvVGl0bGUgMTQgMCBSIC9Qcm9kdWNlciAxNSAwIFIgL0NyZWF0b3IgMTYgMCBSIC9DcmVhdGlvbkRhdGUgMTcgMCBSIC9Nb2REYXRlCjE3IDAgUiAvS2V5d29yZHMgMTggMCBSIC9BQVBMOktleXdvcmRzIDE5IDAgUiA+PgplbmRvYmoKeHJlZgowIDIwCjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDI1Mzg0OCAwMDAwMCBuIAowMDAwMDAwMjA1IDAwMDAwIG4gCjAwMDAyNTM0OTEgMDAwMDAgbiAKMDAwMDAwMDAyMiAwMDAwMCBuIAowMDAwMDAwMTg3IDAwMDAwIG4gCjAwMDAwMDAzMTkgMDAwMDAgbiAKMDAwMDAwMDQwOCAwMDAwMCBuIAowMDAwMjQ5MTE4IDAwMDAwIG4gCjAwMDAyNDkxNDAgMDAwMDAgbiAKMDAwMDI1MzQ1NCAwMDAwMCBuIAowMDAwMjUwNzE4IDAwMDAwIG4gCjAwMDAyNTM0MzMgMDAwMDAgbiAKMDAwMDI1MzU4NCAwMDAwMCBuIAowMDAwMjUzNjM0IDAwMDAwIG4gCjAwMDAyNTM2ODggMDAwMDAgbiAKMDAwMDI1Mzc0MSAwMDAwMCBuIAowMDAwMjUzNzY3IDAwMDAwIG4gCjAwMDAyNTM4MDkgMDAwMDAgbiAKMDAwMDI1MzgyOCAwMDAwMCBuIAp0cmFpbGVyCjw8IC9TaXplIDIwIC9Sb290IDEzIDAgUiAvSW5mbyAxIDAgUiAvSUQgWyA8N2U0MjgzNmE4NjJkZWEzZDVlNWM3MzExNzA4ODE0ZDQ+Cjw3ZTQyODM2YTg2MmRlYTNkNWU1YzczMTE3MDg4MTRkND4gXSA+PgpzdGFydHhyZWYKMjUzOTkyCiUlRU9GCg== + + + + + + 12345 + Verwaltung Straße 40 + Einheit: 5.OG rechts + Musterstadt + DE + + + + + 20231231 + + + + + EUR + + 58 + Zahlung per SEPA Überweisung. + + DE02120300000000202051 + Kunden AG + + + BYLADEM1001 + + + + 2923.55 + VAT + 15387.08 + S + 19.00 + + + + 20230101 + + + 20231231 + + + + + 20241215 + + + + 15387.08 + 0.00 + 0.00 + 15387.08 + 2923.55 + 18310.63 + 17808.00 + 502.63 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/XRECHNUNG/XRECHNUNG_Einfach_2.3.xml b/tests/zugferd2/Tests/Examples/XRECHNUNG/XRECHNUNG_Einfach_2.3.xml new file mode 100644 index 00000000..1659b717 --- /dev/null +++ b/tests/zugferd2/Tests/Examples/XRECHNUNG/XRECHNUNG_Einfach_2.3.xml @@ -0,0 +1,274 @@ + + + + + + + + + + urn:fdc:peppol.eu:2017:poacc:billing:01:1.0 + + + urn:cen.eu:en16931:2017#compliant#urn:xeinkauf.de:kosit:xrechnung_3.0 + + + + 471102 + 380 + + 20241115 + + + Rechnung gemäß Bestellung vom 01.11.2024. + + + Lieferant GmbH +Lieferantenstraße 20 +80333 München +Deutschland +Geschäftsführer: Hans Muster +Handelsregisternummer: H A 123 + + REG + + + + + + 1 + + + 4012345001235 + TB100A4 + Trennblätter A4 + + + + 9.9000 + + + 9.9000 + + + + 20.0000 + + + + VAT + S + 19.00 + + + 198.00 + + + + + + 2 + + + 4000050986428 + ARNR2 + Joghurt Banane + + + + 5.5000 + + + 5.5000 + + + + 50.0000 + + + + VAT + S + 7.00 + + + 275.00 + + + + + 04011000-12345-34 + + 4000001123452 + Lieferant GmbH + + Max Mustermann + Muster-Einkauf + + +49891234567 + + + Max@Mustermann.de + + + + 80333 + Lieferantenstraße 20 + München + DE + + + info@Mustermann.de + + + 201/113/40209 + + + DE123456789 + + + + GE2020211 + Kunden AG Mitte + + 69876 + Kundenstraße 15 + Frankfurt + DE + + + info@kunde.de + + + + + + + 20241114 + + + + + EUR + + 58 + Zahlung per SEPA Überweisung. + + DE02120300000000202051 + Kunden AG + + + BYLADEM1001 + + + + 19.25 + VAT + 275.00 + S + 7.00 + + + 37.62 + VAT + 198.00 + S + 19.00 + + + Zahlbar innerhalb 30 Tagen netto bis 15.12.2024, 3% Skonto innerhalb 10 Tagen bis 25.11.2024 + + + 473.00 + 0.00 + 0.00 + 473.00 + 56.87 + 529.87 + 0.00 + 529.87 + + + + \ No newline at end of file diff --git a/tests/zugferd2/Tests/Examples/XRECHNUNG/XRECHNUNG_Elektron.xml b/tests/zugferd2/Tests/Examples/XRECHNUNG/XRECHNUNG_Elektron.xml deleted file mode 100644 index 1e194e61..00000000 --- a/tests/zugferd2/Tests/Examples/XRECHNUNG/XRECHNUNG_Elektron.xml +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - - - - - Baurechnung - - - urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_2.1 - - - - 181301674 - 877 - - 20180425 - - - Rapport-Nr.: 42389 vom 08.03.2018 - - Im 2. OG BT1 Besprechungsraum eine Beamerhalterung an die Decke montiert. Dafür eine Deckenplatte ausgesägt. Beamerhalterung zur Montage auseinander gebaut. Ein Stromkabel für den Beamer, ein HDMI Kabel und ein VGA Kabel durch die Halterung gezogen. Beamerhalterung wieder zusammengebaut und Beamer montiert. Beamer verkabelt und ausgerichtet. Decke geschlossen. - - - - - - 01 - - 01 Beamermontage - Für die doppelte Verlegung, falls erforderlich. - - - - TGA Obermonteur/Monteur - - - - 43.2 - - - 43.2 - - - - 3 - - - - VAT - S - 19 - - - 129.6 - - - - - - 02 - - 02 Außerhalb Angebot - - - - Beamer-Deckenhalterung - - - - 122.5 - - - 122.5 - - - - 1 - - - - VAT - S - 19 - - - 122.5 - - - - - 04011000-12345-34 - - 4000001123452 - ELEKTRON Industrieservice GmbH - Geschäftsführer Egon Schrempp - Amtsgericht Stuttgart HRB 1234 - - Max Mustermann - Muster-Einkauf - - +49891234567 - - - Max@Mustermann.de - - - - 74465 - Erfurter Strasse 13 - Demoort - DE - - - 201/113/40209 - - - DE123456789 - - - - 16259 - ConsultingService GmbH - - 76138 - Musterstr. 18 - Karlsruhe - DE - - - - per Mail vom 19.02.2018 - - - Aufmass - 916 - Aufmass.png - iVBORw0KGgoAAAANSUhEUgAABWsAAAPdCAMAAAG8SvofAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAMAUExURf////f39+bm5u/v797e3mNjY8XFxdbW1r29vc7OzrW1ta2trZycnKWlpZSUlIyMjISEhFpaWgAAAHt7e2traxkZGXNzc1JSUiEhITExKTo6OkJKSikhKUJCQggQEAgAAELm3kKt3hDm3hCt3nPm3nOt3lIZIZRSc5QZc63mWq3mGRlKGa2tWq2tGRla3hkQ3hlanBkQnKXm3qWt3tZSc9YZc96t3t7mWt7mGRl7GTrmGd6tWt6tGTqtGRDmGRCtGVpa3loQ3lpanFoQnJRa5mPmGZQQ5pRarWOtGZQQrXtrQnshQntrEHshEMXmjMW1jBkIOhl73hkx3hl7nBkxnDrmWjqtWhDmWhCtWtZa5mPmWtYQ5tZarWOtWtYQrc5aQs4QQs5aEM4QEFp73mvmlFox3vdapVp7nFoxnCnmlJR75oTmGZQx5vdaMZR7rYStGZQxrWutlCmtlPcZpfcZMfecpfecMUrmlAjmlEqtlAitlJxrQpwhQpxrEJwhENbWrRl7SlJrOhlSSlJrENZ75vfepYTmWtYx5vfeMdZ7rYStWtYxrc57Qs4xQs57EM4xELVzc0IZa4y1lBAZa8Wt5ozmlL2Ec0JKa2spaxBKaxl7a1IhUsXm5ve170p7a/c676XerRApQs6crcWUjN7vzlJCGff/ewgpEMXmxSEIACkpCN7v91JzUhk6SlJzWjEpSt7W7ykIEMWlxd7e72t7a97exSkIGXuEa8WlvRApKXOEa4yUpebWxZyUrQgIGYyEc2tjc1pKUjEpIaW1ra2crYyUhJylrVJCQtbv5jEhKe/39+b35gAQAHtza0pSWpyUjL3OxQgAEMW9vXtzhPf35jo6Su/m93NrY0JKUggQAHuEhNbWxRkIGf/394SMhObe3mNSWmtjY1pSUs7OvWtrc7W1pYSUlCEpIUJSUpylpXNrc/f//87Fxa2tte/m5r3FvQAACHNzeykxKff3/6Wtpe/m79be3r3Fxa2tpZyUnIyEjISEjFpSWntze2trYwAAAI/T5ngAAAEAdFJOU////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wBT9wclAAAACXBIWXMAAA7DAAAOwwHHb6hkAAD7jUlEQVR4Xuy97W8Vt9Y+vCTbio0tGdlCngFm+ueDGr5EO0D4EBEg0HTrrhKCsqHkN0qkKGlh50WqtAl5xIfnWp6dFyC00NP2PufcvrIz4/F4PPby5eW15sVDBQUFfwxNRmhtiCwZrI0mrRGNgDAksMNgjThjcpq/HnK6/joor0ihGIrDpLHCNhYpR+UfMlRWK2XyHhLK57R54xwdBUAHaigQhSp10x2XIIiQQmttCAKZGMJhkRIOo/Zun+JLiKovbsznR6FySbHQuUTY7KuQ9+QSYsngfZzyHGk7OET5KEiQ/rA1jf4cXSclqic4XHMDj4c5fpxj+vAXgRPnRha5UHkbi8Sb/S8vUFzsRJAjTovLmwUF//HI/QSLvP73x29V0BQ9PQikQ3CC9dK/DTBoTBdTCOhZMYZ+giIasoj/XYorQgwUK8kjQsE/CvF5T+tjeKjjlSApBH6A1tZ4mCMOpol1UitnnHNeKC2kj1FYq3QUoqmta6w3loRPSlhnZTTOaG+kcJZshOHxTElppDeCPE6hp+eSNpkEqyfhrLsk4gWbR4t+uA+SIlkDuhBy6ISUEodraQe6dvL2KkwQGSqYTGmYUuvTzDz6AArhkc4m7DXSkMfptHQGZZTaVm1oo74h3XOuJDLfbEJoiZpHZsN5su/r3YDTugrL0QbhKHKSxIzXSqaFlAzMNEeoPSp2CmODTGzmdFXrYLNIUaUQfLiOfA9wsO5QBS0WjNS3W7srhL/ZpNqnfUilen9A1YmRGPkhGIEzGz3ESpuVZDWaQ72jaPysTtLDvkJdRLBsSdIY1kJUHgbIoENdJaxJ6Xwn7JuH8gnsMjrU0eGUBkKiwYXidleQWJwsoiEPUAKNGnGbS2sOu4nb4gaarEA4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IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj4zegp98ZGf8xyEab8Z+HbLUZ/3lwLtttxn8cFt10IiPjPwd70++MjP8krEy/MzIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL+jyC/0CjjPw9BZ7vNyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyPiroaffGRn/OchWm/GfBjP9zvgyZB/P+M9D9vKMjIyMjIyMjIyMjIyMjIyMjIyMjIyM/0zkM1MZ/3HQ2Wwz/vNgp98ZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRn/I2j+Tb6H/3/JHx+acuX/tOjpTPn8PC6qMVnrasMpPtzyvV+TnciMD1cBlzMnE9Plv1eJ/xmMUs4Zd4Hp3Iz/I/B/Dm0qfOsL7282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 - - - ElektronRapport - 916 - ElektronRapport - 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pT4W8uMF7EflRpG5J6QD5ducsxVP+YQS21io6au4jnko5n9wBHMfiveKFpMr0TsoLAerAG1AqtBjA318PYVWheAf4JTX4J7fI+GV1MfyOslE72T2OJLY5qHank7QtK3QOCrjXfkQvwex1EC4UuqHQzUoqUFxHeC4eYcnpGa0EjlETz9ODz1KwR1E8L1s7A60qF0kUlMl6cR2qutdaT1J4ztD4/m9poByYritj+flB9aDzVI/LNYASl5oPVhWYZQROQlOAVqyXCeP21x811uIXEH085A9y11+aok8+qczGH0amcx+/oFBwdaQ0DB7eESUIzomzhmf0LiJKzkltWlaevMWrTJau9u0bdehY6fOXbo+lv149x49c/Pyn+j9ZN9+/QcM/EnhU4OKS4YMHTa8dOTTo8eMHTdh4qTJZeVTpz07veK551+Y+eKs2XPmzqt8acHLC19Z9Orrb7z51ttLli5f8c7KVe+t/sX7v/ygau266g0bN3245aNf/6Zm2/ba39bt2Lnr0z179/3uwMFDh48c/cNnfzz+pxMnP//yL1/99etTp8/+/dz5i5f+cfmbf169fuPbm7e/u3P3vud//Wvg/yPnr9Mrxr6KcgCcLYq0DdaRinas4p0I8STFvJmi3hLumYp8e8U+C/rdFP8cBOilFOijJChAgyIlwmClwghkGKV0GK+EmIISzygpfooWM5QYP1NqzEeOnys9XlOCLEaRZUqSd5UmaxDlV0qV9ciyWemyVQnzMcp8oqTZrbTZjzi/V+ocU/L8GX2+UAL9DYXOKIkuKI2uINI1pdItJdO9+57xI8uV8xCDEU+he/Qw/Jf3P3K9RKfT6w0GIxo08vU1mczo4B8QEIgUwRaLFTVCw9DDHo4ikVFogiiogizogjBKGa809do8Io5XG6Tpla9KiUoqGlQyZNiIkaPGjJ84ufyZ6c+98OLsufMXLFz02puLlyxbsXLV6jWUi6qWzR9C0svxEYr1HL0kFUtowhOiMIUqXM+che258/C9eAnGl69c+QbSV69duw7vb2/evHXrNtzv3L177979Bv6etTEGT3Wyn2ddK7unqqPLU53dxrO1V47n4/7F9+sGlX33ybDKqztGLbu4c9za0zsm1nxVO2X3iZqpR459VPH5oY0zzu2pfun2D0VDDg05NOTQkENDDg05NOTQkMP/ncO6R3LYkO32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dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnhtcEdJbWc9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9nL2ltZy8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPiBBZG9iZSBQaG90b3Nob3AgQ1M1LjEgTWFjaW50b3NoPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE4LTEwLTMxVDE5OjE3OjEzKzAxOjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTgtMTAtMzFUMTk6MTg6MjYrMDE6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wOk1ldGFkYXRhRGF0ZT4yMDE4LTEwLTMxVDE5OjE4OjI2KzAxOjAwPC94bXA6TWV0YWRhdGFEYXRlPgogICAgICAgICA8eG1wOlRodW1ibmFpbHM+CiAgICAgICAgICAgIDxyZGY6QWx0PgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHhtcEdJbWc6Zm9ybWF0PkpQRUc8L3htcEdJbWc6Zm9ybWF0PgogICAgICAgICAgICAgICAgICA8eG1wR0ltZzpoZWlnaHQ+MjU2PC94bXBHSW1nOmhlaWdodD4KICAgICAgICAgICAgICAgICAgPHhtcEdJbWc6d2lkdGg+MTgyPC94bXBHSW1nOndpZHRoPgogICAgICAgICAgICAgICAgICA8eG1wR0ltZzppbWFnZT4vOWovNGd4WVNVTkRYMUJTVDBaSlRFVUFBUUVBQUF4SVRHbHVid0lRQUFCdGJuUnlVa2RDSUZoWldpQUh6Z0FDQUFrQUJnQXhBQUJoJiN4QTtZM053VFZOR1ZBQUFBQUJKUlVNZ2MxSkhRZ0FBQUFBQUFBQUFBQUFBQUFBQTl0WUFBUUFBQUFEVExVaFFJQ0FBQUFBQUFBQUFBQUFBJiN4QTtBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQkZqY0hKMEFBQUJVQUFBQUROa1pYTmpBQUFCJiN4QTtoQUFBQUd4M2RIQjBBQUFCOEFBQUFCUmlhM0IwQUFBQ0JBQUFBQlJ5V0ZsYUFBQUNHQUFBQUJSbldGbGFBQUFDTEFBQUFCUmlXRmxhJiN4QTtBQUFDUUFBQUFCUmtiVzVrQUFBQ1ZBQUFBSEJrYldSa0FBQUN4QUFBQUloMmRXVmtBQUFEVEFBQUFJWjJhV1YzQUFBRDFBQUFBQ1JzJiN4QTtkVzFwQUFBRCtBQUFBQlJ0WldGekFBQUVEQUFBQUNSMFpXTm9BQUFFTUFBQUFBeHlWRkpEQUFBRVBBQUFDQXhuVkZKREFBQUVQQUFBJiN4QTtDQXhpVkZKREFBQUVQQUFBQ0F4MFpYaDBBQUFBQUVOdmNIbHlhV2RvZENBb1l5a2dNVGs1T0NCSVpYZHNaWFIwTFZCaFkydGhjbVFnJiN4QTtRMjl0Y0dGdWVRQUFaR1Z6WXdBQUFBQUFBQUFTYzFKSFFpQkpSVU0yTVRrMk5pMHlMakVBQUFBQUFBQUFBQUFBQUJKelVrZENJRWxGJiN4QTtRell4T1RZMkxUSXVNUUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBJiN4QTtBQUFBV0ZsYUlBQUFBQUFBQVBOUkFBRUFBQUFCRnN4WVdWb2dBQUFBQUFBQUFBQUFBQUFBQUFBQUFGaFpXaUFBQUFBQUFBQnZvZ0FBJiN4QTtPUFVBQUFPUVdGbGFJQUFBQUFBQUFHS1pBQUMzaFFBQUdOcFlXVm9nQUFBQUFBQUFKS0FBQUErRUFBQzJ6MlJsYzJNQUFBQUFBQUFBJiN4QTtGa2xGUXlCb2RIUndPaTh2ZDNkM0xtbGxZeTVqYUFBQUFBQUFBQUFBQUFBQUZrbEZReUJvZEhSd09pOHZkM2QzTG1sbFl5NWphQUFBJiN4QTtBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQmtaWE5qQUFBQUFBQUFBQzVKJiN4QTtSVU1nTmpFNU5qWXRNaTR4SUVSbFptRjFiSFFnVWtkQ0lHTnZiRzkxY2lCemNHRmpaU0F0SUhOU1IwSUFBQUFBQUFBQUFBQUFBQzVKJiN4QTtSVU1nTmpFNU5qWXRNaTR4SUVSbFptRjFiSFFnVWtkQ0lHTnZiRzkxY2lCemNHRmpaU0F0SUhOU1IwSUFBQUFBQUFBQUFBQUFBQUFBJiN4QTtBQUFBQUFBQUFBQUFaR1Z6WXdBQUFBQUFBQUFzVW1WbVpYSmxibU5sSUZacFpYZHBibWNnUTI5dVpHbDBhVzl1SUdsdUlFbEZRell4JiN4QTtPVFkyTFRJdU1RQUFBQUFBQUFBQUFBQUFMRkpsWm1WeVpXNWpaU0JXYVdWM2FXNW5JRU52Ym1ScGRHbHZiaUJwYmlCSlJVTTJNVGsyJiN4QTtOaTB5TGpFQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUhacFpYY0FBQUFBQUJPay9nQVVYeTRBRU04VUFBUHR6QUFFJiN4QTtFd3NBQTF5ZUFBQUFBVmhaV2lBQUFBQUFBRXdKVmdCUUFBQUFWeC9uYldWaGN3QUFBQUFBQUFBQkFBQUFBQUFBQUFBQUFBQUFBQUFBJiN4QTtBQUFBQW84QUFBQUNjMmxuSUFBQUFBQkRVbFFnWTNWeWRnQUFBQUFBQUFRQUFBQUFCUUFLQUE4QUZBQVpBQjRBSXdBb0FDMEFNZ0EzJiN4QTtBRHNBUUFCRkFFb0FUd0JVQUZrQVhnQmpBR2dBYlFCeUFIY0FmQUNCQUlZQWl3Q1FBSlVBbWdDZkFLUUFxUUN1QUxJQXR3QzhBTUVBJiN4QTt4Z0RMQU5BQTFRRGJBT0FBNVFEckFQQUE5Z0Q3QVFFQkJ3RU5BUk1CR1FFZkFTVUJLd0V5QVRnQlBnRkZBVXdCVWdGWkFXQUJad0Z1JiN4QTtBWFVCZkFHREFZc0JrZ0dhQWFFQnFRR3hBYmtCd1FISkFkRUIyUUhoQWVrQjhnSDZBZ01DREFJVUFoMENKZ0l2QWpnQ1FRSkxBbFFDJiN4QTtYUUpuQW5FQ2VnS0VBbzRDbUFLaUFxd0N0Z0xCQXNzQzFRTGdBdXNDOVFNQUF3c0RGZ01oQXkwRE9BTkRBMDhEV2dObUEzSURmZ09LJiN4QTtBNVlEb2dPdUE3b0R4d1BUQStBRDdBUDVCQVlFRXdRZ0JDMEVPd1JJQkZVRVl3UnhCSDRFakFTYUJLZ0V0Z1RFQk5NRTRRVHdCUDRGJiN4QTtEUVVjQlNzRk9nVkpCVmdGWndWM0JZWUZsZ1dtQmJVRnhRWFZCZVVGOWdZR0JoWUdKd1kzQmtnR1dRWnFCbnNHakFhZEJxOEd3QWJSJiN4QTtCdU1HOVFjSEJ4a0hLd2M5QjA4SFlRZDBCNFlIbVFlc0I3OEgwZ2ZsQi9nSUN3Z2ZDRElJUmdoYUNHNElnZ2lXQ0tvSXZnalNDT2NJJiN4QTsrd2tRQ1NVSk9nbFBDV1FKZVFtUENhUUp1Z25QQ2VVSit3b1JDaWNLUFFwVUNtb0tnUXFZQ3E0S3hRcmNDdk1MQ3dzaUN6a0xVUXRwJiN4QTtDNEFMbUF1d0M4Z0w0UXY1REJJTUtneERERndNZFF5T0RLY013QXpaRFBNTkRRMG1EVUFOV2cxMERZNE5xUTNERGQ0TitBNFREaTRPJiN4QTtTUTVrRG44T213NjJEdElPN2c4SkR5VVBRUTllRDNvUGxnK3pEODhQN0JBSkVDWVFReEJoRUg0UW14QzVFTmNROVJFVEVURVJUeEZ0JiN4QTtFWXdScWhISkVlZ1NCeEltRWtVU1pCS0VFcU1Td3hMakV3TVRJeE5ERTJNVGd4T2tFOFVUNVJRR0ZDY1VTUlJxRklzVXJSVE9GUEFWJiN4QTtFaFUwRlZZVmVCV2JGYjBWNEJZREZpWVdTUlpzRm84V3NoYldGdm9YSFJkQkYyVVhpUmV1RjlJWDl4Z2JHRUFZWlJpS0dLOFkxUmo2JiN4QTtHU0FaUlJsckdaRVp0eG5kR2dRYUtocFJHbmNhbmhyRkd1d2JGQnM3RzJNYmlodXlHOW9jQWh3cUhGSWNleHlqSE13YzlSMGVIVWNkJiN4QTtjQjJaSGNNZDdCNFdIa0FlYWg2VUhyNGU2UjhUSHo0ZmFSK1VINzhmNmlBVklFRWdiQ0NZSU1RZzhDRWNJVWdoZFNHaEljNGgreUluJiN4QTtJbFVpZ2lLdkl0MGpDaU00STJZamxDUENJL0FrSHlSTkpId2txeVRhSlFrbE9DVm9KWmNseHlYM0ppY21WeWFISnJjbTZDY1lKMGtuJiN4QTtlaWVySjl3b0RTZy9LSEVvb2lqVUtRWXBPQ2xyS1owcDBDb0NLalVxYUNxYktzOHJBaXMySzJrcm5TdlJMQVVzT1N4dUxLSXMxeTBNJiN4QTtMVUV0ZGkyckxlRXVGaTVNTG9JdXR5N3VMeVF2V2krUkw4Y3YvakExTUd3d3BERGJNUkl4U2pHQ01ib3g4aklxTW1NeW16TFVNdzB6JiN4QTtSak4vTTdnejhUUXJOR1UwbmpUWU5STTFUVFdITmNJMS9UWTNObkkycmpicE55UTNZRGVjTjljNEZEaFFPSXc0eURrRk9VSTVmem04JiN4QTtPZms2TmpwME9ySTY3enN0TzJzN3Fqdm9QQ2M4WlR5a1BPTTlJajFoUGFFOTRENGdQbUErb0Q3Z1B5RS9ZVCtpUCtKQUkwQmtRS1pBJiN4QTs1MEVwUVdwQnJFSHVRakJDY2tLMVF2ZERPa045UThCRUEwUkhSSXBFemtVU1JWVkZta1hlUmlKR1owYXJSdkJITlVkN1I4QklCVWhMJiN4QTtTSkZJMTBrZFNXTkpxVW53U2pkS2ZVckVTd3hMVTB1YVMrSk1La3h5VExwTkFrMUtUWk5OM0U0bFRtNU90MDhBVDBsUGswL2RVQ2RRJiN4QTtjVkM3VVFaUlVGR2JVZVpTTVZKOFVzZFRFMU5mVTZwVDlsUkNWSTlVMjFVb1ZYVlZ3bFlQVmx4V3FWYjNWMFJYa2xmZ1dDOVlmVmpMJiN4QTtXUnBaYVZtNFdnZGFWbHFtV3ZWYlJWdVZXK1ZjTlZ5R1hOWmRKMTE0WGNsZUdsNXNYcjFmRDE5aFg3TmdCV0JYWUtwZy9HRlBZYUpoJiN4QTs5V0pKWXB4aThHTkRZNWRqNjJSQVpKUms2V1U5WlpKbDUyWTlacEptNkdjOVo1Tm42V2cvYUpabzdHbERhWnBwOFdwSWFwOXE5MnRQJiN4QTthNmRyLzJ4WGJLOXRDRzFnYmJsdUVtNXJic1J2SG05NGI5RndLM0NHY09CeE9uR1ZjZkJ5UzNLbWN3RnpYWE80ZEJSMGNIVE1kU2gxJiN4QTtoWFhoZGo1Mm0zYjRkMVozczNnUmVHNTR6SGtxZVlsNTUzcEdlcVY3Qkh0amU4SjhJWHlCZk9GOVFYMmhmZ0YrWW43Q2Z5Ti9oSC9sJiN4QTtnRWVBcUlFS2dXdUJ6WUl3Z3BLQzlJTlhnN3FFSFlTQWhPT0ZSNFdyaGc2R2NvYlhoenVIbjRnRWlHbUl6b2t6aVptSi9vcGtpc3FMJiN4QTtNSXVXaS95TVk0ektqVEdObUkzL2ptYU96bzgyajU2UUJwQnVrTmFSUDVHb2toR1NlcExqazAyVHRwUWdsSXFVOUpWZmxjbVdOSmFmJiN4QTtsd3FYZFpmZ21FeVl1SmtrbVpDWi9KcG9tdFdiUXB1dm5CeWNpWnozbldTZDBwNUFucTZmSForTG4vcWdhYURZb1VlaHRxSW1vcGFqJiN4QTtCcU4ybytha1ZxVEhwVGlscWFZYXBvdW0vYWR1cCtDb1VxakVxVGVwcWFvY3FvK3JBcXQxcSttc1hLelFyVVN0dUs0dHJxR3ZGcStMJiN4QTtzQUN3ZGJEcXNXQ3gxckpMc3NLek9MT3V0Q1cwbkxVVHRZcTJBYlo1dHZDM2FMZmd1Rm00MGJsS3VjSzZPN3ExdXk2N3A3d2h2SnU5JiN4QTtGYjJQdmdxK2hMNy92M3EvOWNCd3dPekJaOEhqd2wvQzI4Tll3OVRFVWNUT3hVdkZ5TVpHeHNQSFFjZS95RDNJdk1rNnlibktPTXEzJiN4QTt5emJMdHN3MXpMWE5OYzIxempiT3RzODN6N2pRT2RDNjBUelJ2dEkvMHNIVFJOUEcxRW5VeTlWTzFkSFdWZGJZMTF6WDROaGsyT2paJiN4QTtiTm54Mm5iYSs5dUEzQVhjaXQwUTNaYmVITjZpM3luZnIrQTI0TDNoUk9ITTRsUGkyK05qNCt2a2MrVDg1WVRtRGVhVzV4L25xZWd5JiN4QTs2THpwUnVuUTZsdnE1ZXR3Ni92c2h1MFI3Wnp1S082MDcwRHZ6UEJZOE9YeGN2SC84b3p6R2ZPbjlEVDB3dlZROWQ3MmJmYjc5NHI0JiN4QTtHZmlvK1RqNXgvcFgrdWY3ZC93SC9KajlLZjI2L2t2KzNQOXQvLy8vN1FBTVFXUnZZbVZmUTAwQUFmL3VBQTVCWkc5aVpRQmtnQUFBJiN4QTtBQUgvMndDRUFBd0lDQWdKQ0F3SkNRd1JDd29MRVJVUERBd1BGUmdURXhVVEV4Z1JEQXdNREF3TUVRd01EQXdNREF3TURBd01EQXdNJiN4QTtEQXdNREF3TURBd01EQXdNREF3QkRRc0xEUTRORUE0T0VCUU9EZzRVRkE0T0RnNFVFUXdNREF3TUVSRU1EQXdNREF3UkRBd01EQXdNJiN4QTtEQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRFAvQUFCRUlBUUFBdGdNQklnQUNFUUVERVFILzNRQUVBQXoveEFFL0FBQUJCUUVCJiN4QTtBUUVCQVFBQUFBQUFBQUFEQUFFQ0JBVUdCd2dKQ2dzQkFBRUZBUUVCQVFFQkFBQUFBQUFBQUFFQUFnTUVCUVlIQ0FrS0N4QUFBUVFCJiN4QTtBd0lFQWdVSEJnZ0ZBd3d6QVFBQ0VRTUVJUkl4QlVGUllSTWljWUV5QmhTUm9iRkNJeVFWVXNGaU16UnlndEZEQnlXU1UvRGg4V056JiN4QTtOUmFpc29NbVJKTlVaRVhDbzNRMkY5SlY0bVh5czRURDAzWGo4MFlubEtTRnRKWEUxT1QwcGJYRjFlWDFWbVoyaHBhbXRzYlc1dlkzJiN4QTtSMWRuZDRlWHA3ZkgxK2YzRVFBQ0FnRUNCQVFEQkFVR0J3Y0dCVFVCQUFJUkF5RXhFZ1JCVVdGeEloTUZNb0dSRktHeFFpUEJVdEh3JiN4QTtNeVJpNFhLQ2trTlRGV056TlBFbEJoYWlzb01ISmpYQzBrU1RWS01YWkVWVk5uUmw0dkt6aE1QVGRlUHpScFNraGJTVnhOVGs5S1cxJiN4QTt4ZFhsOVZabWRvYVdwcmJHMXViMkp6ZEhWMmQzaDVlbnQ4Zi8yZ0FNQXdFQUFoRURFUUEvQVBWRTB1M2tiZmJBSWRQSjFsc0pyR3ZjJiN4QTtBR08yYWdsMEE2QnpYT1pEdjlJemN4U1NVb0JKT2trcFpKT3VFK3U3K3ZONjQyenBoNmcybXZwOTdIdHhSa1BxZmJkVG5WNGptVjR0JiN4QTtUcVdaT0xsakYzMityNjM2MWpXZm82c1M2MUpUM1NTNHJwMS9YWHN3c2V3Wnd2dXhPakVteGw3V2g5R1JZL3J2MmkreHJhcUxuNDFmJiN4QTs2eDlvc3Jzem1lblgrc2VwVXNQcHRQMXVPTDFISXpyT3A1RHNiQ3lIZE95bWpLb3VOMlNMS3FlbjVYVEhzL1QzMTIzTnl2dE9INjFPJiN4QTtBK210bjdSdnhxY2I3S2xQcUtTODNZZnJFTHNlKzA5V2Rpbm9tRy9NckF5dzkyVlZsWTFXZmowTVlHMjE5UXljV2k5bS93RFJmejMyJiN4QTtteklxeHJINUtOMFkvV3cvWENwMlUzUC9BR1c3cWZWWU5odkZmbytsVjloOWF1MXZvL1l0MzlBLzRmMWZTL20wbFBvU1M1WER5YzJqJiN4QTs2NGRjL2FEYzg0SSt6VzlOMjE1Tm1QOEFvOFczN2FLdnM3SDR6dmMvK1kvdytYNlhwMTJaZGRTNXQyZjliVDlUdWo0bEE2cFQxeW5LJiN4QTtMOHJJdHg4cDBNbkxJKzFQOUc1MlRSWDZtRzU5UHAzK3IvTjExWCtqYlZVbFBweVM4L3h1czlmd2ZyTmRjY1BxanVoNUQ4RGJWWlRrJiN4QTtaRDY2WFlWd3VHeHpNbjNVNTFtTloxSjlXUjlyOWFuL0FMVi9wVUhxcmZyTFhnL1duSDZmWjFXNDQ0NmRUMHU1d3lQVmY2WHBZK2ZiJiN4QTtpdjIxK3E2MXpMTE1xM0c5bVIvU1A1dEpUNk1rdlBlazVuMWxkMWtXNUxPb0hvN2VxOVJ1eUdYVVpFbkZmai81SWF5bTJyN1EvRzMxJiN4QTs1T3pFcForaXlQUTlXbjFyTVJhT1JWOWFjWDZuOUtxenprWDUxZHRZNnA5amU4M21rZXFhYTM1R00yek0vbnZzTlBVc2pBWmtaZm8vJiN4QTthN3FQdEg1NlU5aWt2UDhBcW5WdnJ4ZTU3Y2ZHeU1mRHk4WEkyMDEwUE4xRDJkTVpsVXMrM0J1OXo3ZXE1dm9NZDZkVjMycnAvcFZQJiN4QTsvbjZVUElzL3hnVTE5UGMxOTFsK0V6T2U1NG9zY3k0VTFZbVJUaVptT3kzOUpaWmx0enVsWW1WWitseWFmMTdFOVd5NnZKc1NuMFJKJiN4QTtPa2twWkpPa2twbzAxZFhialh0dHVxZGx1Y1BSdDJFMUFiSzJGMzJacHF1WXoxRzIyZlozNXVRLy91N3MvUlVKWFVrbFAvL1E5VVNTJiN4QTtTU1V1a2daSnpBYVRpaXR3OVFldTJ5UVRVUVd2OUY3SjIyc2RzdDk3UDBtejBmMGZxZXZWR2kzT2ZrNURMOGRsV096YjludWJadmRaJiN4QTtJUHFlcFQ2YlBROVAyLzRTM2VrcHNwSmt4ZVE0TkRDUVFTWENJRVI3ZFhidmRLU21TU3o4V3JxRmRHSFMrV2VnR051UHJlczU0YlZzJiN4QTtjTGJiNkdXMy9wM2Z6djZ2Yy8wcXIvOEFDWFlpcVVOK3Q3R1VlcTdEdExRRGRMbnNMajZORzV1NXRMMmU3TiszTjlyR2JLbjRkLzZUJiN4QTswTDhUS1NuYlNYTjR2U2ZyRFgxV3ZQeTc2cjdOekczdXFlNmhqcWE3T3JlbXo3T0tydlU5TEg2cGh1cng3TGY2UmpmcE12OEFSZXRrJiN4QTtIelAyM2g0bDFsRHJIVk50cXFvcmIrbnRyeEhERXB5c3ArK3ZJeWN2UHh2VHo3OGI5SmtlcjYvNnpUbFdmb0dKVHVwTEZveHZyQit6JiN4QTtzTzkyUTM5cTE0am1YMVdpYUgzMlZWdWMrLzBIczkxV2ZUN0xhUFpYaVc1T1BWai9BS1d1K3BVTitzcmFycUxicVRmWFkxdUhhNWhjJiN4QTtMS1d0clpmazU1cWJUWDZ6bjNXWFZZV00zQi9TVWVqOXFzbzlYSVNVN0tTeDZxdnJFNnZJYlkrbWplQzNIZFRZNTVhYmJiSDIzMmZiJiN4QTtLTGYwbUZqR243SlQvUnI3dldaWlhqWS9vZlpkTEVHV01abjJ3c2RrYWwvcHp0RW4yc0JkdDlUWXoyT3UyVSt0L08vWjhmOEFtSzBwJiN4QTtOS1NVeHFxdjdVNmNKSnlLdzBNcnQ5UXVBWnN1YzZ1aDR0L20zZXErdDdXKzVKVGFUcXZrNWxHS2F4YzdhYm50cXEwSjNQY2RyV05EJiN4QTtRNTM4di9nNnE3YnJQMFZhWm1malBMUVhHdDFqalhXeTBHdHpuTjlYYzJ1dTRWdmY3TWU2MW4ra29aNjlmNkgzcEtiS1NxMWRSeExiJiN4QTtCVTE1RnJ0VzF1YVd2SURhclhQOU40RmpXVnR5S2ZVYzl2Nk95ejB2NXhDczYzMHhsVGJoa1YyVWxucXZ0WTlqbXNwMlgzTnludy8rJiN4QTtqMk54THZUc3IzNy9BUHQzMDBwdnBLbU9xNFR0M3B2ZFpzMmI5bGIzd2JOanEyTzJNZCtrMlcxMituL09WMHY5YXo5RXJhU2xKSkpKJiN4QTtLZi9SOVVTU1NTVTB1cTJXMVUxV1Y0NzhvZXF4bGphM09iWTFscCt6UHZxMk5kdjlIMXQ5bnZwMlVldGQ2bStwQ3hQVXliMlcyWXVSJiN4QTtqMXVycnVxZSswZ0QyejZHVGkrbzE5V1UxK1RmNnRmbzNVZm9hZjFqMWE2YXFMZVpSYmZTSzZyZlJlSHNkdkc3OHh6Yk52Nk45WDA5JiN4QTttMzZXei9TTXNyOWlKU3g5ZFRHUGViSE5BQmVlWFIrYzcrVWtwRzdEcWUvMUhPczNlM2l4N1I3SE9zWitqcmN5djg3OUo3UDA5ZjZLJiN4QTsvd0JXdFF5OE82K1BSemI4UG1mUkZMcG5aSDlMeDhyYnQyZm1mNlN4V2xXdjZoajBaRGNkN2JuUGVBUWE2THJHQU9KWU4xMU5WbExQJiN4QTtvL24ySkthMWZTczRPM0hyV2E4ZnVsbUhIL1J3R3VTc3gzMXliT3MzMWhwMm5kOWxFRWpkdDkySis2aFYvczUrVFoxS29aYmJMcktxJiN4QTs3MnVveUR2RlRiUHM5SnhzbXAvb1VWdnlmdFBxWXRlTituL25iUDUzZWZFeUdOcDNXWC9hQlhaNkxUVFhicSt0dnBYc1A2VEpzdmMyJiN4QTs5bVJ2L3dCRi9OVy9wc2V5NUpUTEdEYTJ2eUhkVGZrMHRCRG5XR2pZMDZPM0Y5RkZQdWIvQUNub1ZuMWwrcmRUaXkzckdHeHpURG11JiN4QTt5S1FRZkFndlVjZkh6YUtyTHJNeW0zTnRCTm1VY1lpdlkxci9BTE5YVzFsL3EraFJmWTdKZjZ1WmYvUDVOZFgyWmw5SG9RdXRjNTFWJiN4QTtiTXlvVkYvcU1wTGpRLzJPYTZpbHI2eHU5R3Y3UGI5cG9kWHZ2L21yTEs2YXJhTDBwbVByWDlWd05lczRCOC90TlA4QTZVUm05ZjZFJiN4QTs4Ym05UnhYRHhGOVpIL1ZxdlgxWmxWRFdNek1UTE1leSs3Sll4MW4wb2MvN1BqZWkzK2JmL05NL3diMVh0K3M0OUgxc2E3cFZ0WXNGJiN4QTtSZS9xT3hnZTdmNlZYcU13N3YwdGphLzV2K3VrcDFhT3FkTXlMQlZqNWRGMWgxREs3R09jWS9rdGNWWjNONGtMTCswL1dpZitUOENQJiN4QTsvRDEzL3dBaTBTcS82d2tmcGNMRFlaNGJsMnVFZjJ1bjFwS2I3aTJQZHFPWjdMT3ZzK3JSdFkzSWRoZXRWWXh6Qlo2VzlsbHBka1V1JiN4QTthSCs5bDE3OTk5WDU5djhBT0t6bTV1RmlscnN5eHRWZTB2THJQb0NIMDFoNzMvemJOdHQxWDAxU3grcS9WTW16S3hzenA1TEE1OXQ5JiN4QTtkbE1nRnpmVWZaWXgzdDNXM3MzN3Y4SmQvd0FJa3Bsa3Q2RG1VVld1eWd6SG9xY2E3TWZKZmoxaW90RG55L0R1b3I5SnRWZnFNMy96JiN4QTtXejFhMVlaMHZwMUFidGFXK21YdWE0MlBKRHJQVmZiYnVlOC9wbmZhTC8wMzg1K2tRaGdkUHltYnVuMk54MlZrVXZPTXlrZ25HZnRyJiN4QTtxZjZ0TjM5RHRyc3JxWi9nZmVwV2RGeHJxQlRrVzNYYkxMYmE3SHZPOWpycTdzZXowN0diSE5hMnJLdjlIL1FmNEhaWFZUNmFVMXNaJiN4QTszMWF3eFZoMFpOVHR2K1RxYURlYmlEWEhxWWpLMzJYUDNzYSt2N1UzL1ErbDlwL1JVVittcmM3cExjMi9GR1BaWmYwazA1RGd4c0JyJiN4QTtzdjdSUjZsREpaOW9zOUoyUTY3MGE3YkgrcjZlUDYrWCtoV2g5a3EyZW0zMnNOZ3Uyc0RRTndlTWgzRGY4SmI3clB6L0FOSWdaT04wJiN4QTtUcUdPTTNMeHFNcWtzWmMyMjJwdGtzWUxMS2JCdmE1MzZKdDl6cXYzUFdzLzBpU210VjFqSHg4ajdJM3BtVmpzT1RrVStvS203QzlsJiN4QTtaNmk3SUFwZTYyMnZPMzMramF5cjFMY24xZlc5TzVhMUwzV1ZNc2ZXNmx6Mmh6cW43UzVoSWsxdjlKMWxlOW4wZjBkajJLc3pwUFNHJiN4QTszK3N6Q29iZUgyVytxS1doMis4ZW5rMitwdC9uY2hqTnVRNzZkdjhBaFZhcXFycHJaVlV4dGRkWURXTWFBR3RhQnRhMXJXL1JhMUpUJiN4QTtKSkpKSlQvLzB2VkVra2tsTlRxV0d6TnBialcwaTZpMXhiZU43cTNOWVd2RG5NZFg3M2J2NWw5ZSt2OEFRMjIvOFZaUXA2RmpPNmpYJiN4QTtrM2RPb3FOUk4zck1zTHQxeDlMYnVwTlRHM2VtK25mWGZiK2tvOUxHZlIvUDVGZVByWDVOT08wUHZkNmJOWmVaMnREV3V0ZSsyejZGJiN4QTtWYldWdS9TVyt4VkxPdjhBUTZuUFk3UHh6YXl0MXJxbTJOZFpzYXo3UTk3YUszT3VmK2diNnZzWi9OcEtibE5OVkZUS2FXaGxWWURXJiN4QTtNR2dBSFlLcmwxZFRkZVhZZVRSVXd0WUN5MmgxcnBEbkY3dDFlVmplMTdIYldlejJmOElwZnRicFcwdisyMGJSVjlwTHZWWkhvbmQrJiN4QTtzL1Mvby9zZittL20wOWZVTURJeUxjYWpKWlpmVXhqN0syT0RpMXRudXFjZitNYi9BTkRaL3BFbE5hckg2cUd2OVBMeERsR3d1eW50JiN4QTt4M2JkMnhySzIra016ZlUvMHZzLzg1ZGJ2Wi9vOTlmcHh3Y0xNeDZuMTQyUlNhdlh1dDk5RHlSWmJaZGRsKzc3UTMyL2FyclBTL2NwJiN4QTsvUi9wZjU1V2FyUDAyVUt4WTl3dmExNElhQTBtcWwzNk11OVBmVnNMUDlLLzFmVVVxQlNHdEdQV1dNOVcwdTJzREFIbDF2cjJPYTdhJiN4QTs3OUpmNmp2VlovUGVwNm44M1lrcHpyT25aLzdKdHdXNWVOVGl1cDlHa2pHZitqbzlOOWZ2OVRNMnVlMXZwL3BIK216OUg3Ni8wbjZLJiN4QTsxbW14K0s2YmpXNWwxTmpudHBlNzZGdGRub2lrZTkvck1yOUwvcml0dmMycGdhMWpoV0FSN0FJWTBEVDJmUzdiR01yWS93RHFLcGZrJiN4QTtQZTJ4dG1Ma1V0WSt0N1hnMUgxSHRzYUs2V2JMN0hmcGZUcTMrcTJxbjBiZmZiWCtsOUpLWlplY3luYTV6TExIU1gwdGJUZWVHT0xtJiN4QTsyT29xdjJ1OU50MzVuMC9UcC9uUDV5ajFIUHczZWxkZlcrTE1lNnYwMzQrU1I2ZHYyZDlodjI0NTlHdlo2WDJqMTZ2MFB2OEE5RmN0JiN4QTtPbTYyKzFnc3hyc2NNQXNEbm1vdExuTmMxMUo5QzY1MjZ2Zjd2YjZYN2xxblpoc3N5R1pEajcyVldVaUd0K2phYW52L0FFam1tNXY5JiN4QTtIWjdhN1BTZi9oYTdObFBwSlNkSkpKSlRtWnBvSFdzTDE5dXo3UGZHK0kzK3QwNzBmcGZuK3Q2ZnBmOEFDSm1aUDFaeFcwME10d3FHJiN4QTtZN3djZXNPcVlLMzJNYzlwcFpMZlRzdG95SHU5bjg1VGYvd2lKbTQrTlpuMDJaV3gxTmVQZnZiYUpiSHFZbHZxT2MvOUczMG5VNy9jJiN4QTtqNU9IMC9LYjlueXFhYjJ1YWYwVnJXdkJhSE1lNzJQQjl2cXRwZjhBOFo2U1NtTkdmMGwrMFkrVGp1OVIwTkZiMkhjNTRma2UzWTczJiN4QTtQdFkyMi84QWwvcExWYlZMRjZMMHZFRjRweDJnWk9TN050RHlYZzVEaTF6cjIrcVgrbTdkV3piNmYwRmRTVXgwTGdRVHdmYnBCMUd2JiN4QTs5bForTCt6cWVsWTlkTDNzdzJZWUZWanBiRkRXTS9TUDNOYTF0amE5bjg1WDdQOEFQVXkvS2FLSDJrc3RzRFM5am4xaXRrMlZ0c3A5JiN4QTtUMHpiYS84QVQrblRzcTJXK2l6OUpqMlcrb3A1ZUpYOWtlejA3THdLWFVpcXQrMTdtUEFhNWpiTExhbStwdGIvQURyN2tsTmttdGppJiN4QTs4d0NkclM0NmQ5dGJaL3JPVXAvdVZScjZNeXVrTjNYMFpMUHRGV1FBM1lBMTFWdU9mZCtmK2taWlIraS93UDZUL2hMZTN6U1V1a2trJiN4QTtrcC8vMC9WRWtra2xPWm5adVEyMTFIN0d5YzZwdkZyRGllbTdjM2EvYTNLemFMdm92ZlUvZlQvNEdvMHZEcUxhejBTNmxsNWNicVhmJiN4QTtaSWViUGRhNnh0V1haVy8xWFBmNm03NmF1WitGUm40NXhzbGpuVkY3SGtBeFBwdWJlMEgrUTU5ZXg3Vm5aUDFWNlprMW1sN3IyMFByJiN4QTtOYjZXV0VOY0hQb3Z2Y1grNjcxTWwyTCtuZXkzMyt2bDNmMG5KdXlFbE5rVVkyUmtWMjNkS0l0cmViSzc3RzBPTEhrTmE2MWptWFdXJiN4QTtOZTVyR2U5aXMxOVB3S3JtWDFZMVZkMWRReDJXdFkxcm0wdE81dU14N1J1YlExM3U5TCtiVmNkSXJKZUxjbkl1YllTWHNzZUMweXlpJiN4QTtvKzBNOXJmMWI2RFBaK3M1ZjVseW5iYm40eHhNZkhvZG1oN2d6SXliSHNyMk1hUGZmWnRidXV1cy9NcW9vMmVwOVA3UFdrcHRNcFl4JiN4QTsxam15SFd1M3Zrays0TmJWSW42UHNyWjlGSmxiSzJrTUVDWE9qemNTOXgxL2xPUURabURJeUsyMWJxeFd4K1BhOTRhMTFqdlVaWmpmJiN4QTtvMk90cVpWNlZOdnJPYmQvU3Y4QWdkaURqUHpuWk5Jc1prTXFGSmZZYlJqbHBjOGo5RGI5bmQ2cmN6SDIvd0NBYjloOUgvQ1hYZW42JiN4QTtTVTJzZkdweHNlckZwWVcwMHNiVlcyUzZHTkd4amR6eTU3dmFQems5MUZON0F5MXU1b2N5d0RVZTZwemJxbmYyTEsyT1dWUTdyOXptJiN4QTtXdmRaalByWlEyNnF5dWswMkIyMnpMc3gyNDkyUmxVNWxHNzBQMHVUYmgvNkhHeVA1OUY2bGxkVXhtdno4Tm4ycWxsYldzNmZzY3g3JiN4QTs3SHVyL1R1dkZkOXJmU3I5dm9mWnY5TjY5bjgzNkNVNlRtZ3VhOHo3SklBNGtqYlArYXBUNUxEcStzV1hrVjRWK0gwNnpJeDgwbC9yJiN4QTtBdmExdEJlMW1Oa2UrbjNXWk9PNzdWNkhzOUw2RjEzMEVLdjYwZFJaUUxjM28yVFFmVWc3QSsxb3FEc1ZyOG4yWTdiZjV2S3lMV1VQJiN4QTtvOWI5U3MvbTBsUFFPZUdNTHlERFJKQUJjZFBCck56bkt2OEF0TEgvQUhML0FQMkh2LzhBU0tEZ2RWT1hqK3EvR3VvZUdOZStxeXExJiN4QTtybWx6V3Y4QVRtMm1wbGoyTzlSbjZMZi9BT0NLV2JuWk5icW1ZV09MM3ZzMlA5VTJWTWEwZlNmNmxlUGsrNzl6Mk1wZjcvMWovU0pUJiN4QTtUNm5sZE12UHA1bE9YWmozVVhZMXJLOFBLZVN5L3dCTVBiNm1QUWJLdlpVczMwUHFjS2JxR2RQejZxc2wvcVhOcXd1cFY3anVmWnRKJiN4QTtxeDJPOUZ0bHIzc3gvd0NZL3dDRFhSVVpPUmF4eGRXMnAyOEdzUzhoMVJJYzF6L1VweC9TeVBUM2I2UDBubzJmNFJReE9wdHZwYmRhJiN4QTt6N051Z2hsam03eHB1MjJBZXhydDNxZnpiN2FuMXM5WDFVbE5YNnZqbytQVS9ENlhUbFUxNlBJeWFjdG4wV3N4MkJ0M1VxMi9RcXFxJiN4QTtycnFaWi9Oc1d1czV2VlRaUzdJWTBDcW14NGVHbHR4dHJEVDZic1Q3UFlmMGxsenFxL1R0WjZucWVyVDZYOHplb1ZkZXhuMlYxelU4JiN4QTsyTmZhNDFYMU9ES211Y3hsMW01OWRudmJYWjZucFYyMVV2eDhxdjFuK2xYNjZVdmtZTjF6TEtNUjl1TlhrUFphNjVwOUxZMTIreTF1JiN4QTtMVlVHVy9hWFhqMTd2dFAwN012OVBabVUwL3M1RWYwejE3YThySWMxbVZYc2E1OWRkUkRtVlBkZDZlN0lwdXZycXZzOUs1OVRidjBGJiN4QTtsTmZvWC80YTRMdnJMMHl2cUZlRGE0MW01MWpLcnlXbWx4cVl6SWQrbFk5M3A3bU92OVAxbTErL0N5LytDOVlvNjNodU5yUUhBMWJ3JiN4QTtBNHRadmZXNjJ0OU5MclhzYSszOUI2bi9BQlZsTm4rRVNVbG94TWlyS3N1ZGt1dHJzZ0NwNDBhMEd5ejJ3N1o2bnFYdS9TZW4vUnFzJiN4QTthbi9BK3ZZWEZ4blkxWnJOMXQ3WjluckVPYzFzQU5xRmdhMnkzYi9wTWg5MlEvOEF3dHowUEh6bXZ0K3pYZ1ZaUXFiYSt1U1d3NHZyJiN4QTsvUTNGclBXMnZyL2Q5VFpaUjYxVlhySzFJU1VwSkpKSlQvL1U5VVNTSmpWSkpUUXZzNm1NOXh4MmI2RzExaHJYdmF5cHpudnMrMHZkJiN4QTt0cHV5bTI0MU5kWHBmNEMvN1JzLzRlcXcvSXRZMmZRZFk0VnVmRmJtZlNidDIwTjlaOVA2UzdjNzB0MzZMOUgrbXNwVU12SnpLYnEyJiN4QTswWWh5YVhNZTZ5eHIydGMxelhWTnFwWlhadDN1dWJaYy9mNmxkZGYyZi9oRkQ3VjFLYkNjTUJnc2F5a0cyWHVadTJYWFdNWlcrdW4yJiN4QTtEMWNabnIyK3QraiswZllyTi9wSlRDbnF3dXluNHJzWEt4MzFocE5sbFI5TWt0OVY3R1gxZXRTN1pMV1A5Mzg1K2pwOVN5dXpaUEY2JiN4QTtqYmZrMjQ5MkhmaWVtRzdMTFF4ekxOM3Evd0EyL0d0eUd0MmVoNy9XOUwrZHEvMGlrN0x5dnM3Ykc0amhhNm8yT3JlNW8yUGhzWTlyJiN4QTtxZlhkdjNQK2xqMTVEUDBWdi9BMTNEdjZsYlRuWW1OOW5McThrV0d5MFBiTmUzWjZmNnYvQUQxclh1czIyMlYvbzhmMmVwOU5KU0RMJiN4QTs2emRqTWUzSHhic3kxbGpRR3VOZE81cnJMRzMraTdKZGpWMmZacUtmVy9sMTJZMzZYMDdmWFViZnJKVFZnVjVUOGE1bDl1dy9ZWG1sJiN4QTt1U3dXQjVxc3VvZmtzYXh2Nko3bi9wZDlleXoxTm5vMytsRHBXZDlZN3NhdHVmZ2pFeVBZNjIyNjJwN0o5UmpzdXBqTVI3bk1aOW50JiN4QTsyOU5jNTFyL0FORCt2ZjRPN051L3RGcDZpN0JEeDZyc2R0OVZKcmVQenJHVzc4c2JzYjNmbzJzb1orc1ZlbmJkK21xL20wcHJONnhYJiN4QTsxRHBtWGRqL0FHakZzeHdkR2lrM0dBMjFqc2JmOXJ3N21aRGYwZE52NlNwNmtmckRqVjRuMnErbStzYXU5TVZQZFo2ZnFWMDEzL1oyJiN4QTt0OWYzVjVGTjlsZnArcmovQUtXbTc5WW9zclJPb2RVOUJyL3MxZG1SWlRUOXFjeXRyb2ZVRDlDaS93QkczRnR5YmZUMlZZdnJWMnYvJiN4QTtBT0QvQUoxVWVwZlcybkMyaXJBeThwejdtME1OZFRnMXgzQmxybVB0RE56V01mVzZteitZekxMcUtzVyszOUxaU2xPbTdxRExNZXEzJiN4QTtHYzB2dURYMXNNT0xteXgxckdOYlkzOUo2VHZwNy9TcWYra3QvUnFHTjFSdGx0MU9TejdPNm91YzF6MzFROWpYMnMzc2JWZmZiK2paJiN4QTtUK2w5VmxYK2Y2MVZPZGwvV1RJd0xzcXZNd1N3MFltVG1WMjd3SzdHNDlyMlZVK280ZWt5Ni9IZFRrZnptK3ZmK2xxV2xtOVNPUGlPJiN4QTt5S2FYWkQydUxSVUcyU2RtNTl3SHBVNUR0L3AxVy9aL1o2ZVRrZWpqK3IrbnJTVXlIVWczSHB2eU1lN0hOejIxbXA0YTl6QzkzcFZlJiN4QTtyOWxma1Y3SFAyKyt1eXowL1U5UzNaWDZpWi9WOEd1aDE5ankxakxQUmRBTDNiaWZaN0tmVWY4QXBHT1pjei9nSCt0L05xcG05UnpCJiN4QTtUaldNNmRrRnJ6dnZvYTVndmJzZlhYUlcxMU4vMlQ5TGJheTZ6MWN6MFBzVmVUNi8ralZlN053NitrdDZXT2taOW1EWXl2QnJvWlhxJiN4QTs2aTF0bU14em52dmJiUlN5cW45Ty9LZlJrWTNxMCt2NmFTblp3c2wyWGkxWkxxTGNZMnREdlF1RFJZMmVHMk5yZmF4ci93Q1R2V2ZpJiN4QTtmV0RDYmhtM055Nm51cXRORmw5VFMycDl2dWV5ckdIcTVYcVBkWDlHdXU2NnoxUDBQOUkvVjJhZnJNM0ZvQjBpVHRJR3BMUHBPOXY1JiN4QTtuK3Y2TlZiY3pJWjFDdkg5TmxlTzV6UUxiQ0FiUzZ1K3owc05yWE9kWmZRN0gzMnNzWlgrcjJlcC9nRWxNSyt1NE5ub3dMbWZhTFRUJiN4QTtVMjJteXQ1SXFzeXQzbzNNWmY2YnE4ZTcwMytuK2xzWnNyUkxPb1dWNURXbWh6OFp4YXh0OWMySDFITzlQWWFxMnVkVzJuYmI5cXV1JiN4QTs5T3FuOUQvUGVwZDltQTdxbVpYUmwyMjlPdEw4WElaVFRWVCtrZGF5ejBOdVJYdmJRejlIOXBlMi93Qi9wVlB4ci8wNkxYMURLZUtxJiN4QTtqaHVia3VlMXQ0M1RUVzJiVzIydHk5djZadTNHZjZOYksvdFA2YkUrMTBZUHJXL1owcGY5czlLYzdISXZhNFpOZ3F4clFDNnQ5am0zJiN4QTtQYlhWa05Cb2MvYmpYLzRUL2cvOE5WNmxrNVdPMFdGendHMFQ2emlZRE5vYlk3MUhmbWZvM3RmN3Z6RlR5N2VuWnQrTGd2RE1oejNmJiN4QTthbU5ramFNVjFON2Noam1BdDNWNUYyRCtqMzErcFZmdi9TVktET3JVMmJTL0Z0OTlMY3lvTnJlOTNwUlVDYklacysyVlB0ZitxWTl1JiN4QTtUZjZWZnFmNGF1cEpTTS9XT2diYUgxbXJxTjlyNk1YRHQzTkwzdE5yVzdyUlc5aks5bEgyaTJ5djEvU3hyY2U3OUo5cXhQdEYzSDZ0JiN4QTswN0p5N01LaTlqOG1wamJIVlRCTmJnMXpicXAvbjZQMGpQMDlQcVZlcCtpL25GU2YxWEdkZlpUVGcyM1dHNnFxMTNwTzJibjJQb3VkJiN4QTtZL1kvYjlsb3hQdFcrNWxkVmxIMkQwN3YxdWhWOHJySFNjVEtkVGs0dHJqZGJpMTBEMG1FdU4rOTFQcDBOL1dtVjQrek12dCsxVmV6JiN4QTtabGVsK2svUXBLZWdTUzdKSktmLzFmVkVra2tsTkRQNmpmajJOcnhzUzNLY0hNOVVOYTVvOU4wdGUrbTE3ZlFzc3E5cjMxZXF6OUgvJiN4QTtBTUlnczZuMUVPYWNyQ05OYkcrcGM2czIzUzBOZDZuMmRsZUw2bHJtMnZ4NjY2ckdZK1JiK3Qvb2ZTb28rMjJiN09xak1yYmoxVXV4JiN4QTtOQmE2eDdtdjl4OTlsV3hsamYwTFcvelQvd0NrK3IvUFluMmI5YmhVN3FHVDZlUitrd2pMUy9EdGJXNkd0TnJiZlV0b2RjM2RkVzlsJiN4QTtqUFJ5ZjBWdE5IK0Q5ZXExS1k0K2RjTDdUYTI4MVdGNzYyUHBlSFZpc3R4bXNZYWFuc3NyeUhWVzViUFd0KzAvcHEvMFhwL3pHZFhsJiN4QTsvV0szRXB4VFhaVDFURGRVYmJudGI5bnpHdGM2dkpiOW9yeDd2c3YyaWh2Mm4rajQzcFhXMVUvNE85YTFwem52cjlDd05OZHdmWXgxJiN4QTtiZzE5SkZsUnA5VjI3YmExMzZ4NmpQOEFSMVUvemQvcUlJenVwK2lRTWV0K1F3ZTVwTjlkWjFhR2JiZnNsdTdjemM5N1d0ZjZYODEvJiN4QTt3eVNrdVgxV3ZDdzI1dVZXYWFvQnROajZxL1RMaDdXM1dYWFYwL3p1M0gvUjIyZnByUDhBUi9wRk01N1haVm1KVXcyV1ZzM0Y4ajB3JiN4QTs3UStoYll6ZTZtN2JaVGJzdHIvU1UzZXBSNjNwM2VtcmNtM2VLOGRrdmE1cHM5UmxqV2JDNzA3ZlR1Ylc1anJXYlhXTXIvd24vQlYzJiN4QTtmYUZVcGQ5WUd1dTlSdGJtQ2lpdkhPN2VmWDkvMnZJdkhvNERYMTdyS3ZiVSt2MUs2UDBWZEZ0dm9KS2JGL1VuMUY0YmgzM3VaSHNyJiN4QTtOTzRoMndNZHRzdnIyc2M1OXpkOW16K2laSC9BK3NzeS9NYms0N2NlcDc2L2UrMXpIVmhwSU5kRmRGM3FqZjZmNnhabWVwUitsL1VkJiN4QTtuNmIxZlF0S3l6TFpWV0xXQzYwL3pqcS9hd1M1b2o5STdmOEFvNjMvQVBYUFMvTVZhck82c2NqRHJzNmVXMDMxR3pLdk5yUDFleU56JiN4QTtjUTFOM2ZhSGY0UDFxbmVra3BPM0x5TnBjL0VlUDB4cURXdXJKOVBkc2JsdjNQWTF0VzM5SjZmdnlObitDOVJSeU12S2J2OEFzdU9iJiN4QTtUUnRjOXJvWUxBZDNxVTQ3M3ViK25yYnNzL1NzK3kyZjBmN1JYK251eFFZWFVzL014c1hJWmkxQm1SV3l5d3R5QTlySEZ6ZlhxYmJUJiN4QTtWWlhmc3FjOTlObGY2TzZ5djAzL0FHZitkVTJQNnkxNEwyMDJibnVEaHZMV3NyRi82SnpQMEw3TEwzOVBzL1M3bitsOXB4OWpQWmI2JiN4QTt5U2tkblhEVUM3SjZmbDBWaHpXdXNjMnB6QnVMZDc3SFVYM2VuVFJXNzFycjMvb2ZUcXM5L3Jmb2tUTjZ4ajRUZlV0cmQ2TFM4MnVEJiN4QTtYT2VHMXdIdXB4cVdXNVYvNlI3Zm8wK242SHJaUHErbDZQcjJNdTIrdGxaeDI3eWJhMjJhQjBWbHc5Vi92dXh2bzEvbjc3UC9BQXZrJiN4QTtmelN6Yzdxdlg2M01aZ2RMcXkvZnR2ZWNrMXRyYkZEdC93Q2t4L1V1YitteVA2TlhkN01iL3VSWjlqclNtMVIxYWg1SXRwZml0cmdXJiN4QTt2dWRTMXJIT2JVV1Z1MlhQM2JyYm40emZTOVNyN1JpNURQVS9tZldxWC9Xem8xV1BWWlNiTXQxNTIxWStOV2JiWEVPOUt6OUd6NkhvJiN4QTt2L25kN3Y4QXo1VnZMa2ZXZnBsR1U3R0xpNXpBeDFqZ1dORFcyUHBxcnQvUzJWdXN4LzFoci90TlRiTWRuNlJucWV2K2lWY2ZXVnRWJiN4QTt0UnVmWGJqNUV1YTZvTzMxMXVjZnNyN2FXdXZ5TExjcXZJd3RsWDJldjA2Njh6TXZ1ci9SNHFTblhzeXE2NjMydlkvYXdib2F3dmNUJiN4QTtHNHNycnEzMld2OEFiL2cyZjFGWEhWc1d5NnlpcXE1OWxCOTVkUmN5dUFXNzNWWk5sTGNlL3dCcjk3R1VXV2V0L2cxVzZUOVpzUHFWJiN4QTtwcUlPTFk5Z3VvcnVPeXgxY3ZyczlTaXdNc3F0cHV4OGl1eG42U3I5SDZ0TjkzK0QxUTZrT0lCYUhQOEFjUUNKTWJXYnY1WDVqVWxOJiN4QTtSL1ZNV3RqNzdxcmFzZGxkZGd1c3JMZHh0TzJ2SHJvUDYyL0wzYkdmWi9zL3ErcmRWUlgrc2Zva0dqcXZRN2NTeStxQmo0N0x2WDNVJiN4QTt2WUttMWJmdFZXUXl5dG4yYXozTmY5bnU5TzIxbjZUMDNyVDNBNnlFOGhKVGk0blVPbFptSFhtMjRSRG5iYm5sbU8rNXZxbHJLWFdZJiN4QTs5OWRINjJ6YmsrblZtMGZvc2pIOVcybXowSzhqMDdlQjFicC9VaXc0emJTRFdMcTMyWTkxVGRobXRyMjJaRk5UUGY4QW1NL25QVDkvJiN4QTs4MnI2U1NsSkpKSktmLy9XOVVTU1NTVXBKUXRlNWxUM3NZNjF6V2t0clp0M09JSDBHZW82dXZjNy9oTEdNV1hmazlhcWRhUU4xWWE0JiN4QTtWdWJqYnp2M05kWGJ0Wm5lbytwdEZ2cHZwOUtxeXkzRXliUDBYcjRkRmlVNnhJSCs1VXoxYkZCZ3N5ZmxpNUIvSlFzN3FQVWVyNGpUJiN4QTs5bUYxcERjaXlYWVJ2SjJQZHNvWjlueXNKcmYwWDlFOVQrZnJaK2t0KzBmVDNmQkpUbU8rc2ZUMnVMVFRuU1BEcCthUi9uTnhOcVgvJiN4QTtBRGo2Zi9vczcvM0g1djhBN3lMVVZIcU9ma1kxTDNWWTl6eXl5dHU1bFl1bGpvYzk3S2FycTdkdjBxUCtCdC9UK2paakpLU1Y5Ung3JiN4QTtHQjdXWGdIZ094N21uL01mVTF5T3k1bGpON1E0Q1loelhOUCtZOXJYTENyNjExS3dCcHF1cHMydEpEK24zRUhkNmJHUEQ2c2wxVFBWJiN4QTtlNXovQUVYMit0aVYvd0JPOUQ3UGU5U3U2cDFhcWdzQkZ1VDZybStzTURKYlVHTWEzMVAwVGJycjN1YTR1c29lejlIbWYwV24vdVVrJiN4QTtwM2tsbFY1MmZkaTF1QjlESXlaOUp0dUxhUldXdWJ2cnl2U3VOYlhiZDlmcmZhSzZiZjUvSDlhaitkV0ZtOVNaUmRkMUZ6TFJRNnh1JiN4QTszR3hyNjN1MmZSOU9xNTl6bmZRcy9tdlZyeVBVcTlLei9USlRxcUxyR01MV3VjR213N1dBbUM0d1g3Vy92TzJNZTlReHNpdkpwYmZVJiN4QTtIaGpwQUZqSDFPOXBMTmFyMjEydCtqN2ZaNy9wL1FWVHFSSDIzcFBubHUvOXRjMUpUb1FtYzlqQVM1d2FCcVNURUJVbXU2NHh0MjZ2JiN4QTtGdWQ2aDlBQjlsUTlMVFlMZjBlVittK2s1MnoyZjlXaTFOeTc4VjdNMnV1bXg0TGR0TmpyQkJIMHZVc3B4L2QvMXBKUytSMUxwMks0JiN4QTtNeWNxbWh4RWh0bGpXRWo0UGNGVnQrc24xY3BJRjNWY0tzbmdQeUttei9uUFUrcmRVWjB1cHVSZTZtdkZBY2JiTHJDeDNzSHF2YmowJiN4QTtzcXVkazJmWnE4cTcwbWUvOUQvTDMwbHhjbXkreHdjS1RYdDNzZlZZWGx6SEYzb1diZlRZMXJMYTJiLzV5ejMrejlKL09KS2FnK3RYJiN4QTsxV09nNnhnSC93QkNhZjhBMG9wTStzdjFhc3NiVlgxWENmWTRnTlkzSXFKSk9nRFdoNmwwVjF6dWs5Tk93RmpzV28yUGM3M2gyeXZiJiN4QTs3WWR2M2UvZTcxUDg5UStyb0g3UHRQOEEzZXo5Zi9RM0xTVTNSbTRMblFMNmk0NkFCN1ovS2pRUEJVY1MzcU9UaStvTEdzYzVzTU51JiN4QTtOWlg3b2VmVWRqMlpIck5aNzZmMFZucFcvb3J2OU4rZ3EvV0d3MDM5S3ZiWDZyNjhxMTRZQzFwY1c0UFVYTlp2dExXTjNiZnozcEtkJiN4QTtsSkxza2twLy85ZjFSSkpVdXR2eUsralo5bUwvQUVobU5jNm1XN3h2REhlbitqSWQ2bnYvQURFbE5rRmhJY0ljUVMzZHBJRW5UL29xJiN4QTtSSUkrWTQvMktyaDFVMlkxVjFySzNXM3REbk8yeE83OUlHZnBQMG0xbTF2dGYvbzBleGpoWHRvRFdIYzAvUmtSdUcvMnpYOUppU21wJiN4QTtaMUsydkNzdWZqN2NvZXM2bkVrdmU5bGIvU3F1MjQ5ZDkreTFqc2U2MzA4ZTY3RzlmMHZTc3U5aWowL0t6ckhtckxxMjdBSDJ2ZHVhJiN4QTtXMlduMW1ZclAwVGNiSnF4cUxLNmZ0ZVBrMitwYlY3NnEzb3o3VGpVdXlMS2g2djA3bTFCNzNGb0lhZHJhYTdMOGg5ZFgwV3RxL1NmJiN4QTt5RURwdHZWSFpGdE9ZVytuU1MyUlU5aGU0bmY2ekxYVzJVdHAxZXl2RXIrMDIxVjExMlpPVlhiWjlsclNtMW01TDhkaGRVM2U5akgyJiN4QTsraUd5NnhyRy93QTFVL2N5dXExMXRsUDg1LzZrcWF6T3c4YkhGOTJRSFZQYSsydXlXa3VhQTdKMjB0cEc2L1pRMXptZWt5eC9vMUo4JiN4QTsvR2RrWTlqQTJ1NGtEYlJmL011SW1XVzdXdWQrbGE3WnVleS8wZjBkMzJlejAvZlI2ZmpkT2JsNXVYaTR6YUwydkdNTDZtdWMxdzJZJiN4QTs5UmIrajlqMll0OVAyZC8vQUhHOUM3K1ovV0VsTit6S3hLbjFzc3REUFhjVzFFdUlhNXdqOUUyejZIcS91VTd2VXMvUy93Q2p0UndBJiN4QTtQOTZ6cmNuSW9zeWNrNDh0YWRyTFdWdmM5OWJHc2JYVGFLaFpsNy90dVJrdnFzcHhjbWo3TDZuK2tXaFc1ejYydWN4MWJpQVN4MGJtJiN4QTsvd0FsM3B1ZXovTmVrcFlWTmF3TUJkQWJ0a3VjVEg5Y3UzYnY1ZjAwdlNiQUV1OXZIdWQyTzdYM2U3aFRURm9JSU02eU5DUnlrcFRXJiN4QTtoclEwVEEwMUpKKzl5cGRRWUhaZlRTZnpjbHhFa0QvdE5sdDlzL1MrbCtZcnUwZWZFY2xVdW9OL1hPbUhYK2xPblUvOXhzdnNQYi9uJiN4QTtKS2JUQ1MwbHhEanVJbHNnUkpnYy9TYitlcGVQa1UxYlExcERXaGczT01BQWNra3U5djcvQU5OT2ROeEExSjFTVXNIZnBITTNEMnRhJiN4QTtkdmNTWGFuK3R0VHo3ZzJlUVQ5MGYrU1VmZjYxa2oyYkd4cDNtemQ3dDM5VC9CLzUvd0RnMGRucnRrSGZzZEJneEV0M2EvUi9kU1U1JiN4QTtmVGMvcHVQMGl1akVOanErbjA0OUpvcWE2NjFnZFhVN0haNmJHMldXZm9ySy93QkwvTi92MmZvcmxOemNIRzliRk5Kb1phQzYyNHRyJiN4QTs5TjdzaTYzMDhiMXNyMlhYNWVSZmQrcmU5bFhyL3dDQyswVWVyVndMSFc5SDZmVFIwOFptTjlrcHNzTnhhMDc2eGgyVVZ0YmF6WmZlJiN4QTs2bDl0MU4zOHg5cXcvUXR2eDkvcTAzc3Erak11dDZmOW1abHVxRzV3dWcwN3czZTJxeHpHNVBvMy9wY1ovcDVGVlQvcytSOW94dnRIJiN4QTtvMnBLWjM1bVBSa3QrMHRMU0JzcnZEUThUYTUyMm4yYnI2bldmWm1OOTlkZEY5ejZNZW15L0oyVm9XWlJpZFV0eG10ZDZqY1RJZWJBJiN4QTtHZ3RKZmo1V0srZDdIVjJNL1dYMXUvd1hyTTlEK2NydHFSVDFYRmRUajVGUWRaWGwrbDluSWh1NFhEZFdmMHBZNnI5RzNmOEFwZG4rJiN4QTtpcTlYSS9RbzdYQnR3cHBac0FQcVdIYVEwK3A2cE94NDlqcmZWYnV0L3dETTBsSit5U1NTU24vLzBQVkZUNjA0czZQbnVhNXJDM0d1JiN4QTtJZThTMEVNZDdudDJYYm1OL08vUlcvOEFGcTRxL1VRNTNUOGtNcmRjNDB2RGFtTzJPZWRwaXRsditEZS82UHFKS1k5TzlJWUdLMWptJiN4QTtQYTJwbXh6QzF6U051MXI2M1ZNcHJkVzc4ejBxYXEvK0RyUnJRUzNhMzZjaHpXenRuYTVwOEhlMyt5b1ZXVnR4MjJtS3F3QzV4ZkE5JiN4QTt1cnQ3blQ3ZDM4NTdrU3h3YUFkNFlTNW9CZEdza2V3Y2U1LzBFbElBY210aHNkVXl6SmRac2lzeCtpOVV0cWU5OW0zK1l4N2ZYc3IvJiN4QTtBSC9WOUJUcHY5VmdjV212dTVyaUNXdWx6WHNjNnMyVmJtT2IrWmE5TzA0aHluaHV3NVd4bnF4Ry9aTC9BRWZVL08yYmpmNk8vd0Q0JiN4QTtiMC84SW5yWnRiQkVFdmVkVE9oYzV5U21vNjh1Ymo0blVzWVgyWkQzYnZTcmRaUTBWZnJGVjFyN1dodGYwYVBUL3dBSjlxL21mVTlLJiN4QTt5MWowOVVabVUxMzRWRnQ5TDdSWFliSzMwRU1jM2Q5b3JyeldVZXZVM2RYOUQ4ejFmUzlXNnYwRmRzcXF0WTZ1eGpYc2VDMTdYQUVFJiN4QTtFYlhOYzAvdk5VdEVsTk92THNPVTVyOFY5ZEx3UFR5QkQ5N2diOTRlMm4xUFNyOUdpcTJxMjMrYyswMTBlekkvUktlTDFIR3kzRnRJJiN4QTt0RGhNaXltMm9pTmg5MzJpdXJidTlYMmY2VDlMNmY4QU1YZW1jTVkwQUJvQWFaQUE0Si84NlRNcFpXNGxnRFJBYUdnQUFBVHhBL2xKJiN4QTtLWmJXek1DVHlVNlNTU2xRRlM2aFRiWmxkTmZXMlcxWkxuMm1ZaHB4OHV1WW4zL3BMSzFkVkxQWXgyVjAxemkwRm1TNXpRNkpKK3o1JiN4QTtiZjBlNXpmZnRkL2cvVS9SK3ArWitrWWxOeVBscW0xOTNrZFB1VWFuRnpTUzRPTzl3bHZFQnptaHYwbis1djBIcE5MU2JOcmc0dGNOJiN4QTt3NWc3V0hhZjdQdVNVdnNQcU9kdU1FQWJkSUJsM3U0Mys2ZjNrbVZ0Wk8wdU80eVM1eGQyRGZidUoyL1JUUWZWZVRBYnRiQkgwcGw4JiN4QTs3ais3KzRwQ0FRSjFJUHRuWHRxa3BxOU1xMmROd21HMDNHdW1zZXNJYnZoZ2I2bTJ0ejJlL3dDbjlONnQ4d1FlNWxVK2pPM2RJd0htJiN4QTtzMEYyUFVmUk1qWkxHL290dXluK2IraC9NMWY4VldyZ21FbExOTXVJRWtEODZSRXlaYis5N1VpQ1MwZ3dBWlBHb2c2Y0ZPTytpZEpTJiN4QTtra2trbFA4QS85SDFSVU9wdFpsZEZ6R1pORGd5ekhzRDZIUTUwRmhsc1VYTTNPLzR2SnIvQU9PL3dpdm9HYzI1MkZrTm9zRkZ4cWVLJiN4QTtybkFPYXgyMDdMSE5kN1hOcmQ3a2xMc3V4UUdzYll6UWtOQWNPUWZTSTU5MjJ3K24vd0FZaW5qaWRRaDFiV3RBYVRxOTB5RHlTNXp2JiN4QTsra3B1QkkwSkdvTWlPeDQxL2VTVXJlemVXYmh2YUFTM3VBNmRwaitWdGNuamo0b2JjbWwyVS9GYTZiNm1NdHNaQjBaWWJHVk9uNlB2JiN4QTtkajNmNWllUU5vSDV6eU5UUDd4OGZKSlNSSkpKSlNra2syNXNUSWlZbnpuYkgrY2twZE01clhBdGNBNEhRZzZoT21odmtrcFd4a1J0JiN4QTtFQXlOTy9pcy9xVlZaek9sZXh1bVM5bjBRZmFjWEwzTW5ZLzAyTzJNL09wL3IvNEt6UWExakI3UUdqeTA0MFdmMUwwVzVmU1d1YURPJiN4QTtVNXJQbzZSaTV2N3pYZm1iMi9vL1QvN2I5U3Q2VTNXaW9pV2hwQUpHa2NpV25qOTJFbTFzWVh1YUFDNDZuNUpWaVd3UUI3aVlBamduJiN4QTthZGY3S2N6N3BNamNOb2lJSHQwL2xKS1gxRDNhZTBBRWZIM1NsRGR3R25CMCs1UEJrbVRxSWpzT2RVMjFwZUgvQUp3QkErQmovd0FpJiN4QTtrcHFkR3I5UHBHRFhBRzNHcWJHME40WTBmUVp0WXorb3JnR2dXZjhBVngyNzZ2OEFTM2JHVnpoMEhaWDlCczFNOXRjbDM2TnY1bnVXJiN4QTtnQk1lUmxKU21nQ1FBQUpuVHoxU2poSURrSHo0MFM3L0FCU1V1a2tra3AvLzB2VkZWNnE5OWZTOHl5dXhsVDJVV09aYmFTR05JWTR0JiN4QTtzdExQZjZiUHo5aXRJV1ZWVmZqVzAzTTlTcTFqbVdWODdtdUcxN1A3VFVsTWFXdjJ0OVQ2UXNzY0lnNkYxbnA4TlovZzNmOEFtZGltJiN4QTs5MVI5citBUTdVYVNIZTMrMXZDZGpTR2dFOXlkQkhNcDl3L0g0cEtSRExwZGE5alhTNnBnc3NyZzd3MTVlMnQzcC96bnY5QzdiK2ovJiN4QTtBRW41aVRycWlhL2NXbjFITmFIQnpTWE5GZ2NHdE8zZDlCNy9BTnowL3dCS3BpMEY4UTd3K2llU2s5M3ZxQUhMelBhSUQvNnFTbWNoJiN4QTtPU0J5a2trcGJjMllKZ25nZjYvRlBJU1NTVXFSTWQwd0lKSUJralErUjVUcGlRQkpNRGpYelNVdXFQVVJaOXM2WHRNTkdVN2VKY0pIJiN4QTsyYk0vYzlydmZzL25mWi8xMzAxYWZrWTdBNHZzWTBWenZsd0cyQUhuZCs3N0hOY3FPZGRqMjVYUzNzdXJMUmxQSU9qcDI0K1pXLzAzJiN4QTtRN2E1anZwdTluNTlmOGhKVG9DZnhQOEFGTStJT203M0FFQ08rMU0xN1hSN2dTSEhRRUg3L3dDeVVQTDlSMVFiUzVyWCtwVnVuWDJlJiN4QTtwWDZ6Zm92K25UdmIvd0NrMGxKaUpKQmJvQUNEcEV6L0FOOTJxRHFLM1BiTFFXZ0gyd0lrbHJwL3JlMVRsc2xvaWVZK0tXa2s2UjMrJiN4QTtLU21sMEp0aDZOMDk5OE95SFkxVHJuZ0FickhNWjYxbnMydDk3MWU3UjI3ck82QTNIdDZCMDBzckFwc3c2U0dFQSswMVZ0YTEybitqJiN4QTs5aXZ3UFpBaldRSmpzN3cra2twbE9xVWFoTUJ6UGpwS1FuMnp6R3NjSktaSkpKSktmLy9UOVVRTTlnZmc1RERXNjRPcWVEVTBNYzU4JiN4QTt0UDZOck1qOUE1ei9BS1A2YjlGL3BFZFF0cmJiVStweGNHdkJhU3h4YTZEKzdZemE5anY1YkVsTFZrdzBGaEg1MDZRQ2Z6VHRjNzNmJiN4QTs5QlNKZ2ZQK0tZTzAwYVRCSW5UdDgvN0tnMTlnc05acWVXL1NGc3Qya2t1L1IrNncyN20vOFg2YVNtUXNjY2gxZnB1QWF4cmhhZHUwJiN4QTtseGNEV3ozZXB2cjlQZFo3Tm42V3IvaFBUclo4L2FlblJBSDJsMHlHei9SOHI2Ry8zYnYrSy9TZjlhOVJHYmJZN0lhMzBpMXV6YzU3JiN4QTtuTmtPTWZvdlRhNS8wTnY2Vi84QXdsWHBlcnZ0OUtwMURkOXM2VEFJQnpIN3BQWTR1Y2V4UDV5U25TVFNuU1NVdHVDVWorS2RNU0I0JiN4QTs2NmNFcEtXRmpTSjE1alVFY0hiM0gvU1ROdFk2STNha3QxYTRhdE1Ia2Y1djc2Y1BCYTF3bUhSRWdnNi92Tkk5djlwSnIydUJjQVlCJiN4QTtJMWFRZmFkcDBjUEwyL3ZwS1hrZmNxV2RrVnN5ZW50SjFma09BaDIzaWpKYzdjei9BQXpmYi9OLzllL3dTdUY0QWt6cVFOQVR5ZHZZJiN4QTtLRnphM1dVRndrc2VTelQ4N1pZM3cvY2M5SlRDekxvQmFkOVphMTRiYTR2YU5tOXY2S1ovT3RjK3BqR2Y4TWg5VnRkVmlzZXg1WVRrJiN4QTs0ckpCMjZQeUtLM01uL2hHdjJmeTBhNDJteWowM2JXaXcrcUkrazNaWjdmb3Uvd25wdS93Zi9mRlY2NWNhY0t0NEFNNWVHMDdtaHdoJiN4QTsrVmpWblIvNTN2OEFhNzh4SlRmTXdZME1hRXB0ZlVqU0krY3BuRU4zdkw0YnQ0TUFDTjB1bUUxbDFWUkJzZTFqWEVNRG5PQWx6aUdzJiN4QTtZSi9PZTVKVFg2Uzh2NlpoT2M4Mk9kajF1THlRUzRsalBlUzFyR3UzZnlXSzB3RGFERWFlRUt2MDF3SFRzVGM4dUpwcjk3eHRjNDdXJiN4QTs2dmI3ZmU1Rm9zYStpcDRHMFBhSEJ1dWtqZEh2YXgvK2V4SlROcldTWE5BazZFanlKL3ZTWjdtc2VRQTZKMDFna2RuSmUweURCQjBnJiN4QTs5MDFiV2hqQUdiTnJRQTB4TFJwN05OM2drcG1ra2trcC85VDFSSkpKSlMzdW50dC9GSUIwZTRnbVR3STBuMi92TFA2bzBISXc3SFlwJiN4QTt5UFJjOTFWclM4R3ExemZzMVRuQ2xybmVqYXkrMnErMzlKNkg4NzZQb2V2ZmpLa3Zka1dPT0ZsVnkxdG05OXRackxvci9RMTF0eTdOJiN4QTtqMmY4VXlqMlhmcFAwdjZaS2JZT1Y5c0xTeG4yVVZ5TGR4M213bVBUOUxidDlOckdiL1U5VDgvK2JRYzNEc3lNbnA5elNBTVBJZGU4JiN4QTtIdURSbFlrTjlwL1B5bUtUOHJJYmxzeDI0bGhxUDBzc3VyRlFHMTd2b2l4MlR1M05ZeitqK24ray9uRVA5ck1hemZialpMRytteXlXJiN4QTswdnNrdkxXdXFiWFMyeS8xS2ZVWjZ1K2xuL2dHVDZLVXZaMDJ4K2Q5clptNU5RaVBzN1hNTlBOUmVmVHNxc2Q3MjBiUHAvby9VdjhBJiN4QTtSOUt5Nng2ZHVOa1ZpeWNySXVrVkZzaWdSc2dXZW5GTlg5SjIvclBxZjZUOVU5QlNIVVdITHR4UlRmdXBhd20zMG5pcHhmdjlsVnhHJiN4QTt5eDFUYTkxdTMvUzFmNFJUdHk2cWhMMjJrQnBmN0tySG1HN1owcVk5Mi8zKzJ2OEFuSC85YnNTVWh1cXlqWU5sMTdXT0FiN0JUN1NBJiN4QTsvZGE3MVd1K2x2WjlCdjA2ZjlINm04dm91ZFMycXl5MTRMUFRzTXRZNHlJTmpuMGlwekxmL0MvcCsvNkNWR2RUZlZYYXh0b2JiTzBXJiN4QTtVMjF1RU9GUjMxM1YxMlZlOTMrRVovTi9wdjVuM280TFh0NGtFY0VSb2ZFT1NVaERIc3ROenJyWE1lVEZCREMxc2l0dW15djFQWjZUJiN4QTszKzYzL3RSZCtaOW45QWo3bXNadkljUjVOYzQvNWpRWHF1N0s2VmhNZUgzWStNd09jNTRMbVZnUGU3Zlk1K3JmZmJjL2MvOEFmc1FMJiN4QTtjenBsZlR4MUREdng2OFhmUDJ0akJiVUJaYVB0anQrTzVyV2VwWnY5ZkpjLzBhTGYxbksvbXJFbE40M3NEUTRoOEhRZXgwOHhxTnZ0JiN4QTtVWFAzdXBjME9qY1NaYVJwdGVQZHUydVo3bGlZSFJzbXVuSXNzL1o5dHIzVkdnc3cvczRxcXJaUnN4MzFPc3V1L1J1eHFMV010czlTJiN4QTtyL2cvVHgvczQzWGZXNndWMDR4NlNiMnN2YmZXTGJnTjRNWSt4cmFIWGZxZS9IKzBlLzhBUyt2L0FOcC8wTmlTbm9MR0d4OUx3NTdCJiN4QTtXOHVJYkFEZ1dQWnN0M2Y0UDlKdjl2OEFoV1ZxbjEybXkvQ3JaVTAyT0daaFdFTjFPMnZMeHJyWC93Qld1dXQ3M3JSWEs5TjZWZGdVJiN4QTsxMVp6c1FNdXRadHFiZGx1QlpRTE10bCtMWG1YM2ZyZTJ1aXowYWY1bjByOHI3VGsvd0Ewa3A2ZXlOajVHNzJtV3hNK1czODVTZ2JwJiN4QTtnU1JFOTFpc3hmcS9jYThldkt1cmZTU0dVak15YVhuWTc3SHVmVjlvcXN1YTY2ajAvVXMzK3ZiK2svU2V0Nzd1WGdPT0hrTnhIT0dRJiN4QTs1bHhwTmwxd1o2bHJYZnpqNjdQV2JTMTd2MGZwZjBYL0FMU2VsN0VsTmltd0JqR1d1YTIxdFlkWldEcU8wOHU5bTVyaytQc0ZGVFdhJiN4QTtOREFBSm1BQis5K2Nzek54OCt6RGJXUXl1eXExaFpzeTdhZHcvbTNOdXZiVFpaK20zdnE5TDA3L0FQU1YyZmFmU3RwcDlPZjFsK1E2JiN4QTsvRnJ4bXNMcm5aZVBablg1TGpZMStSUlg5bU8xMlBnNC9xMS9SK3ovQVBBUHhjVzdGU1U5RTE0Y0NXa09BSkVnOTJuYTRmMlhKOU5KJiN4QTs1aFVyT3B0eE9sc3p1cHRaaDJtb1BzeDMyMWpiYVdlbzdGWmtXdnB4bnYzYnEyMmVwWFVoMzVlRG5ZdFR3YWJxbldWT2FYM01ESk5yJiN4QTthcUxHMlV1dTMzZXAra3dmMzh1dW45SlJmK2tyU25TU1NTU1Uvd0QvMWZWRWtrTEZ5YXNxaHQ5UWVHUG1CWXg5VHRDVys2cTl0ZHJQJiN4QTtvL25NU1UxODhZOXQyTmpYTkpjNHVzcmNBU1dsbTFydjVwemJhdDdMZlRkYi9NZW0vd0N6My8waGxWM1BkVXZzWlpaaE02ZmxsZ3VZJiN4QTs5ajI0MTE5UnRiYTdJOWJkUjFDcjFjZjlMVmRYVC9OVStsNmY4NVN6RHh1bnlxY2F4ampkU3k2V09yY0h0RHByczIrdlg5RjI2dXpZJiN4QTszMUt2OExzV1JXVFgwNjIrem9qY2N0Wlo2ZEZlMTVkWFNmMVNtOW1IWGRZeCtTNng3bVkyUFhtMVVVK3A2dHZxL3E2U21HZDlYWDlVJiN4QTtveEtNcG1NS2EzRzNKYSt1MFA4QVVBOU92N09NYk9hMmgyeTNKMzIrdmtmNEw5R21zK3EzcTFYVjNNeExtc2FHNFFjeS93Qm85UDBKJiN4QTt5SE95M3VkZDZkZU5YWGxWL3A2dlNzdC9uTGYwZC9KejhMRHlLOGNNcTlNbmJhUTdhNnQxcmc1cnZSMmUrdXo5SS9Jc2EvOEFRL29iJiN4QTticS9zMWx1VmoxdXBZLzFNeDR3K3BEcCtLKzZuMG1WMnVxcHNOUmRveW5XdTFyUFY5elBTL3dBTC93QUlrcGxWMHZMT095aS9GeG1WJiN4QTt1cWJSYlZSZmN5dHJIZ3N5L1FZSzJ0YTJ2Ylg5a3IvUi93QTVrZnA2UFZzOVdkWFIyc3lXV0RHcnBaV3h6R3VxeUxXN1FYT1lXTXgyJiN4QTtWc3EyWFVPOWU3M2YwdGxYODk2TldVcmRYUmVrVVVPeDZNT21tbDVMblYxc2F4dTV3REh1RFdCdTNlMWpkNnMxVVZVaHdyYnQzdUwzJiN4QTtua2x6akxuR1VsT2E3NnYwdnM5VjJYbU1kdHFhRzE1TnpXQTFINmJhalkvM1pEZlprZXI2dnFiUFUvbnZWdHMwNnEyMU0yTkxpSkpsJiN4QTt6blBQdUplZmRZWE8vTzl2N2lra2twQm1abEdGU2JyaFk1c2diYXEzM1BKUDdsR015MjUvOWl0Unk4eXFuR2JkczlkanlBME5kV0pMJiN4QTt2NXVIWkZsTmY2UisxalBmOU42NXI2emRINndjbkt5OFRPeUthOG9WQmphVGVYdGZXSCt4aHdLcjdLS0dOMzMvQUtXaktweTdiN2NmJiN4QTs5VHUrelpDYnAzMWI2NEtzek50Nmlick0zRnFycHhNaHJuVW13VTBOdHR6cWNtdHJ0MlUrdXpHeWQrSjlwWmkvNlA4QW8xU1U3YmVxJiN4QTsyR21rNU9DN0djOS9wdXB1c3AwRzE3bk9wZlhiYlJkdDlQOEFtdlZxdTlIMUxmVC9BRExOTU9FVEs1akk2VTJtNWw5dUZpNDJEMC9iJiN4QTtsV1UwNDFlUUw3cldzWS8wdDFXUGZYbFlqOGY5Ry9IL0FFMlgrcmY0VDlYUnFqVWNIcHI4Ui82emxXQnd5dnNiYVgyM2VuZGRsNUxxJiN4QTtNcjdONkZtZlhpM045dnYvQUUzK2cvU3BLZWgzTm1KRWpVaEQ5S2tWdXJKSmE0UVpjU1lJMmZUYzdjMWM5K3plcU1jV1lHT01ISGRwJiN4QTtrVWVoaUZ0N1piVTRlcFhjM1p2eDI3OWxtUFl6MUxYKzk5ZnAxb2xIMWRwcXVGdDcyNW1PS1dZLzJRMVZ0cXJMSC9hTnJjYkVwZXoyJiN4QTsvUy9UK3Q2Tm44enM5ZEpUcjRKeExtSEl4QXowcm5senJBUTUxam1EN001ejNOSi9TTWJUVlgra2Q2djZQMExHVjdGYWMxcjJsamdIJiN4QTtOY0ljRHFDRDJLcWpIdzNNcnBzeFdCck5oWlVXdEladDBxLzRObnB1YnRyOU5WbWRFNkMrMWpoMHZGWWFpSFZQTkRBNXJ2cE05TDlIJiN4QTsramQrZDlMMVdmdUpLYnQyRGc1QmU2L0hydU50WnBzTmpBNHVySmwxRDk0OTFMbmY0TDZDaFgwenA5ZHpzaHRERGtQTXV2ZU45aDl6JiN4QTtyV05OMW02M1pVOS82Q3Zmc28vbTZmVHJUTjZmZ0hMSFVCU0RrQmhhMjR5VHRjZHpnM1hiL2JWbXV0dFZiV05uYTBRSkpKK2JuUzV5JiN4QTtTbk96T3A0Tm1Ma2daZ3c3S0grazU5eEZNV0VsbGJmMXlxeGpxcjNqMDY3dlF1cnUvd0FCNmlxMFhYbXh1SmtXNDFqNkRYNndia1Z2JiN4QTt0Ylo2MURxNjNVL1lzZG16MERSZHYvUlcrdGY2Vk5YOUd5bGY2aGRrTjNVMTFlb3g5Y3lIV3NQNXpiUDB1TlRkNmIvZFQ2ZXgvcmZ6JiN4QTsxbitCUUtmdFRyWFBmU1duMU5oakl5Q0lENlBjS24wVnMvMDMwZjBYNkwrZDlISnlmczZVNnFTU1NTbi8xdlZGVTZUVm1VOU9vcXptJiN4QTswc3lXQWl4dU81N3FScWR2b3V5SXQ5UFovZy84Ri9OSzJra3BTRmRpMVh1RG5sNExXdVlObGoyQ0hiZDN0cWV4cm4rejJXZlRyL3dmJiN4QTs4NDlGU1NVcUVra2tsTHBKa2tsTlhPNlQwdnFXejlvNGRHWjZVK245b3FaYnQzUnYyZXExK3pkdGFnVi9WcjZ1VmtHdnBXRXdnUUMzJiN4QTtIcUdoMWpTdGFLU1Nuak9xNTEvVGVzMzRlSDBteTV0TkhyNFdMaDVEc2R0a05MOGpJdng4T3R2cWV0dHN4S3ZWKzJlbGw0ZUpYNldKJiN4QTsrMDhXNi9aK3JPVGxYVlpOZHJMUFFxc0Jwc3R0OVoyNTdXM1plSDlvM1dmYVAyZGxQdHhQWFk3MC93Qkg5bS9uTVcxYXQrTmpaTERYJiN4QTtrVk11WTRGcm12YUhBdGQ5SmhEdnpYUXAxVlZVMXRxcFkydXFzQnJHTUFhMW9IMFd0YTMydGFrcEJaZ2gxN2JxYlhZenQ0c3VGVGEvJiN4QTswc0FNTGIzVzFXMmU5akttT2RXK3UzOURWK2tWamFQQlNTU1V4YzB1YVFDV2tpQTRSSTh4dWxxek1ub0p5R3VucUdiVlk4YlhXMTNiJiN4QTtTUk8vK1oySEZaL1dyeDkreGFxU1NuSC9BT2JsZnFCeHpzM1o2WG8rbTI3WTJKM1Z2YjZMYTMxMjFmUjlTcDdQVS83VWVzaXQ2TmJWJiN4QTtqMlYwWitRMng3bnViZGFXM09hSHQ5TmxPNjVqclBRcGR0dFkxbGxkdnFmNGI2YTAwa2xOVVlkbFlJb3VOVXlkb1pYdDNFUnVJREd1JiN4QTs3ZnZxWnh6YmlIR3luZXI2bFpydWUyYTkyNGJiQ3owM2I2dDM4aXoyZnZvNlNTa05tTlhaU2FIRit3Z05scjN0ZkEvNFpqbTNidjVlJiN4QTsvZWhzNmZReGdZMTEwQnpYZ3V1dGNaYVdQSHZmWTUrejlFemRYOUIvNlQvVFhiN1NTU2xra2trbFAvL1o8L3htcEdJbWc6aW1hZ2U+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpBbHQ+CiAgICAgICAgIDwveG1wOlRodW1ibmFpbHM+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iPgogICAgICAgICA8ZGM6Zm9ybWF0PmFwcGxpY2F0aW9uL3BkZjwvZGM6Zm9ybWF0PgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIj4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MjwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHBob3Rvc2hvcDpJQ0NQcm9maWxlPnNSR0IgSUVDNjE5NjYtMi4xPC9waG90b3Nob3A6SUNDUHJvZmlsZT4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgICAgICAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIj4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+dXVpZDoxZjQxZmMwMC0xYjhmLWY3NDAtYmU0MC03NzAzYzg3NzYyY2E8L3htcE1NOkluc3RhbmNlSUQ+CiAgICAgICAgIDx4bXBNTTpEb2N1bWVudElEPnhtcC5kaWQ6OTM2QTAxREMxNjIwNjgxMTlCQjhGMjRCQzY2QzI0RTg8L3htcE1NOkRvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+eG1wLmRpZDo5MzZBMDFEQzE2MjA2ODExOUJCOEYyNEJDNjZDMjRFODwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SGlzdG9yeT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNyZWF0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo5MzZBMDFEQzE2MjA2ODExOUJCOEYyNEJDNjZDMjRFODwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxOC0xMC0zMVQxOToxNzoxMyswMTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENTNS4xIE1hY2ludG9zaDwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNvbnZlcnRlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6cGFyYW1ldGVycz5mcm9tIGltYWdlL3BuZyB0byBhcHBsaWNhdGlvbi9wZGY8L3N0RXZ0OnBhcmFtZXRlcnM+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjk0NkEwMURDMTYyMDY4MTE5QkI4RjI0QkM2NkMyNEU4PC9zdEV2dDppbnN0YW5jZUlEPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE4LTEwLTMxVDE5OjE3OjQ0KzAxOjAwPC9zdEV2dDp3aGVuPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBQaG90b3Nob3AgQ1M1LjEgTWFjaW50b3NoPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6U2VxPgogICAgICAgICA8L3htcE1NOkhpc3Rvcnk+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczpwZGY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGRmLzEuMy8iPgogICAgICAgICA8cGRmOlByb2R1Y2VyPkFkb2JlIFBob3Rvc2hvcCBmb3IgTWFjaW50b3NoIC0tIEltYWdlIENvbnZlcnNpb24gUGx1Zy1pbjwvcGRmOlByb2R1Y2VyPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+DWVuZHN0cmVhbQ1lbmRvYmoNMiAwIG9iag08PC9GaWx0ZXIvRmxhdGVEZWNvZGUvRmlyc3QgNC9MZW5ndGggNDgvTiAxL1R5cGUvT2JqU3RtPj5zdHJlYW0NCmjeMlUwULCx0XfOL80rUTDU985MKY62BIoFxeqHVBak6gckpqcW29kBBBgA1ncLgA1lbmRzdHJlYW0NZW5kb2JqDTMgMCBvYmoNPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0ZpcnN0IDQvTGVuZ3RoIDE0NS9OIDEvVHlwZS9PYmpTdG0+PnN0cmVhbQ0KaN5kztEKgjAUxvFXOXduhLmjZBYixLzpQhj0BMtNHdROzNnzVwQFdfvx58dXgoC6zmSwOjryrY6WtftcYIWiQNzhFouVwESIhL8rCgwOhs4W1ESR5oluIE+bNUKne+dfC886Mv9UlZcfSgUyS28D+6UGCl8I0hSOVz1akOTvNszPi6Auy5g6z5vmIcAAOo85Ww1lbmRzdHJlYW0NZW5kb2JqDTQgMCBvYmoNPDwvRGVjb2RlUGFybXM8PC9Db2x1bW5zIDQvUHJlZGljdG9yIDEyPj4vRmlsdGVyL0ZsYXRlRGVjb2RlL0lEWzxDNjg0MEM2QkE5ODc0RTkwOTlGMEI0N0NCQjcwNkY1NT48ODlGMjk3QTkxRTFGNDFCN0JEQkMzRUFGRDE3RDIxMkE+XS9JbmZvIDYgMCBSL0xlbmd0aCAzOS9Sb290IDggMCBSL1NpemUgNy9UeXBlL1hSZWYvV1sxIDMgMF0+PnN0cmVhbQ0KaN5iYgACJkaeaAkmBob6RCDB2A0kGN4yMX5RFQSxGAECDAA9kwQUDWVuZHN0cmVhbQ1lbmRvYmoNc3RhcnR4cmVmDTExNg0lJUVPRg0= - - - 13130162 - Projekt - - - - - - 20180306 - - - - - Rechnung 181301674 - EUR - - 58 - - DE91100000000123456789 - - - - 47.9 - VAT - 252.1 - S - 19 - - - Zahlbar sofort rein netto - - - 252.1 - 0 - 0 - 252.1 - 47.9 - 300 - 0 - 300 - - - 420 - - - - diff --git a/tests/zugferd2/Tests/Legacy/ReaderAndBuildTest.php b/tests/zugferd2/Tests/Legacy/ReaderAndBuildTest.php index 8dd4df56..8f31fa2f 100644 --- a/tests/zugferd2/Tests/Legacy/ReaderAndBuildTest.php +++ b/tests/zugferd2/Tests/Legacy/ReaderAndBuildTest.php @@ -6,20 +6,12 @@ use Easybill\ZUGFeRD2\Builder; use Easybill\ZUGFeRD2\Reader; +use Easybill\ZUGFeRD2\Tests\Traits\ReformatXmlTrait; use PHPUnit\Framework\TestCase; class ReaderAndBuildTest extends TestCase { - public static function reformatXml(string $xml): string - { - $xml = preg_replace('//', '', $xml); - - $doc = new \DOMDocument('1.0', 'UTF-8'); - $doc->preserveWhiteSpace = false; - $doc->formatOutput = true; - $doc->loadXML($xml); - return $doc->saveXML(); - } + use ReformatXmlTrait; /** * @before diff --git a/tests/zugferd2/Tests/ReaderTest.php b/tests/zugferd2/Tests/ReaderTest.php new file mode 100644 index 00000000..7d2b4f97 --- /dev/null +++ b/tests/zugferd2/Tests/ReaderTest.php @@ -0,0 +1,52 @@ +getRealPath()); + + $obj = Reader::create()->transform($xml); + $str = Builder::create()->transform($obj); + + self::assertSame( + self::reformatXml($xml), + self::reformatXml($str), + ); + + self::assertTrue(true); + } + + /** @return array> */ + public function dataProvider(): array + { + $finder = (new Finder()) + ->files() + ->name('*.xml') + ->in(__DIR__ . '/Examples') + ; + + $buffer = []; + foreach ($finder as $file) { + $buffer[$file->getFilename()] = [$file]; + } + + return $buffer; + } +} diff --git a/tests/zugferd2/Tests/Traits/ReformatXmlTrait.php b/tests/zugferd2/Tests/Traits/ReformatXmlTrait.php new file mode 100644 index 00000000..77bc1d94 --- /dev/null +++ b/tests/zugferd2/Tests/Traits/ReformatXmlTrait.php @@ -0,0 +1,19 @@ +/', '', $xml); + + $doc = new \DOMDocument('1.0', 'UTF-8'); + $doc->preserveWhiteSpace = false; + $doc->formatOutput = true; + $doc->loadXML($xml); + return $doc->saveXML(); + } +}